﻿/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

/* ===== Accessibility ===== */
.skip-link{
    position:fixed;left:12px;top:-70px;
    background:#0b1d51;color:#fff;padding:12px 22px;
    border-radius:0 0 10px 10px;font-weight:700;font-size:14px;
    text-decoration:none;z-index:3000;transition:top .2s ease;
    border:2px solid #d4af37;border-top:none;
}
.skip-link:focus{top:0;}
a:focus-visible,button:focus-visible,input:focus-visible,
select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{
    outline:3px solid #d4af37;outline-offset:2px;border-radius:4px;
}
@media (prefers-reduced-motion: reduce){
    *{animation-duration:.001ms !important;animation-iteration-count:1 !important;
      transition-duration:.01ms !important;scroll-behavior:auto !important;}
}

body{
    font-family:'Inter', sans-serif;
    color:#222;
    line-height:1.7;
    background:#fff;

    /* sticky footer: keep the footer pinned to the bottom of the
       viewport even when a page's content is short */
    min-height:100vh;
    display:flex;
    flex-direction:column;

    /* never allow content to scroll sideways beyond the screen */
    overflow-x:hidden;
    width:100%;
    max-width:100%;
}

img{
    width:100%;
    display:block;
}
.container{
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

img{
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px){
  .navbar{
    flex-direction: column;
  }

  h1{
    font-size: 28px;
  }
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-padding{
    padding:10px 0;
}

/* =========================
   REUSABLE STYLES
========================= */

.section-header{
    text-align:center;
    margin-bottom:20px;
}

.section-tag,
.section-subtitle{
    display:inline-block;
    color:#b88917;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.section-header h2,
.about-content h2,
.contact-info h2,
.chairman-content h2{
    font-size:48px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:20px;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

.primary-btn,
.secondary-btn,
.card-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.primary-btn,
.card-btn{
    background:#d4af37;
    color:#fff;
}

.primary-btn:hover,
.card-btn:hover{
    background:#b8922f;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#111;
}

/* ================= MODERN HEADER ================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    padding:0;

    background:transparent;

    transition:transform 0.35s ease, background 0.4s, box-shadow 0.4s;
}

/* full-bleed header bar: touches top, left and right edges */
.header .container{
    width:100%;
    max-width:none;
    padding:0;
}

/* hidden state (slides up out of view) */
.header.header-hidden{
    transform:translateY(-100%);
}

/* HEADER CARD */

.header-card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgb(255, 255, 255);

    backdrop-filter:blur(12px);

    padding:10px 40px;

    border-radius:0;

    border:1px solid rgba(255,255,255,0.4);

    transition:background 0.4s;
}

/* SCROLLED STATE */

.header.scrolled .header-card{
    background:#0b1d51;
    border-color:transparent;
}

.header.scrolled .nav-menu a{
    color:rgba(255,255,255,0.85);
}

.header.scrolled .nav-menu a:hover{
    color:#d4af37;
}

.header.scrolled .mobile-btn{
    color:#fff;
}

/* LOGO */

.logo img{
    height:70px;
    width:auto;
    object-fit:contain;
    display:block;
}

/* NAV MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;

    color:#0b1d51;

    font-size:16px;

    font-weight:500;

    transition:0.3s;
}

.nav-menu a:hover{
    color:#d4af37;
}

/* ---- DROPDOWN ---- */

.nav-dropdown{
    position:relative;
}

.nav-dropdown-trigger{
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

.nav-chevron{
    font-size:10px;
    transition:transform 0.3s;
}

.nav-dropdown:hover .nav-chevron{
    transform:rotate(180deg);
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(11,29,81,0.15);
    border:1px solid rgba(11,29,81,0.07);
    padding:10px;
    min-width:230px;
    opacity:0;
    visibility:hidden;
    transform:translateX(-50%) translateY(-8px);
    transition:opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index:999;
}

/* gold top-accent on dropdown */
.nav-dropdown-menu::before{
    content:'';
    position:absolute;
    top:0;
    left:20px;
    right:20px;
    height:3px;
    background:#d4af37;
    border-radius:3px 3px 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.nav-dropdown-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:11px 16px;
    border-radius:10px;
    color:#0b1d51 !important;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    transition:0.2s;
}

.nav-dropdown-menu a i{
    width:18px;
    color:#d4af37;
    font-size:13px;
    flex-shrink:0;
}

.nav-dropdown-menu a:hover{
    background:#f4f1eb;
    color:#0b1d51 !important;
    padding-left:20px;
}

/* scrolled header dropdown */
.header.scrolled .nav-dropdown-menu{
    border-color:rgba(255,255,255,0.1);
}

/* ========================= EVENTS MEGA MENU ========================= */
.nav-mega{ position:relative; }

.nav-mega-menu{
    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%) translateY(-8px);
    width:680px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 24px 60px rgba(11,29,81,0.18);
    border:1px solid rgba(11,29,81,0.08);
    padding:24px;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.25s, transform 0.25s, visibility 0.25s;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    z-index:999;
}

.nav-mega:hover .nav-mega-menu,
.nav-mega.nav-mega-open .nav-mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.nav-mega.nav-mega-open .nav-chevron{
    transform:rotate(180deg);
}

.mega-group{
    padding:12px;
    border-radius:12px;
    transition:background 0.2s;
}
.mega-group:hover{ background:#f8f9fc; }

.mega-group-title{
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#0b1d51;
    margin-bottom:10px;
    padding-bottom:8px;
    border-bottom:2px solid #d4af37;
    display:flex;
    align-items:center;
    gap:8px;
}
.mega-group-title i{ font-size:13px; color:#d4af37; }

.mega-group a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    border-radius:8px;
    font-size:13px;
    font-weight:500;
    color:#3a4a6b !important;
    text-decoration:none;
    transition:background 0.2s, color 0.2s;
}
.mega-group a:hover{
    background:#0b1d51;
    color:#fff !important;
}
.mega-group a i{
    font-size:13px;
    width:16px;
    text-align:center;
    color:#d4af37;
    flex-shrink:0;
}
.mega-group a:hover i{ color:#d4af37; }

.mega-group-full{ grid-column:1 / -1; }

@media(max-width:900px){
    .nav-mega-menu{
        width:320px;
        grid-template-columns:1fr;
        left:0;
        transform:translateY(-8px);
    }
    .nav-mega:hover .nav-mega-menu,
    .nav-mega.nav-mega-open .nav-mega-menu{ transform:translateY(0); }
    .mega-group-full{ grid-column:1; }
}

/* JOIN BUTTON */

.join-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#d4af37;

    color:#fff !important;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    white-space:nowrap;

    transition:0.4s;
    animation:joinPulse 2.6s ease-in-out infinite;
}

.join-btn:hover{
    background:#b8922f;
    transform:translateY(-3px);
    animation-play-state:paused;
}

.join-btn i{font-size:13px;}

@keyframes joinPulse{
    0%,100%{ box-shadow:0 0 0 0 rgba(212,175,55,0.45); }
    50%{ box-shadow:0 0 0 7px rgba(212,175,55,0); }
}

.nav-menu .join-btn{
    padding:11px 20px;
    font-size:14px;
}

/* MEMBER PORTAL LINK */
.portal-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    border:1.5px solid rgba(212,175,55,0.7);
    color:#d4af37 !important;
    padding:9px 18px;
    border-radius:10px;
    font-weight:700;
    transition:0.25s;
}
.portal-link:hover{
    background:#d4af37;
    color:#0b1d51 !important;
}
.portal-link i{font-size:14px;}

/* MOBILE BUTTON */

.mobile-btn{
    display:none;

    font-size:28px;

    color:#0b1d51;

    cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .header-card{
        padding:18px 25px;
    }

    .nav-menu{
        gap:20px;
    }

}

@media(max-width:768px){

    .header{
        padding:15px 0;
    }

    .header-card{
        position:relative;
        padding:16px 20px;
    }

    .logo img{
        height:55px;
    }

    .mobile-btn{
        display:block;
    }

    .nav-menu{
        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        padding:30px;

        gap:20px;

        border-radius:20px;

        margin-top:15px;

        box-shadow:0 10px 30px rgba(0,0,0,0.08);

        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .join-btn{
        width:100%;
        text-align:center;
        justify-content:center;
    }

}
/* ================= HERO SECTION ================= */

.hero{
    padding:140px 0 10px;

    background:#f4f1eb;
}


/* HERO CARD */

.hero-card{
    position:relative;
    min-height:750px;
    border-radius:40px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    padding:80px;
    background:
        linear-gradient(135deg, rgba(11,29,81,0.82) 0%, rgba(13,34,96,0.75) 55%, rgba(17,42,117,0.80) 100%),
        url('../images/leaders.jpg') center/cover no-repeat;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* decorative rings */
.hero-card::before{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:500px;
    height:500px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,0.08);
    pointer-events:none;
}

.hero-card::after{
    content:'';
    position:absolute;
    bottom:-60px;
    left:-60px;
    width:360px;
    height:360px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,0.06);
    pointer-events:none;
}

/* DARK OVERLAY — keep for gradient polish */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        105deg,
        rgba(11,29,81,0.1) 0%,
        transparent 60%,
        rgba(0,0,0,0.25) 100%
    );
    z-index:1;
}

/* HERO LOGO IMAGE (right side) */
.hero-logo-wrap{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:340px;
    height:340px;
    flex-shrink:0;
}

.hero-logo-wrap::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
}

.hero-logo-wrap img{
    width:260px;
    opacity:0.18;
    filter:brightness(0) invert(1);
    position:relative;
    z-index:1;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    max-width:760px;

    color:#fff;
}

/* TAG */

.hero-tag{
    display:inline-block;

    background:#d4af37;

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:30px;
}

/* TITLE */

.hero-content h1{
    font-size:68px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:30px;

    text-transform:uppercase;
}

/* PARAGRAPH */

.hero-content p{
    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,0.9);

    margin-bottom:45px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* BUTTON STYLE */

.primary-btn,
.secondary-btn{
    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:0.4s;
}

/* PRIMARY BUTTON */

.primary-btn{
    background:#d4af37;
    color:#fff;
}

.primary-btn:hover{
    background:#b8922f;
    transform:translateY(-4px);
}

/* SECONDARY BUTTON */

.secondary-btn{
    border:2px solid rgba(255,255,255,0.4);

    color:#fff;

    background:rgba(255,255,255,0.08);
}

.secondary-btn:hover{
    background:#fff;
    color:#0b1d51;
    transform:translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .hero-card{
        min-height:650px;
        padding:60px;
        grid-template-columns:1fr 280px;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .hero{
        padding:110px 0 40px;
    }

    .hero-card{
        min-height:auto;
        padding:40px 28px;
        border-radius:25px;
        grid-template-columns:1fr;
    }

    .hero-logo-wrap{
        display:none;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.15;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

}
/* =========================
   VISION SECTION
========================= */

.vision{
    background:#f4f1eb;
}

/* MAIN WHITE CARD */

.vision-wrapper{
    background:#fff;

    padding:50px;

    border-radius:30px;

    border:1px solid #e8dfd2;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* HEADER */

.vision .section-header{
    text-align:center;
    margin-bottom:10px;
}

.vision .section-description{
    max-width:750px;
    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;
}

/* GRID */

.vision-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.vision-card{
    background:#faf8f4;

    padding:45px 35px;

    border-radius:24px;

    border:1px solid #efe7db;

    text-align:center;

    transition:0.4s;
}

.vision-card:hover{
    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    border-top:3px solid #d4af37;
}

.vision-card:hover .vision-icon{
    background:#d4af37;
    border-color:#d4af37;
}

.vision-card:hover .vision-icon i{
    color:#fff;
}

/* ICON */

.vision-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fff;

    border:2px solid #f0e3c5;

    display:flex;
    align-items:center;
    justify-content:center;
}

.vision-icon i{
    font-size:38px;
    color:#d4af37;
}

/* TEXT */

.vision-card h3{
    font-size:24px;

    color:#0f172a;

    margin-bottom:18px;
}

.vision-card p{
    color:#666;

    font-size:16px;

    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .vision-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vision-wrapper{
        padding:45px;
    }

}

@media(max-width:768px){

    .vision-grid{
        grid-template-columns:1fr;
    }

    .vision-wrapper{
        padding:35px 25px;
    }

}

/* =========================
  /* =========================
   ABOUT SECTION
========================= */

.about{
    background:#f4f1eb;
}

/* MAIN CARD */

.about-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    background:#fff;

    padding:50px;

    border-radius:30px;

    border:1px solid #e8dfd2;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    align-items:center;
}

/* IMAGE */

.about-image img{
    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.about-content h2{
    font-size:48px;
    line-height:1.2;

    color:#0f172a;

    margin:20px 0;
}

.about-content p{
    font-size:17px;
    line-height:1.9;

    color:#555;

    margin-bottom:22px;
}

/* BUTTON */

.about-content .primary-btn{
    margin-top:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-card{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .about-card{
        padding:35px 25px;
    }

    .about-image img{
        height:350px;
    }

    .about-content h2{
        font-size:36px;
    }

}

/* =========================
   CHAIRMAN SECTION
========================= */

.chairman-section{
  padding-top: 20px;
  padding-bottom: 20px;
    background:#f4f1eb;
}

.chairman-card{
    background:#fff;
    border-radius:25px;
    padding:50px;
    display:grid;
    grid-template-columns:minmax(0,380px) 1fr;
    gap:60px;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

@media(max-width:991px){
    .chairman-card{
        grid-template-columns:1fr;
        gap:40px;
        padding:40px 35px;
    }
}

.chairman-image{
    text-align:center;
}

.chairman-image img{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:50%;
    margin:auto;
    border:8px solid #f5f5f5;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.chairman-name{
    margin-top:25px;
    background:#f8f6f1;
    padding:20px;
    border-left:5px solid #d4af37;
    border-radius:12px;
}

.chairman-name h4{
    color:#0f172a;
    margin-bottom:8px;
}

.chairman-name span{
    color:#777;
}

.chairman-content p{
    margin-bottom:20px;
    color:#555;
}

/* =========================
 /* =========================
   SERVICES SECTION
========================= */

.services{
    background:#f4f1eb;
}

/* MAIN WHITE CARD */

.services-wrapper{
    background:#fff;
    border-radius:40px;
    padding:60px;
    border:1px solid #e8dfd2;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* HEADER */

.services .section-header{
    text-align:center;
    margin-bottom:60px;
}

.services .section-description{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.service-card{
    background:#faf8f4;
    padding:40px 30px;
    border-radius:22px;
    border:1px solid #efe7db;
    transition:0.4s;
    text-align:center;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
    border-left:4px solid #d4af37;
    background:#fff;
}

.service-card:hover .service-icon{
    background:#d4af37;
    border-color:#d4af37;
}

.service-card:hover .service-icon i{
    color:#fff;
}

/* ICON */

.service-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff;
    border:2px solid #f1e4c7;

    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:34px;
    color:#d4af37;
}

/* TEXT */

.service-card h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:18px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-wrapper{
        padding:45px;
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-wrapper{
        padding:35px 25px;
    }

}
/* =========================
 /* ================= EVENTS SECTION ================= */

.events{
    background:#f4f1eb;
    overflow:hidden;
}

/* SLIDER */

.events-slider{
    width:100%;
    overflow:hidden;
    margin-top:60px;
    position:relative;
}

/* MOVING TRACK */

.events-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollEvents 35s linear infinite;
}

/* CONTINUOUS SLIDE */

@keyframes scrollEvents{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* EVENT CARD */

.event-card{
    width:340px;
    background:#fff;
    border-radius:25px;
    padding:30px 28px 28px;
    text-align:center;
    border:1px solid #ece7dc;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    flex-shrink:0;
    transition:0.4s ease;
}

.event-card:hover{
    transform:translateY(-10px);
}

/* ROUND IMAGE */

.event-image{
    width:130px;
    height:130px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #f5f1e8;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TEXT */

.event-card h3{
    font-size:24px;
    color:#0b1d51;
    margin-bottom:18px;
}

.event-card p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* PAUSE ON HOVER */

.events-slider:hover .events-track{
    animation-play-state:paused;
}

/* RESPONSIVE */

@media(max-width:768px){

    .event-card{
        width:280px;
        padding:30px 22px;
    }

    .event-image{
        width:110px;
        height:110px;
    }

}
  /* ================= BENEFITS SECTION ================= */

.benefits{
    background:#f8f6f1;
}

/* MAIN CARD */

.benefits-wrapper{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    border:1px solid #e8dfd0;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    margin-top:50px;
}

/* GRID */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* BENEFIT CARD */

.benefit-card{
    background:#faf8f4;
    border:1px solid #ece7dc;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s ease;
}

.benefit-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */

.benefit-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff;
    border:2px solid #f0e5cf;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.benefit-icon i{
    font-size:34px;
    color:#d4af37;
}

/* CONTENT */

.benefit-content h3{
    font-size:24px;
    color:#0b1d51;
    margin-bottom:18px;
}

.benefit-content p{
    color:#555;
    font-size:16px;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .benefits-wrapper{
        padding:35px 20px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .benefit-card{
        padding:35px 25px;
    }

}

/* ================= MEMBERSHIP SECTION ================= */

.membership{
    padding:10px 0;
    background:#f4f1eb;
}

/* SECTION HEADER */

.membership .section-header{
    text-align:center;
    margin-bottom:60px;
}

.membership .section-tag{
    color:#a8741a;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.membership .section-header h2{
    font-size:48px;
    color:#0b1d51;
    margin-top:15px;
}

/* MAIN WRAPPER */

.membership-wrapper{
    background:#ffffff;
    border-radius:30px;
    padding:50px;
    border:1px solid #e5ddd0;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

/* GRID */

.membership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.member-card{
    position:relative;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    border:1px solid #ece5d8;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.member-card:hover{
    transform:translateY(-10px);
}

/* FEATURED CARD */

@keyframes goldPulse{
    0%,100%{ box-shadow:0 8px 25px rgba(212,175,55,0.2); }
    50%{ box-shadow:0 8px 40px rgba(212,175,55,0.5), 0 0 0 8px rgba(212,175,55,0.08); }
}

.member-card.featured{
    border:2px solid #d4af37;
    transform:scale(1.03);
    animation:goldPulse 2.5s ease-in-out infinite;
}

.member-card.featured:hover{
    transform:scale(1.03) translateY(-10px);
}

/* BADGE */

.badge{
    position:absolute;
    top:1px;
    right:18px;
    background:#d4af37;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:7px 16px;
    border-radius:30px;
}

/* TOP */

.member-top{
    background:#f8f6f1;
    padding:35px 25px;
    text-align:center;
    border-bottom:1px solid #ece5d8;
}

.member-top h3{
    font-size:28px;
    color:#0b1d51;
    margin-bottom:18px;
}

.price{
    font-size:34px;
    font-weight:700;
    color:#d4af37;
}

/* CONTENT */

.member-content{
    padding:35px 30px;
}

.member-content ul{
    list-style:none;
    margin-bottom:30px;
}

.member-content ul li{
    padding:14px 0;
    border-bottom:1px solid #f1f1f1;
    color:#444;
    font-size:16px;
}

/* BUTTON */

.card-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#0b1d51;
    color:#fff;
    text-decoration:none;
    padding:16px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.card-btn:hover{
    background:#d4af37;
}

/* RESPONSIVE */

@media(max-width:900px){

    .membership-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .membership-wrapper{
        padding:30px 20px;
    }

    .membership-grid{
        grid-template-columns:1fr;
    }

    .membership .section-header h2{
        font-size:36px;
    }

    .member-top h3{
        font-size:24px;
    }

    .price{
        font-size:28px;
    }

}
/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#f4f1eb;
    padding:10px 0;
}

/* MAIN CARD */

.contact-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    background:#ffffff;

    padding:60px;

    border-radius:35px;

    border:1px solid #e8dfd2;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    align-items:start;
}

/* LEFT SIDE */

.contact-info .section-tag{
    color:#a8741a;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.contact-info h2{
    font-size:50px;
    line-height:1.15;
    color:#0b1d51;
    margin:20px 0;
}

.contact-info p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:40px;
}

/* CONTACT ITEMS */

.contact-details{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;

    background:#f8f6f1;

    padding:20px;

    border-radius:18px;

    border:1px solid #eee5d7;

    transition:0.3s;
}

.contact-item:hover{
    transform:translateX(5px);
    background:#fff;
}

/* ICON */

.contact-icon{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#0b1d51;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.contact-icon i{
    color:#fff;
    font-size:22px;
}

/* TEXT */

.contact-item h4{
    font-size:18px;
    color:#0b1d51;
    margin-bottom:5px;
}

.contact-item span{
    color:#666;
    font-size:15px;
}

/* FORM SIDE */

.contact-form-wrapper{
    background:#f8f6f1;

    padding:40px;

    border-radius:25px;

    border:1px solid #eee5d7;
}

/* FORM */

.contact-form{
    width:100%;
}

.form-group{
    margin-bottom:22px;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:18px 20px;

    border:none;

    border-radius:14px;

    background:#ffffff;

    font-size:16px;

    color:#333;

    outline:none;

    border:1px solid transparent;

    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,0.1);
}

.contact-form textarea{
    height:160px;
    resize:none;
}

/* BUTTON */

.contact-form button{
    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:#0b1d51;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{
    background:#d4af37;
}

/* MAP */

.map-container{
    margin-top:35px;

    width:100%;
    height:320px;

    overflow:hidden;

    border-radius:20px;

    border:1px solid #e5ddd0;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-card{
        grid-template-columns:1fr;
        padding:40px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:80px 0;
    }

    .contact-card{
        padding:25px;
        gap:40px;
    }

    .contact-info h2{
        font-size:36px;
    }

    .contact-form-wrapper{
        padding:25px;
    }

    .contact-item{
        align-items:flex-start;
    }

    .map-container{
        height:260px;
    }

}

/* ================= FOOTER ================= */

.footer{
    position:relative;
    padding:0;
    margin-top:auto; /* pin to the bottom of the viewport on short pages */
    overflow:hidden; /* clip the decorative glow so it never overflows sideways */
    border-top:4px solid #d4af37;
    background:linear-gradient(180deg, rgba(8,18,58,0.95) 0%, rgba(11,29,81,0.97) 100%),
               url('../images/bg.png') center center/cover no-repeat;
}

/* full-bleed footer: background touches all sides, content stays centered */
.footer .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:70px 28px 30px;
}

.footer-card{
    background:transparent;
    border-radius:0;
    padding:0;
    position:relative;
    overflow:visible;
    box-shadow:none;
}

/* subtle glow top-right */
.footer-card::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events:none;
    z-index:0;
}

.footer-card > *{
    position:relative;
    z-index:1;
}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1.2fr;
    gap:48px;
    padding-bottom:40px;
}

/* BRAND */
.footer-brand img{
    width:92px;
    margin-bottom:18px;
}

.footer-brand h3{
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.45;
    margin-bottom:12px;
}

.footer-brand p{
    color:rgba(255,255,255,0.8);
    font-size:14px;
    line-height:1.85;
    margin-bottom:24px;
}

/* Social icons in brand col */
.footer-socials{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.footer-socials a{
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.footer-socials a:hover{
    background:#d4af37;
    border-color:#d4af37;
    color:#0b1d51;
    transform:translateY(-3px);
}

/* COLUMNS */
.footer-col h4{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d4af37;
    margin-bottom:22px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(212,175,55,0.2);
}

/* QUICK LINKS */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:11px;
}

.footer-col ul li a{
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    font-size:14px;
    transition:0.25s;
    display:inline-flex;
    align-items:center;
    gap:0;
}

.footer-col ul li a::before{
    content:'›';
    color:#d4af37;
    margin-right:8px;
    font-size:16px;
    transition:0.25s;
}

.footer-col ul li a:hover{
    color:#d4af37;
    padding-left:4px;
}

/* CONTACT LIST */
.footer-contact-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,0.85);
    font-size:14px;
    line-height:1.6;
}

.footer-contact-list li i{
    color:#d4af37;
    font-size:13px;
    margin-top:3px;
    flex-shrink:0;
}

.footer-contact-list li a{
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    transition:0.25s;
}

.footer-contact-list li a:hover{
    color:#d4af37;
}

/* JOIN CTA COL */
.footer-cta-col p{
    color:rgba(255,255,255,0.82);
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.footer-join-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#d4af37;
    color:#0b1d51;
    font-size:14px;
    font-weight:700;
    padding:13px 24px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
    white-space:nowrap;
}

.footer-join-btn:hover{
    background:#c9a430;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(212,175,55,0.35);
    gap:14px;
}

/* DIVIDER */
.footer-divider{
    height:1px;
    background:rgba(255,255,255,0.08);
    margin-bottom:24px;
}

/* BOTTOM BAR */
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}

.footer-bottom span{
    color:rgba(255,255,255,0.65);
    font-size:13px;
}

.footer-est{
    font-size:12px !important;
    color:rgba(255,255,255,0.3) !important;
}

.footer-top-btn{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(212,175,55,0.15);
    border:1px solid rgba(212,175,55,0.3);
    color:#d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:13px;
    transition:0.3s;
    flex-shrink:0;
}

.footer-top-btn:hover{
    background:#d4af37;
    color:#0b1d51;
    transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:1100px){
    .footer-grid{
        grid-template-columns:1fr 1fr 1fr;
        gap:36px;
    }
    .footer-brand{
        grid-column:span 3;
        display:grid;
        grid-template-columns:auto 1fr;
        gap:0 24px;
        align-items:start;
    }
    .footer-brand img{
        grid-row:span 3;
    }
    .footer-brand h3{ margin-bottom:8px; }
}

@media(max-width:768px){
    .footer .container{
        padding:46px 20px 26px;
    }
    .footer-card{
        padding:0;
        border-radius:0;
    }
    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:32px;
    }
    .footer-brand{
        grid-column:span 2;
        display:block;
    }
    .footer-cta-col{
        grid-column:span 2;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
    .footer-est{ display:none; }
}

@media(max-width:480px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
    .footer-brand,
    .footer-cta-col{
        grid-column:span 1;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-grid,
    .chairman-card,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .services-grid,
    .events-grid,
    .membership-grid,
    .benefits-grid,
    .vision-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:52px;
    }
}

@media(max-width:768px){

    .mobile-btn{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:30px;
        display:none;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:40px;
    }

    .section-header h2,
    .about-content h2,
    .chairman-content h2,
    .contact-info h2{
        font-size:34px;
    }

    .services-grid,
    .events-grid,
    .membership-grid,
    .benefits-grid,
    .vision-grid{
        grid-template-columns:1fr;
    }

    .chairman-image img{
        width:240px;
        height:240px;
    }

    .section-padding{
        padding:80px 0;
    }
}
/* ================= LANGUAGE SWITCHER ================= */

.language-switcher{
    display:flex;
    align-items:center;
    gap:12px;

    flex-wrap:wrap;
}

/* BUTTON */

.lang-btn{
    border:none;

    padding:10px 18px;

    border-radius:12px;

    background:#f8f6f1;

    color:#0b1d51;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;

    border:1px solid #ece7dc;
}

/* HOVER */

.lang-btn:hover{
    background:#d4af37;
    color:#fff;

    transform:translateY(-3px);
}

/* ACTIVE BUTTON */

.lang-btn.active{
    background:#0b1d51;
    color:#fff;

    border-color:#0b1d51;
}

/* RESPONSIVE */

.contact-form-title{
  text-align:center;
  margin-bottom:25px;
  color:#0b1d51;
}

/* ================= MOBILE PHONE BREAKPOINTS ================= */

@media(max-width:480px){

  .container{
    padding:12px;
  }

  .section-padding{
    padding:60px 0;
  }

  .header-card{
    padding:12px 15px;
  }

  .logo img{
    height:50px;
  }

  .hero{
    padding:120px 0 50px;
  }

  .hero-card{
    min-height:auto;
    padding:20px 16px;
    border-radius:20px;
  }

  .hero-content h1{
    font-size:28px;
    line-height:1.2;
  }

  .hero-content p{
    font-size:14px;
    margin-bottom:25px;
  }

  .hero-tag{
    padding:10px 18px;
    font-size:12px;
    margin-bottom:20px;
  }

  .hero-buttons{
    gap:10px;
  }

  .primary-btn,
  .secondary-btn{
    padding:14px 24px;
    font-size:14px;
  }

  .section-header h2{
    font-size:28px;
  }

  .section-tag{
    font-size:12px;
    letter-spacing:2px;
  }

  .section-description{
    font-size:15px;
  }

  .vision-wrapper{
    padding:25px 15px;
  }

  .vision-icon{
    width:70px;
    height:70px;
  }

  .vision-icon i{
    font-size:32px;
  }

  .vision-card{
    padding:30px 20px;
  }

  .vision-card h3{
    font-size:20px;
  }

  .vision-card p{
    font-size:14px;
  }

  .about-card{
    padding:25px 15px;
    gap:30px;
  }

  .about-image img{
    height:280px;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-content p{
    font-size:15px;
  }

  .chairman-card{
    grid-template-columns:1fr;
    padding:25px 15px;
    gap:25px;
  }

  .chairman-image img{
    width:200px;
    height:200px;
  }

  .chairman-content p{
    font-size:15px;
  }

  .services-wrapper{
    padding:30px 15px;
  }

  .service-card{
    padding:30px 18px;
  }

  .service-icon{
    width:70px;
    height:70px;
  }

  .service-icon i{
    font-size:28px;
  }

  .service-card h3{
    font-size:20px;
  }

  .service-card p{
    font-size:14px;
  }

  .event-card{
    width:260px;
    padding:20px 15px;
  }

  .event-image{
    width:100px;
    height:100px;
  }

  .event-card h3{
    font-size:18px;
  }

  .event-card p{
    font-size:14px;
  }

  .benefits-wrapper{
    padding:25px 15px;
  }

  .benefit-card{
    padding:25px 18px;
  }

  .benefit-icon{
    width:70px;
    height:70px;
  }

  .benefit-icon i{
    font-size:28px;
  }

  .benefit-content h3{
    font-size:18px;
  }

  .benefit-content p{
    font-size:14px;
  }

  .membership-wrapper{
    padding:25px 15px;
  }

  .member-top h3{
    font-size:22px;
  }

  .price{
    font-size:24px;
  }

  .member-content{
    padding:20px 15px;
  }

  .member-content ul li{
    padding:10px 0;
    font-size:14px;
  }

  .contact-card{
    padding:25px 15px;
    gap:30px;
  }

  .contact-info h2{
    font-size:28px;
  }

  .contact-info p{
    font-size:15px;
  }

  .contact-item{
    padding:15px;
    gap:12px;
  }

  .contact-icon{
    width:50px;
    height:50px;
  }

  .contact-icon i{
    font-size:18px;
  }

  .contact-item h4{
    font-size:16px;
  }

  .contact-item span{
    font-size:13px;
  }

  .contact-form-wrapper{
    padding:20px 15px;
  }

  .contact-form-title{
    font-size:18px;
    padding-left:0;
  }

  .map-container{
    height:220px;
    margin-top:20px;
  }

  .footer-card{
    padding:30px 20px 20px;
  }

  .footer-brand h3{
    font-size:22px;
  }

  .footer-brand p{
    font-size:14px;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4{
    font-size:16px;
    margin-bottom:15px;
  }

  .footer-links ul li a{
    font-size:13px;
  }

  .footer-contact p{
    font-size:13px;
  }

  .socials a{
    width:42px;
    height:42px;
    font-size:16px;
  }

  .popup-content{
    width:98%;
    padding:25px 15px;
    max-height:90vh;
  }

  .close-popup{
    right:10px;
    top:10px;
    font-size:28px;
  }

  .form-section{
    margin-bottom:25px;
  }

  .form-section h3{
    font-size:16px;
    margin-bottom:15px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .form-group.full-width{
    grid-column:span 1;
  }

  input,
  textarea{
    padding:12px;
    font-size:14px;
  }

  .submit-btn{
    padding:14px 24px;
    font-size:14px;
    width:100%;
  }

  .payment-box{
    padding:15px;
    font-size:13px;
  }

}

/* ================= TABLET BREAKPOINTS (481px - 768px) ================= */

@media(max-width:768px) and (min-width:481px){

  .container{
    padding:14px;
  }

  .chairman-card{
    grid-template-columns:1fr;
    gap:40px;
  }

  .chairman-image img{
    width:260px;
    height:260px;
  }

  .contact-form-title{
    text-align:center;
    padding-left:0;
  }

}

/* ================= LANGUAGE SWITCHER RESPONSIVE ================= */

@media(max-width:768px){

    .language-switcher{
        width:100%;
        justify-content:center;
        margin-top:20px;
    }

    .lang-btn{
        flex:1 1 calc(50% - 10px);
        text-align:center;
    }

    .contact-form-title{
        text-align:center;
        padding-left:0 !important;
    }

}

/* ================= HERO ACCENT LINE ================= */

.hero-accent-line{
    width:60px;
    height:4px;
    background:#d4af37;
    border-radius:2px;
    margin-bottom:22px;
}

/* ================= HERO STATS STRIP ================= */

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:50px;
    padding-top:35px;
    border-top:1px solid rgba(255,255,255,0.15);
    flex-wrap:wrap;
}

.hero-stat{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hero-stat .stat-num{
    font-size:30px;
    font-weight:800;
    color:#d4af37;
    line-height:1;
}

.hero-stat .stat-label{
    font-size:12px;
    color:rgba(255,255,255,0.65);
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:500;
}

@media(max-width:768px){
    .hero-stats{
        gap:24px;
        margin-top:30px;
        padding-top:22px;
    }
    .hero-stat .stat-num{
        font-size:22px;
    }
}

@media(max-width:480px){
    .hero-stats{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:16px;
    }
}

/* ================= STATS SECTION ================= */

.stats-section{
    background:#0b1d51;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    text-align:center;
    padding:45px 20px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}

.stat-card:hover{
    background:rgba(212,175,55,0.1);
    border-color:rgba(212,175,55,0.3);
    transform:translateY(-8px);
}

.stat-card .stat-icon{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    border-radius:50%;
    background:rgba(212,175,55,0.12);
    border:1px solid rgba(212,175,55,0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.stat-card:hover .stat-icon{
    background:rgba(212,175,55,0.25);
}

.stat-card .stat-icon i{
    font-size:28px;
    color:#d4af37;
}

.stat-card .stat-number{
    font-size:54px;
    font-weight:800;
    color:#d4af37;
    line-height:1;
    margin-bottom:12px;
}

.stat-card .stat-title{
    font-size:14px;
    color:rgba(255,255,255,0.7);
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

@media(max-width:991px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .stats-section{
        padding:50px 0;
    }
    .stats-grid{
        gap:15px;
    }
    .stat-card{
        padding:28px 15px;
    }
    .stat-card .stat-number{
        font-size:38px;
    }
    .stat-card .stat-title{
        font-size:12px;
    }
    .stat-card .stat-icon{
        width:58px;
        height:58px;
    }
    .stat-card .stat-icon i{
        font-size:22px;
    }
}

/* ================= ABOUT — ENHANCED ================= */

.about-image{
    position:relative;
}

.about-badge{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:#0b1d51;
    color:#fff;
    border-radius:20px;
    padding:18px 24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(11,29,81,0.3);
    border:3px solid #d4af37;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    min-width:110px;
}

.about-badge-year{
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.7);
}

.about-badge-num{
    font-size:34px;
    font-weight:800;
    color:#d4af37;
    line-height:1;
}

.about-badge-label{
    font-size:11px;
    color:rgba(255,255,255,0.6);
    letter-spacing:0.5px;
    text-align:center;
}

/* HIGHLIGHTS */

.about-highlights{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:28px 0 32px;
}

.about-highlight{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f6f1;
    border:1px solid #ece7dc;
    border-radius:14px;
    padding:14px 16px;
    font-size:14px;
    font-weight:500;
    color:#0b1d51;
    transition:0.3s;
}

.about-highlight:hover{
    background:#fff;
    border-color:#d4af37;
    transform:translateX(4px);
}

.about-highlight i{
    font-size:18px;
    color:#d4af37;
    flex-shrink:0;
}

@media(max-width:768px){
    .about-badge{
        right:10px;
        bottom:15px;
        padding:14px 18px;
        min-width:90px;
    }
    .about-badge-num{
        font-size:26px;
    }
    .about-highlights{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){
    .about-badge{
        display:none;
    }
}

/* ================= EVENTS GRID LAYOUT ================= */

/* Remove old slider styles that no longer apply */
.events-slider{ display:none; }

/* GROUP LABEL */

.events-group-label{
    margin-bottom:28px;
}

.events-group-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    padding:10px 20px;
    border-radius:50px;
}

.past-tag{
    background:rgba(16,185,129,0.12);
    color:#059669;
    border:1px solid rgba(16,185,129,0.25);
}

.upcoming-tag{
    background:rgba(11,29,81,0.08);
    color:#0b1d51;
    border:1px solid rgba(11,29,81,0.15);
}

/* GRID — 2 columns on desktop */

.events-list-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

/* SINGLE EVENT CARD */

.ev-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    border:1px solid #e8e0d4;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 6px 20px rgba(0,0,0,0.04);
    display:flex;
    flex-direction:column;
}

.ev-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,0.1);
}

/* PAST EVENT styling */

.ev-past{
    border-left:4px solid #10b981;
}

/* FLAGSHIP */

.ev-flagship-card{
    border:2px solid #d4af37;
    background:linear-gradient(160deg,#fff 70%,rgba(212,175,55,0.04));
}

.ev-flagship-ribbon{
    position:absolute;
    top:0;
    right:0;
    background:#d4af37;
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:8px 16px;
    border-bottom-left-radius:16px;
    z-index:4;
}

/* DATE COLUMN */

.ev-date-col{
    display:none; /* hidden — date shown in cover */
}

/* BODY */

.ev-body{
    display:flex;
    flex-direction:column;
    flex:1;
}

/* COVER IMAGE */

.ev-cover{
    position:relative;
    height:200px;
    overflow:hidden;
}

.ev-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.5s;
}

.ev-card:hover .ev-cover img{
    transform:scale(1.04);
}

/* STATUS PILL */

.ev-status-pill{
    position:absolute;
    top:14px;
    left:14px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:6px 14px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:6px;
}

.past-pill{
    background:rgba(16,185,129,0.9);
    color:#fff;
}

.upcoming-pill{
    background:rgba(11,29,81,0.85);
    color:#fff;
}

.flagship-pill{
    background:#d4af37;
    color:#fff;
}

/* DATE ON COVER — bottom right */

.ev-cover::after{
    content:attr(data-date);
}

/* DETAILS */

.ev-details{
    padding:24px 26px 26px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.ev-num{
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    color:#d4af37;
    text-transform:uppercase;
    margin-bottom:8px;
    display:block;
}

.ev-details h3{
    font-size:20px;
    color:#0b1d51;
    line-height:1.3;
    margin-bottom:10px;
    font-weight:700;
}

.ev-theme{
    font-size:13px;
    font-style:italic;
    color:#888;
    line-height:1.6;
    margin-bottom:12px;
}

.ev-location{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:13px;
    color:#666;
    margin-bottom:16px;
}

.ev-location i{
    color:#d4af37;
    margin-top:2px;
    flex-shrink:0;
}

.ev-desc{
    font-size:14px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

/* VIEW BUTTON */

.ev-view-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#0b1d51;
    color:#fff;
    text-decoration:none;
    padding:13px 22px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
    margin-top:auto;
    align-self:flex-start;
}

.ev-view-btn:hover{
    background:#d4af37;
    transform:translateX(4px);
}

/* RESPONSIVE */

@media(max-width:900px){
    .events-list-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){
    .ev-cover{
        height:160px;
    }
    .ev-details{
        padding:18px;
    }
    .ev-details h3{
        font-size:17px;
    }
}

/* ================= EVENTS — 2026 CALENDAR STYLE ================= */

.event-card{
    position:relative;
}

.event-date-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#0b1d51;
    color:#fff;
    border-radius:14px;
    padding:10px 14px;
    text-align:center;
    min-width:58px;
    z-index:3;
    box-shadow:0 4px 14px rgba(11,29,81,0.35);
}

.event-day{
    display:block;
    font-size:20px;
    font-weight:800;
    line-height:1;
}

.event-month{
    display:block;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#d4af37;
    margin-top:3px;
}

.event-date-flagship{
    background:#d4af37;
}

.event-date-flagship .event-month{
    color:#fff;
}

.event-number{
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    color:#d4af37;
    text-transform:uppercase;
    margin-bottom:8px;
}

.event-theme{
    font-size:13px;
    font-style:italic;
    color:#888;
    line-height:1.6;
    margin-bottom:14px;
    min-height:20px;
}

.event-location{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:13px;
    color:#666;
    margin-top:auto;
    padding-top:14px;
    border-top:1px solid #f0ebe3;
}

.event-location i{
    color:#d4af37;
    font-size:13px;
    margin-top:2px;
    flex-shrink:0;
}

/* FLAGSHIP EVENT CARD */

.event-card.event-flagship{
    border:2px solid #d4af37;
    background:linear-gradient(160deg,#fff 60%,rgba(212,175,55,0.05));
}

.event-flagship-tag{
    position:absolute;
    top:0;
    right:0;
    background:#d4af37;
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:7px 14px;
    border-bottom-left-radius:14px;
    border-top-right-radius:25px;
    z-index:3;
}

/* TALLER CARD FOR MORE CONTENT */

.event-card{
    display:flex;
    flex-direction:column;
}

.event-card h3{
    flex:none;
}

/* RESPONSIVE */

@media(max-width:480px){
    .event-date-badge{
        top:14px;
        left:14px;
        padding:8px 10px;
        min-width:48px;
    }
    .event-day{
        font-size:16px;
    }
    .event-month{
        font-size:10px;
    }
}

/* ================= VISION ICON TRANSITION ================= */

.vision-icon{
    transition:background 0.4s, border-color 0.4s;
}

.vision-icon i{
    transition:color 0.4s;
}

/* ================= SERVICE ICON TRANSITION ================= */

.service-icon{
    transition:background 0.4s, border-color 0.4s;
}

.service-icon i{
    transition:color 0.4s;
}

/* ================= PARTNERSHIP SECTION ================= */

.partnership{
    background:#0b1d51;
}

.partnership .section-tag{
    color:#d4af37;
}

.partnership .section-header h2{
    color:#fff;
}

.partnership .section-description{
    color:rgba(255,255,255,0.7);
}

/* WRAPPER */

.partnership-wrapper{
    margin-top:50px;
}

/* GRID */

.partnership-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    align-items:start;
}

/* CARD */

.partner-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:28px;
    overflow:hidden;
    transition:0.4s;
}

.partner-card:hover{
    background:rgba(255,255,255,0.08);
    border-color:rgba(212,175,55,0.4);
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.3);
}

/* FEATURED (PREMIER) */

.partner-card.partner-featured{
    border:2px solid #d4af37;
    background:rgba(212,175,55,0.07);
    transform:scale(1.04);
}

.partner-card.partner-featured:hover{
    transform:scale(1.04) translateY(-10px);
}

/* FLAGSHIP */

.partner-card.partner-flagship{
    border:2px solid rgba(212,175,55,0.5);
    background:linear-gradient(160deg, rgba(212,175,55,0.1), rgba(255,255,255,0.04));
}

/* RECOMMENDED BADGE */

.partner-badge-top{
    position:absolute;
    top:0;
    right:0;
    background:#d4af37;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:8px 18px;
    border-bottom-left-radius:16px;
}

/* TIER BADGE */

.partner-tier-badge{
    padding:22px 28px 0;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#d4af37;
}

/* TOP */

.partner-top{
    padding:20px 28px 24px;
    display:flex;
    flex-direction:column;
    gap:16px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.partner-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:rgba(212,175,55,0.15);
    border:1px solid rgba(212,175,55,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.partner-card:hover .partner-icon{
    background:#d4af37;
    border-color:#d4af37;
}

.partner-card:hover .partner-icon i{
    color:#fff;
}

.partner-icon i{
    font-size:26px;
    color:#d4af37;
    transition:0.4s;
}

.partner-label{
    display:block;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:rgba(255,255,255,0.5);
    margin-bottom:6px;
    font-weight:600;
}

.partner-price{
    font-size:26px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.partner-card.partner-flagship .partner-price{
    color:#d4af37;
}

/* CONTENT */

.partner-content{
    padding:28px;
}

.partner-content p{
    font-size:14px;
    line-height:1.8;
    color:rgba(255,255,255,0.65);
    margin-bottom:22px;
}

.partner-content ul{
    list-style:none;
    margin-bottom:28px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.partner-content ul li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:rgba(255,255,255,0.8);
}

.partner-content ul li i{
    color:#d4af37;
    font-size:13px;
    flex-shrink:0;
}

/* BUTTON */

.partner-btn{
    display:block;
    width:100%;
    text-align:center;
    background:transparent;
    color:#d4af37;
    text-decoration:none;
    padding:15px;
    border-radius:12px;
    font-weight:600;
    font-size:14px;
    border:2px solid rgba(212,175,55,0.4);
    transition:0.3s;
}

.partner-btn:hover{
    background:#d4af37;
    color:#fff;
    border-color:#d4af37;
}

.partner-card.partner-featured .partner-btn,
.partner-card.partner-flagship .partner-btn{
    background:#d4af37;
    color:#fff;
    border-color:#d4af37;
}

.partner-card.partner-featured .partner-btn:hover,
.partner-card.partner-flagship .partner-btn:hover{
    background:#b8922f;
    border-color:#b8922f;
}

/* RESPONSIVE */

@media(max-width:1100px){
    .partnership-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .partner-card.partner-featured{
        transform:none;
    }
    .partner-card.partner-featured:hover{
        transform:translateY(-10px);
    }
}

@media(max-width:600px){
    .partnership-grid{
        grid-template-columns:1fr;
    }
    .partner-price{
        font-size:22px;
    }
}

/* ================= SECTION PADDING IMPROVEMENT ================= */

.vision.section-padding,
.about.section-padding,
.services.section-padding,
.events.section-padding,
.benefits.section-padding,
.membership.section-padding,
.partnership.section-padding,
.contact-section.section-padding{
    padding:70px 0;
}

/* ============================================================
   PROFESSIONAL POLISH LAYER
   Refined details applied site-wide: scrollbar, selection,
   easing, card depth, button feel, reveal-on-scroll.
   ============================================================ */

/* Brand text selection */
::selection{background:#0b1d51;color:#fff;}
::-moz-selection{background:#0b1d51;color:#fff;}

/* Slim branded scrollbar */
::-webkit-scrollbar{width:11px;height:11px;}
::-webkit-scrollbar-track{background:#f0f2f8;}
::-webkit-scrollbar-thumb{background:#0b1d51;border-radius:8px;border:2.5px solid #f0f2f8;}
::-webkit-scrollbar-thumb:hover{background:#1a3a8c;}

/* Consistent, softer easing everywhere transitions already exist */
a,button{-webkit-tap-highlight-color:transparent;}

/* Unified button feel: subtle press feedback */
.primary-btn:active,.hp-btn-primary:active,.footer-join-btn:active,
.pt-btn:active,.appform-submit:active{transform:translateY(0) scale(0.98);}

/* Refined card depth on hover (layered shadow reads more premium) */
.pricing-card,.pillar-card,.anc-card,.pt-card,.ev-type-card,.cms-card{
  transition:box-shadow .28s ease,transform .28s ease,border-color .28s ease;
}
.pricing-card:hover,.pillar-card:hover,.anc-card:hover,.pt-card:hover{
  transform:translateY(-5px);
  box-shadow:0 2px 6px rgba(11,29,81,.06),0 18px 40px rgba(11,29,81,.12);
}

/* Crisper images inside cards */
img{image-rendering:auto;}

/* Reveal-on-scroll (elements get .reveal via JS; visible state .revealed) */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.revealed{opacity:1;transform:none;}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
}

/* Heading rhythm: keep display headings tight and confident */
h1,h2{letter-spacing:-0.3px;}
.section-tag,.hp-section-tag{letter-spacing:2.5px;}

/* Footer link micro-interaction */
.footer-col ul li a,.footer-contact-list li a{transition:color .2s ease,padding-left .2s ease;}
