

/* =========================================================
   GLOBAL STYLES — CLEAN & MODERN
========================================================= */
:root {
    --primary: #DAC0A3;
    --primary-dark: #b89d7f;
    --text-dark: #000;
    --text-muted: #555;
    --bg-light: #F9F7F4;
    --radius: 20px;
    --section-padding: 90px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* =========================================================
   HERO SECTION — MODERN FIXED PROPORTION + SMOOTH SLIDE
========================================================= */
.hero {
    min-height: 100vh;
    height: max(95vh, 750px); /* FIXES IMAGE CROPPING */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 1.2s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(218, 192, 163, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(16px, 2.5vw, 22px);
    color: #fff;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 38px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* =========================================================
   SECTION BASE STYLING
========================================================= */
.org-intro,
.join-community,
.our-members,
.country-heads {
    padding: var(--section-padding);
}

/* =========================================================
   ORGANIZATION INTRO — CLEANER GRID
========================================================= */
.intro-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.intro-btn {
    padding: 12px 32px;
    background: var(--primary);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.intro-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* =========================================================
   JOIN COMMUNITY — CLEANER SPACING
========================================================= */
.join-community {
    background: var(--bg-light);
}

.join-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.join-text h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
}

.join-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.join-btn {
    padding: 12px 34px;
    background: var(--primary);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.join-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.join-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* =========================================================
   FADE ANIMATIONS — SMOOTHER
========================================================= */
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 0.9s ease-out;
}

.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.fade-left.active,
.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}




/* =========================================================
   RESPONSIVE BREAKPOINTS — MODERN & CLEAN
========================================================= */
@media (max-width: 900px) {
    .intro-container,
    .join-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-image img,
    .join-image img {
        max-width: 90%;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 16px; }
    .hero-btn { padding: 10px 25px; font-size: 14px; }
}



/* =========================
   COUNTRY HEADS GRID
========================== */
.country-heads {
    background: #fff;
    padding: 40px 8%;
}

.country-heads .title {
    text-align: center;
    margin-bottom: 10px;
}

.country-heads .title h4 {
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    font-size: 30px;
    font-weight: 700;
    border: 2px solid rgba(218, 192, 163, 0.3);
    border-radius: 12px;
    background: rgba(218, 192, 163, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 12px rgba(218, 192, 163, 0.15);
    text-transform: uppercase;
}

/* Country Heads Grid */
.countryHead-wrapper .countryHead-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Country Head Card */
.countryHead-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.countryHead-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(218, 192, 163, 0.3);
}

.countryHead-card .imbBx img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.countryHead-card .content {
    padding: 15px;
    text-align: center;
}

.countryHead-card .content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.countryHead-card .content h3 span {
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
}

/* =========================
   RESPONSIVE
========================== */
@media(max-width:1200px) {
    .countryHead-wrapper .countryHead-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:900px) {
    .countryHead-wrapper .countryHead-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .intro-container, .join-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-image img, .join-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .countryHead-wrapper .countryHead-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 16px; }
    .hero-btn { padding: 10px 25px; font-size: 14px; }
}

/* =========================
   OUR MEMBERS SECTION
========================== */
.our-members {
    background: #F9F7F4;
    padding: 40px 8%;
}

/* Wrapper title */
.ourMembers-wrapper .title {
    text-align: center;
    margin-bottom: 10px;
}

.ourMembers-wrapper .title h4 {
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    font-size: 30px;
    font-weight: 700;
    border: 2px solid rgba(218, 192, 163, 0.3);
    border-radius: 12px;
    background: rgba(218, 192, 163, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 12px rgba(218, 192, 163, 0.15);
    text-transform: uppercase;
}

/* Grid for member cards */
.ourMembers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Member card */
.ourMembers-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ourMembers-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(218, 192, 163, 0.3);
}

.ourMembers-card .imbBx img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ourMembers-card .content {
    padding: 15px;
    text-align: center;
}

.ourMembers-card .content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.ourMembers-card .content h3 span {
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
}

/* Responsive Grid */
@media(max-width: 1200px) {
    .ourMembers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 900px) {
    .ourMembers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .ourMembers-grid {
        grid-template-columns: 1fr;
    }
}




