/* GENERAL */
body{
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#ffffff;
}

/* NAVIGATION */
nav{
    background:#FFC72C;
    padding:15px;
    text-align:center;
}

nav a{
    color:#000;
    margin:0 15px;
    text-decoration:none;
    font-weight:600;
}

/* SECTION */
.white{
    padding:60px 20px;
    text-align:center;
    background:#ffffff;
}

.white h2{
    font-size:32px;
    margin-bottom:40px;
}

/* SLIDER */
.slider{
    position:relative;
    max-width:800px;
    margin:0 auto;
    overflow:hidden;
    background:#FFC72C;
    border-radius:10px;
    padding:30px;
}

.slides{
    display:flex;
    transition:0.5s ease;
}

.slide{
    min-width:100%;
    font-size:20px;
    font-weight:500;
    color:#000;
}

/* ARROWS */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#000;
    color:#fff;
    border:none;
    padding:10px 15px;
    cursor:pointer;
    font-size:18px;
    border-radius:5px;
}

.left{
    left:10px;
}

.right{
    right:10px;
}

.arrow:hover{
    background:#333;
}

/* COUNTER */
.counter{
    font-size:50px;
    font-weight:bold;
    color:#FFC72C;
    margin-top:30px;
}
/* HERO SECTION */
.hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 20px;
    background:#FFFFFF;
}

/* Logo full size */
.logo{
    max-width:300px;
    width:100%;
    height:auto;
    margin-bottom:30px;
}

/* Hero text */
.hero-text h1{
    color:#B8860B;
    font-size:28px;
}

.hero-text p{
    margin:15px 0;
}

/* Download button */
.download-btn{
    display:inline-block;
    background:#FFC72C;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.download-btn:hover{
    background:#B8860B;
}
/* WhatsApp Button */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px;
    border-radius:50%;
    font-size:22px;
    text-decoration:none;

}
/* General Reset */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Sections */
.section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    background-color: #f4a300; /* Mustard background */
    overflow: hidden;
}

/* Overlay background logo */
.section::before {
    content: "";
    background: url('images/logo.jpg') no-repeat center center;
    background-size: 50%; /* adjust size of logo */
    opacity: 0.05; /* light overlay effect */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 0;
}

/* Section content */
.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
    z-index: 1;
    position: relative;
}

.section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: white;
    max-width: 800px;
    margin: 0 auto 40px auto;
    z-index: 1;
    position: relative;
}

/* Highlight Mission, Vision, Values */
.section .highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .section h2 {
        font-size: 2em;
    }
    .section p {
        font-size: 1em;
    }
    .section::before {
        background-size: 70%;
    }
}
/* ================= TEAM SECTION ================= */

.board-section {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.board-heading {
    font-size: 32px;
    margin-bottom: 40px;
    color: #B8860B; /* Your gold theme */
    font-weight: bold;
    letter-spacing: 2px;
}

/* GRID LAYOUT */
.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 members per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD DESIGN */
.team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

/* IMAGE SIZE */
.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin-bottom: 15px;
}





