/* =========================
   COLOR SYSTEM
   Navy + Green + Amber
========================= */
:root{

/* BASE */
--bg-primary: #f6f9fc;
--bg-secondary: #eef4f9;
--bg-card: #ffffff;

/* ACCENTS */
--green: #16c784;
--green-soft: rgba(22,199,132,0.12);

--orange: #ff9f1a;
--orange-soft: rgba(255,159,26,0.12);

--blue: #2f80ed;

/* TEXT */
--text-dark: #0b1f33;
--muted: #4f6477;
--soft: #6f8598;

/* BORDERS */
--border: rgba(15, 35, 55, 0.10);
--glass: rgba(255,255,255,0.6);
}



/* =========================
   GLOBAL
========================= */

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

body{
    font-family:'Inter',sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* =========================
   MODAL
========================= */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

/* show state */
.modal-overlay.show{
    opacity:1;
    visibility:visible;
}

.modal-box{
    width:90%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    position:relative;
    animation:pop 0.4s ease;
}

@keyframes pop{
    from{
        transform:scale(0.85);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.modal-box h2{
    font-size:1.8rem;
    margin-bottom:15px;
    color:#0b1f33;
}

.modal-box p{
    font-size:1rem;
    line-height:1.7;
    color:#4f6477;
    margin-bottom:25px;
}

.modal-btn{
    display:inline-block;
    padding:14px 26px;
    background:linear-gradient(135deg,#19c37d,#12a96a);
    color:#04110b;
    font-weight:700;
    border-radius:40px;
}

/* close button */
.modal-close{
    position:absolute;
    top:12px;
    right:14px;
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
    color:#0b1f33;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:16px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(16px);
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* =========================
   NAVBAR (ROBUST FIX)
========================= */

/* LEFT: LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
}

.logo img{
    height:40px;
    width:auto;
    display:block;
}
.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text .g{
    color:rgb(208, 125, 17);
    font-size:0.78rem;
    font-weight:800;
    letter-spacing:1px;
}

.logo-text .i{
    color:#19c37d;
    font-size:0.78rem;
    font-weight:800;
    letter-spacing:1px;
}

/* CENTER: NAV */
nav{
    display:flex;
    gap:24px;
    align-items:center;

    /* IMPORTANT FIX */
    flex:1;
    justify-content:center;
}

nav a{
    color:#111518a2;
    font-size:0.95rem;
    white-space:nowrap;
}

nav a:hover{
    color:#19c37d;
}

/* RIGHT: BUTTON */
.nav-btn{
    flex:0 0 auto;
    padding:10px 18px;
    border-radius:40px;
    background:#19c37d;
    color:#04110b;
    font-weight:700;
    white-space:nowrap;
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
    color: var(--white);
}

.menu-toggle{
    display:none;
}

.mobile-nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:7%;
    width:220px;
    background:white;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:9999;
}

.mobile-nav a{
    padding:14px;
    color:#0b1f33;
    border-bottom:1px solid rgba(0,0,0,0.05);
    display:block;
}

/* optional: close menu after click feel */
.mobile-nav a:hover{
    background:#f3f6f9;
}
.menu-toggle:checked ~ .mobile-nav{
    display:flex;
}

.close-btn{
    display:block;
    text-align:right;
    padding:14px 16px;
    font-size:22px;
    cursor:pointer;
    color:#0b1f33;
    border-bottom:1px solid rgba(0,0,0,0.05);
}
.mobile-register-btn{
    margin:15px;
    padding:14px 18px;
    border-radius:40px;
    background:linear-gradient(135deg,#19c37d,#12a96a);
    color:#04110b;
    font-weight:700;
    text-align:center;
    display:block;
}
/* MOBILE FIX */

@media(max-width:900px){

    nav{
        display:none;
    }

    .navbar .primary-btn{
        display:none; /* ✅ THIS is the missing part */
    }

    .hamburger{
        display:block;
    }

    .mobile-nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:7%;
    width:220px;
    background:white;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:9999;
}

/* SHOW ONLY WHEN CHECKED */
.menu-toggle:checked ~ .navbar .mobile-nav{
    display:flex;
}
}

/* =========================
   PRE-HERO CINEMATIC SECTION
========================= */

.pre-hero{
    height:60vh;
    width:100%;
    position:relative;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    padding:0 7%;
}

/* dark overlay depth */
.pre-hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 30% 40%, rgba(25,195,125,0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,159,28,0.10), transparent 55%);
}

/* content */
.pre-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.pre-hero-content h2{
    font-size:2.6rem;
    color:white;
    margin-bottom:12px;
    letter-spacing:-0.5px;
}

.pre-hero-content p{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    letter-spacing:1px;
}

/* =========================
   HERO SECTION (FIXED + IMAGE READY)
========================= */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:80px 7% 80px;
    background:
    linear-gradient(
        105deg,
        rgba(246,249,252,0.96) 0%,
        rgba(246,249,252,0.88) 45%,
        rgba(246,249,252,0.60) 100%
    );

    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 30%, rgba(22,199,132,0.10), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(47,128,237,0.10), transparent 45%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:780px;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background: var(--green-soft);
    border:1px solid rgba(22,199,132,0.25);
    border-radius:40px;
    margin-bottom:24px;
    color: var(--green);
    font-size:0.9rem;
}

.hero h1{
    font-size:3.6rem;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:800;
    letter-spacing:-1px;
}

.hero-text{
    font-size:1.05rem;
    line-height:1.8;
    color: var(--muted);
    max-width:650px;
    margin-bottom:28px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:40px;
}



/* =========================
   BUTTONS
========================= */

.primary-btn{
    padding:16px 28px;
    background: linear-gradient(135deg, #19c37d, #12a96a);
    color:#04110b;
    border-radius:50px;
    font-weight:800;
    transition:0.3s ease;
    box-shadow: 0 10px 30px rgba(25,195,125,0.25);
}

.primary-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(25,195,125,0.35);
}

.secondary-btn{
    padding:16px 28px;
    border:1px solid rgba(25,195,125,0.4);
    color: var(--white);
    border-radius:50px;
    transition:0.3s ease;
}

.secondary-btn:hover{
    background: rgba(25,195,125,0.1);
    border-color: var(--green);
}




/* =========================
   HERO META (VERTICAL STYLE)
========================= */

.hero-meta{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:40px;
}

.meta-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

/* vertical accent line */
.meta-line{
    width:3px;
    height:55px;
    border-radius:10px;
    background: linear-gradient(180deg, var(--green), var(--orange));
    flex-shrink:0;
    margin-top:3px;
}

.meta-item small{
    display:block;
    color: var(--soft);
    font-size:0.8rem;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:4px;
}

.meta-item h4{
    font-size:1.05rem;
    font-weight:600;
    color: var(--white);
}

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

.stats-section{
    padding:90px 7%;
}

/* MAIN BOX */
.stats-wrapper{
    position:relative;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        #ff9f1c,
        #ff6b81
    );

    box-shadow:
    0 20px 60px rgba(255,107,129,0.18);
}

/* WHITE SIDE CIRCLES */
.stats-wrapper::before,
.stats-wrapper::after{
    content:"";

    position:absolute;

    width:70px;
    height:70px;

    background:white;

    border-radius:50%;

    top:50%;

    transform:translateY(-50%);

    z-index:2;
}

/* LEFT HALF CIRCLE */
.stats-wrapper::before{
    left:-35px;
}

/* RIGHT HALF CIRCLE */
.stats-wrapper::after{
    right:-35px;
}

/* EACH COLUMN */
.stat-card{
    position:relative;

    padding:55px 30px;

    text-align:center;

    transition:0.4s ease;

    border-right:1px solid rgba(255,255,255,0.15);

    cursor:pointer;
}

/* REMOVE LAST BORDER */
.stat-card:last-child{
    border-right:none;
}

/* HOVER EFFECT */
.stat-card:hover{
    background:white;
}

/* NUMBER */
.stat-card h2{
    font-size:3rem;

    font-weight:800;

    color:white;

    margin-bottom:12px;

    transition:0.4s ease;


}
.counter span{
    font-size: 0.8em;
}
/* TEXT */
.stat-card p{
    color:rgba(255,255,255,0.88);

    font-size:1rem;

    transition:0.4s ease;
}

/* HOVER TEXT CHANGE */
.stat-card:hover h2{
    color:#ff6b81;
}

.stat-card:hover p{
    color:#444;
}



/* RESPONSIVE */
@media(max-width:900px){

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

    .stat-card{
        border-bottom:1px solid rgba(255,255,255,0.15);
    }
}

@media(max-width:600px){

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
        max-width:500px;
        margin:auto;
    }

    .stat-card{
        padding:24px 12px;
        border-right:none;
    }

    .stat-card h2{
        font-size:2rem;
        line-height:1.1;
    }

    .stat-card p{
        font-size:0.9rem;
    }

    .stats-wrapper::before,
    .stats-wrapper::after{
        display:none;
    }

}

/* =========================
   GENERAL SECTIONS
========================= */

.about-section,
.sector-section{
    padding:100px 7%;
}

.section-header{
    margin-bottom:55px;
}

.section-header span{
    color: var(--green);
    font-size:0.85rem;
    letter-spacing:1.5px;
}

.section-header h2{
    margin-top:12px;
    font-size:2.7rem;
    max-width:700px;
    line-height:1.2;
}


/* =========================
   GRIDS
========================= */

.about-grid,
.sector-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.about-card,
.sector-card{
    background: var(--orange-soft);
    border-radius:24px;
    padding:35px;
    border:none;
    transition:0.3s ease;
}

.about-card:hover{
    transform: translateY(-6px);
    border-color: rgba(25,195,125,0.25);
}


/* ABOUT TEXT */

.about-card h3{
    margin-bottom:15px;
    font-size:1.25rem;
}

.about-card p{
    line-height:1.8;
    color: var(--muted);
}


/* SECTOR */

.sector-card{
    text-align:center;
    font-size:1.1rem;
    font-weight:600;
    transition: all 0.25s ease;
    background-color: #0a854c8d;
}

.sector-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: rgba(25,195,125,0.35);
    background: linear-gradient(
        135deg,
        var(--orange-soft),
        rgba(25,195,125,0.08)
    );
}


/* INITIAL STATE */
.sector-card{

    opacity:0;

    transform:
    translateY(50px)
    scale(0.96);

}

/* ACTIVE ON SCROLL */
.sector-card.active{

    opacity:1;

    transform:
    translateY(0)
    scale(1);

    box-shadow:0 18px 40px rgba(0,0,0,0.12);

    border-color:rgba(25,195,125,0.35);

    background:
    linear-gradient(
        135deg,
        var(--orange-soft),
        rgba(25,195,125,0.08)
    );
}

/* STAGGER EFFECT */
.sector-card:nth-child(1){
    transition:0.5s ease;
}

.sector-card:nth-child(2){
    transition:0.7s ease;
}

.sector-card:nth-child(3){
    transition:0.9s ease;
}

.sector-card:nth-child(4){
    transition:1.1s ease;
}

.sector-card:nth-child(5){
    transition:1.3s ease;
}

.sector-card:nth-child(6){
    transition:1.5s ease;
}


/* =========================
   CTA SECTION
========================= */

.cta-section{
    padding:60px 7% 100px;
}

.cta-box{
    background: linear-gradient(135deg, #19c37d, #ff9f1c);
    padding:70px;
    border-radius:34px;
    text-align:center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.cta-box h2{
    font-size:2.8rem;
    margin-bottom:18px;
}

.cta-box p{
    color:#04110b;
    margin-bottom:35px;
    font-size:1.05rem;
    font-weight:500;
}
.cta-box .primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;   /* 🔥 prevents breaking */
    width: auto;           /* ensures it doesn't stretch weirdly */
}

@media(max-width: 600px){

    .pre-hero{
        height: auto;
        min-height: 55vh;
        padding: 110px 7% 60px; /* 👈 key fix */
        align-items: flex-start;
    }

    .pre-hero-content h2{
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .pre-hero-content p{
        font-size: 0.95rem;
    }
}


/* =========================
   PANELISTS SECTION
========================= */

/* =========================
   COLOR SYSTEM
   Navy + Green + Amber
========================= */
:root{

/* BASE */
--bg-primary: #f6f9fc;
--bg-secondary: #eef4f9;
--bg-card: #ffffff;

/* ACCENTS */
--green: #16c784;
--green-soft: rgba(22,199,132,0.12);

--orange: #ff9f1a;
--orange-soft: rgba(255,159,26,0.12);

--blue: #2f80ed;

/* TEXT */
--text-dark: #0b1f33;
--muted: #4f6477;
--soft: #6f8598;

/* BORDERS */
--border: rgba(15, 35, 55, 0.10);
--glass: rgba(255,255,255,0.6);
}



/* =========================
   GLOBAL
========================= */

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

body{
    font-family:'Inter',sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* =========================
   MODAL
========================= */

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

/* show state */
.modal-overlay.show{
    opacity:1;
    visibility:visible;
}

.modal-box{
    width:90%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    position:relative;
    animation:pop 0.4s ease;
}

@keyframes pop{
    from{
        transform:scale(0.85);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.modal-box h2{
    font-size:1.8rem;
    margin-bottom:15px;
    color:#0b1f33;
}

.modal-box p{
    font-size:1rem;
    line-height:1.7;
    color:#4f6477;
    margin-bottom:25px;
}

.modal-btn{
    display:inline-block;
    padding:14px 26px;
    background:linear-gradient(135deg,#19c37d,#12a96a);
    color:#04110b;
    font-weight:700;
    border-radius:40px;
}

/* close button */
.modal-close{
    position:absolute;
    top:12px;
    right:14px;
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
    color:#0b1f33;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:16px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(16px);
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

/* =========================
   NAVBAR (ROBUST FIX)
========================= */

/* LEFT: LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
}

.logo img{
    height:40px;
    width:auto;
    display:block;
}
.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text .g{
    color:rgb(208, 125, 17);
    font-size:0.78rem;
    font-weight:800;
    letter-spacing:1px;
}

.logo-text .i{
    color:#19c37d;
    font-size:0.78rem;
    font-weight:800;
    letter-spacing:1px;
}

/* CENTER: NAV */
nav{
    display:flex;
    gap:24px;
    align-items:center;

    /* IMPORTANT FIX */
    flex:1;
    justify-content:center;
}

nav a{
    color:#111518a2;
    font-size:0.95rem;
    white-space:nowrap;
}

nav a:hover{
    color:#19c37d;
}

/* RIGHT: BUTTON */
.nav-btn{
    flex:0 0 auto;
    padding:10px 18px;
    border-radius:40px;
    background:#19c37d;
    color:#04110b;
    font-weight:700;
    white-space:nowrap;
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
    color: var(--white);
}

.menu-toggle{
    display:none;
}

.mobile-nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:7%;
    width:220px;
    background:white;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:9999;
}

.mobile-nav a{
    padding:14px;
    color:#0b1f33;
    border-bottom:1px solid rgba(0,0,0,0.05);
    display:block;
}

/* optional: close menu after click feel */
.mobile-nav a:hover{
    background:#f3f6f9;
}
.menu-toggle:checked ~ .mobile-nav{
    display:flex;
}

.close-btn{
    display:block;
    text-align:right;
    padding:14px 16px;
    font-size:22px;
    cursor:pointer;
    color:#0b1f33;
    border-bottom:1px solid rgba(0,0,0,0.05);
}
.mobile-register-btn{
    margin:15px;
    padding:14px 18px;
    border-radius:40px;
    background:linear-gradient(135deg,#19c37d,#12a96a);
    color:#04110b;
    font-weight:700;
    text-align:center;
    display:block;
}
/* MOBILE FIX */

@media(max-width:900px){

    nav{
        display:none;
    }

    .navbar .primary-btn{
        display:none; /* ✅ THIS is the missing part */
    }

    .hamburger{
        display:block;
    }

    .mobile-nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:7%;
    width:220px;
    background:white;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:9999;
}

/* SHOW ONLY WHEN CHECKED */
.menu-toggle:checked ~ .navbar .mobile-nav{
    display:flex;
}
}

/* =========================
   PRE-HERO CINEMATIC SECTION
========================= */

.pre-hero{
    height:60vh;
    width:100%;
    position:relative;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    padding:0 7%;
}

/* dark overlay depth */
.pre-hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 30% 40%, rgba(25,195,125,0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,159,28,0.10), transparent 55%);
}

/* content */
.pre-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.pre-hero-content h2{
    font-size:2.6rem;
    color:white;
    margin-bottom:12px;
    letter-spacing:-0.5px;
}

.pre-hero-content p{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    letter-spacing:1px;
}

/* =========================
   HERO SECTION (FIXED + IMAGE READY)
========================= */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:80px 7% 80px;
    background:
    linear-gradient(
        105deg,
        rgba(246,249,252,0.96) 0%,
        rgba(246,249,252,0.88) 45%,
        rgba(246,249,252,0.60) 100%
    );

    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 30%, rgba(22,199,132,0.10), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(47,128,237,0.10), transparent 45%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:780px;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background: var(--green-soft);
    border:1px solid rgba(22,199,132,0.25);
    border-radius:40px;
    margin-bottom:24px;
    color: var(--green);
    font-size:0.9rem;
}

.hero h1{
    font-size:3.6rem;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:800;
    letter-spacing:-1px;
}

.hero-text{
    font-size:1.05rem;
    line-height:1.8;
    color: var(--muted);
    max-width:650px;
    margin-bottom:28px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:40px;
}



/* =========================
   BUTTONS
========================= */

.primary-btn{
    padding:16px 28px;
    background: linear-gradient(135deg, #19c37d, #12a96a);
    color:#04110b;
    border-radius:50px;
    font-weight:800;
    transition:0.3s ease;
    box-shadow: 0 10px 30px rgba(25,195,125,0.25);
}

.primary-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(25,195,125,0.35);
}

.secondary-btn{
    padding:16px 28px;
    border:1px solid rgba(25,195,125,0.4);
    color: var(--white);
    border-radius:50px;
    transition:0.3s ease;
}

.secondary-btn:hover{
    background: rgba(25,195,125,0.1);
    border-color: var(--green);
}




/* =========================
   HERO META (VERTICAL STYLE)
========================= */

.hero-meta{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:40px;
}

.meta-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

/* vertical accent line */
.meta-line{
    width:3px;
    height:55px;
    border-radius:10px;
    background: linear-gradient(180deg, var(--green), var(--orange));
    flex-shrink:0;
    margin-top:3px;
}

.meta-item small{
    display:block;
    color: var(--soft);
    font-size:0.8rem;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:4px;
}

.meta-item h4{
    font-size:1.05rem;
    font-weight:600;
    color: var(--white);
}

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

.stats-section{
    padding:90px 7%;
}

/* MAIN BOX */
.stats-wrapper{
    position:relative;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        #ff9f1c,
        #ff6b81
    );

    box-shadow:
    0 20px 60px rgba(255,107,129,0.18);
}

/* WHITE SIDE CIRCLES */
.stats-wrapper::before,
.stats-wrapper::after{
    content:"";

    position:absolute;

    width:70px;
    height:70px;

    background:white;

    border-radius:50%;

    top:50%;

    transform:translateY(-50%);

    z-index:2;
}

/* LEFT HALF CIRCLE */
.stats-wrapper::before{
    left:-35px;
}

/* RIGHT HALF CIRCLE */
.stats-wrapper::after{
    right:-35px;
}

/* EACH COLUMN */
.stat-card{
    position:relative;

    padding:55px 30px;

    text-align:center;

    transition:0.4s ease;

    border-right:1px solid rgba(255,255,255,0.15);

    cursor:pointer;
}

/* REMOVE LAST BORDER */
.stat-card:last-child{
    border-right:none;
}

/* HOVER EFFECT */
.stat-card:hover{
    background:white;
}

/* NUMBER */
.stat-card h2{
    font-size:3rem;

    font-weight:800;

    color:white;

    margin-bottom:12px;

    transition:0.4s ease;
}

/* TEXT */
.stat-card p{
    color:rgba(255,255,255,0.88);

    font-size:1rem;

    transition:0.4s ease;
}

/* HOVER TEXT CHANGE */
.stat-card:hover h2{
    color:#ff6b81;
}

.stat-card:hover p{
    color:#444;
}

/* RESPONSIVE */
@media(max-width:900px){

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

    .stat-card{
        border-bottom:1px solid rgba(255,255,255,0.15);
    }
}

@media(max-width:600px){

    .stats-wrapper{
        grid-template-columns:1fr;
    }

    .stat-card{
        border-right:none;
    }

    .stats-wrapper::before,
    .stats-wrapper::after{
        display:none;
    }
}


/* =========================
   GENERAL SECTIONS
========================= */

.about-section,
.sector-section{
    padding:100px 7%;
}

.section-header{
    margin-bottom:55px;
}

.section-header span{
    color: var(--green);
    font-size:0.85rem;
    letter-spacing:1.5px;
}

.section-header h2{
    margin-top:12px;
    font-size:2.7rem;
    max-width:700px;
    line-height:1.2;
}


/* =========================
   GRIDS
========================= */

.about-grid,
.sector-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.about-card,
.sector-card{
    background: var(--orange-soft);
    border-radius:24px;
    padding:35px;
    border:none;
    transition:0.3s ease;
}

.about-card:hover{
    transform: translateY(-6px);
    border-color: rgba(25,195,125,0.25);
}


/* ABOUT TEXT */

.about-card h3{
    margin-bottom:15px;
    font-size:1.25rem;
}

.about-card p{
    line-height:1.8;
    color: var(--muted);
}


/* SECTOR */

.sector-card{
    text-align:center;
    font-size:1.1rem;
    font-weight:600;
    transition: all 0.25s ease;
    background-color: #0a854c8d;
}

.sector-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: rgba(25,195,125,0.35);
    background: linear-gradient(
        135deg,
        var(--orange-soft),
        rgba(25,195,125,0.08)
    );
}



/* =========================
   CTA SECTION
========================= */

.cta-section{
    padding:60px 7% 100px;
}

.cta-box{
    background: linear-gradient(135deg, #19c37d, #ff9f1c);
    padding:70px;
    border-radius:34px;
    text-align:center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.cta-box h2{
    font-size:2.8rem;
    margin-bottom:18px;
}

.cta-box p{
    color:#04110b;
    margin-bottom:35px;
    font-size:1.05rem;
    font-weight:500;
}
.cta-box .primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;   /* 🔥 prevents breaking */
    width: auto;           /* ensures it doesn't stretch weirdly */
}

@media(max-width: 600px){

    .pre-hero{
        height: auto;
        min-height: 55vh;
        padding: 110px 7% 60px; /* 👈 key fix */
        align-items: flex-start;
    }

    .pre-hero-content h2{
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .pre-hero-content p{
        font-size: 0.95rem;
    }
}


/* =========================
   PANELISTS SECTION
========================= */

.panelists-section{
    padding:100px 7%;
    background: var(--bg-secondary);
}

/* THIS CONTROLS THE WIDTH */
.panelists-slider{
    width:100%;
    overflow:hidden;

    margin-top:40px;

    border-radius:24px;
}

/* MOVING ROW */
.panelists-grid{
    display:flex;
    gap:25px;

    width:max-content;

    animation: scrollPanelists 30s linear infinite;
}

/* AUTO MOVE */
@keyframes scrollPanelists{

    0%{
        transform:translateX(0);
    }

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

/* CARD */
.panelist-card{
    position:relative;

    width:240px;
    height:320px;

    border-radius:24px;
    overflow:hidden;

    flex-shrink:0;

    box-shadow:0 12px 35px rgba(0,0,0,0.12);

    transition:0.4s ease;
}

/* IMAGE */
.panelist-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

/* OVERLAY */
.panelist-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.18),
        transparent
    );
}

/* HOVER */
.panelist-card:hover{
    transform:translateY(-8px);
}

.panelist-card:hover img{
    transform:scale(1.05);
}

/* QUOTE BOX */
.quote-box{
    position:absolute;

    left:15px;
    right:15px;
    bottom:15px;

    z-index:2;

    background:rgba(190, 132, 55, 0.531);

    backdrop-filter:blur(14px);

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

    border-radius:18px;

    padding:16px;

    color:white;
}

/* ICON */
.quote-box i{
    color:var(--green);
    margin-bottom:10px;
    font-size:0.9rem;
}

/* TEXT */
.quote-box p{
    font-size:0.82rem;
    line-height:1.6;
    margin-bottom:10px;
}

/* NAME */
.quote-box h4{
    font-size:0.92rem;
    margin-bottom:3px;
    color:white;
}

/* ROLE */
.quote-box span{
    font-size:0.75rem;
    color:rgba(255,255,255,0.75);
}

.partners-section{
    padding:90px 7%;
    background: #ffffff;
}

.partners-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap:30px;
    align-items:center;
    justify-items:center;
    margin-top:40px;
}

.partners-grid img{
    width:120px;
    opacity:0.7;
    filter: grayscale(100%);
    transition:0.3s ease;
}

.partners-grid img:hover{
    opacity:1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer{
    background:#0b1f33;
    color:white;
    padding:70px 7% 30px;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:40px;
}

.footer h3{
    font-size:1.6rem;
    margin-bottom:10px;
}

.footer p{
    color:#b9c6d3;
    line-height:1.6;
}

.footer-links h4{
    margin-bottom:15px;
    color:#ffffff;
}

.footer-links a{
    display:block;
    color:#b9c6d3;
    margin-bottom:10px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#16c784;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#8ea2b5;
}
.footer-socials{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);

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

    color:white;
}

.footer-socials a:hover{
    background:var(--green);
    transform:translateY(-3px);
}

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

@media(max-width:900px){

    .hero h1{
        font-size:2.8rem;
    }

    nav{
        display:none;
    }

    .cta-box{
        padding:45px 25px;
    }

    .cta-box h2{
        font-size:2rem;
    }
}

@media(max-width:600px){

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero-text{
        font-size:1rem;
    }

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

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

/* =========================
   PREMIUM UI POLISH LAYER
========================= */

/* Smooth scrolling */
html{
    scroll-behavior:smooth;
}



/* Better section spacing rhythm */
section{
    position:relative;
}

/* Section fade-in base (optional animation hook) */
.section-header h2{
    letter-spacing:-0.5px;
}

/* Glow accent line under headers */
.section-header h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    margin-top:15px;
    border-radius:10px;
    background: linear-gradient(90deg, var(--green), var(--orange));
}

/* Navbar stronger glass feel */
.navbar{
    backdrop-filter: blur(16px);
}

/* Buttons feel more tactile */
.primary-btn,
.secondary-btn,
.nav-btn{
    cursor:pointer;
}

@media(max-width: 600px){

    .pre-hero{
        height: auto;
        min-height: 55vh;
        padding: 110px 7% 60px; /* 👈 key fix */
        align-items: flex-start;
    }

    .pre-hero-content h2{
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .pre-hero-content p{
        font-size: 0.95rem;
    }
}

/* CUSTOM MODAL */
.custom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);

    display: none;

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

    z-index: 99999;

    padding: 20px;

    overflow-y: auto; /* IMPORTANT */
}

.custom-modal.show {
    display: flex;
}

.custom-modal-content {
    background: #fff;

    width: 100%;
    max-width: 900px;

    border-radius: 20px;

    padding: 40px;

    position: relative;

    animation: modalFade .25s ease;

    max-height: 95vh; /* IMPORTANT */
    overflow-y: auto; /* IMPORTANT */
}

@keyframes modalFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width:768px){

    .custom-modal{
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .custom-modal-content{
        padding: 25px;
        max-height: unset;
    }

}

.custom-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}
a,
button,
.primary-btn,
.secondary-btn,
.nav-btn,
.about-card,
.sector-card,
.stat-card,
.panelist-card {
    transition: 0.3s ease;
}

button{
    border:none;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:768px) {

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

    .custom-modal-content {
        padding: 25px;
    }

}

/* =========================
   PARTNER MODAL ENHANCEMENTS
========================= */

/* textarea styling */
.form-group textarea{
    min-height:120px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    outline:none;
    resize:vertical;
    font-family:'Inter',sans-serif;
}

/* focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#19c37d;

    box-shadow:
    0 0 0 4px rgba(25,195,125,0.10);

}

/* modal header */
.custom-modal-header{
    margin-bottom:30px;
}

.custom-modal-header h2{
    font-size:2rem;
    margin-bottom:10px;
    color:#0b1f33;
}

.custom-modal-header p{
    color:#6f8598;
    line-height:1.7;
}

/* labels */
.form-group label{
    margin-bottom:8px;
    font-size:0.92rem;
    color:#0b1f33;
}

/* better input look */
.form-group input,
.form-group select,
.form-group textarea{

    width:100%;
    background:#fff;

    transition:0.25s ease;
}

/* modal scroll fix */
.custom-modal{

    overflow-y:auto;

}

/* mobile spacing */
@media(max-width:768px){

    .custom-modal{
        align-items:flex-start;
        padding:30px 15px;
    }

    .custom-modal-content{

        margin:auto 0;
        width:100%;
        border-radius:18px;

    }

    .custom-modal-header h2{
        font-size:1.5rem;
    }

    .modal-actions{
        flex-direction:column;
    }

    .modal-actions .primary-btn,
    .modal-actions .secondary-btn{

        width:100%;
        text-align:center;

    }

}

/* =========================
   AGENDA SECTION
========================= */

.agenda-section{
    padding:120px 7%;
    background:linear-gradient(
        180deg,
        #f7fafc 0%,
        #eef5fb 100%
    );
}

.agenda-wrapper{
    display:flex;
    flex-direction:column;
    gap:35px;
    margin-top:60px;
}

/* ROW */
.agenda-item{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:25px;
    align-items:stretch;
}

/* ALTERNATE */
.agenda-item.right{
    grid-template-columns:1fr 260px;
}

/* DAY CARD */
.agenda-day{
    position:relative;
    padding:35px 30px;
    border-radius:24px;
    color:white;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:190px;

    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* SLANTED EDGE */
.agenda-day::after{
    content:"";
    position:absolute;
    top:0;
    right:-60px;
    width:120px;
    height:100%;
    background:rgba(255,255,255,0.12);
    transform:skewX(-18deg);
}

/* COLORS */
.agenda-day.green{
    background:linear-gradient(135deg,#19c37d,#119a63);
}

.agenda-day.orange{
    background:linear-gradient(135deg,#ff9f1c,#ff6b35);
}

.agenda-day.blue{
    background:linear-gradient(135deg,#2f80ed,#1f5fbf);
}

.agenda-day h3{
    font-size:2rem;
    margin-bottom:12px;
}

.agenda-day span{
    font-size:1rem;
    opacity:0.92;
    line-height:1.6;
}

/* CONTENT */
.agenda-content{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;
    justify-content:center;

    border:1px solid rgba(0,0,0,0.05);
}

.agenda-content h4{
    font-size:1.45rem;
    margin-bottom:16px;
    color:#0b1f33;
}

.agenda-content p{
    color:#5b7083;
    line-height:1.9;
    font-size:1rem;
}

/* HOVER */
.agenda-item:hover .agenda-content{
    transform:translateY(-4px);
}

.agenda-item:hover .agenda-day{
    transform:translateY(-4px);
}

/* SCROLL ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:900px){

    .agenda-item,
    .agenda-item.right{
        grid-template-columns:1fr;
    }

    /* FIX ORDER */
    .agenda-item.right .agenda-day{
        order:1;
    }

    .agenda-item.right .agenda-content{
        order:2;
    }

    .agenda-day{
        min-height:150px;
    }
}

/* CONTACT SECTION */

.contact-section{
    padding:100px 7%;
    background:#ffffff;

    overflow-x:hidden; /* 🔥 stops sideways scroll */
    box-sizing:border-box;
}

.contact-wrapper{
    display:grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap:50px;
    margin-top:50px;

    width:100%;
    max-width:100%;
    box-sizing:border-box;
}
.contact-info,
.contact-form{
    min-width:0; /* 🔥 critical for grid overflow bugs */
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:25px;
    background:var(--bg-secondary);
    border-radius:20px;
    flex-wrap:wrap;
}

.contact-card i{
    font-size:20px;
    color:var(--green);
    margin-top:4px;
}
.contact-card div{
    flex:1;
    min-width:0; /* 🔥 prevents overflow */
}
.contact-card h4{
    margin-bottom:6px;
}

.contact-card p{
    color:var(--muted);
    line-height:1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-form{
    background:var(--bg-secondary);
    padding:35px;
    border-radius:24px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.full-width{
    grid-column:1 / -1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    border-radius:14px;
    padding:16px;
    background:white;
    outline:none;
    font-family:'Inter',sans-serif;
}

.contact-form textarea{
    resize:none;
}

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-section{
        padding:80px 5%;
    }

    .contact-form{
        padding:25px;
    }
      .contact-card{
        flex-direction:row;
        align-items:flex-start;
    }

    .contact-card i{
        margin-top:2px;
    }

}
.partners-section{
    padding:90px 7%;
    background: #ffffff;
}

.partners-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap:30px;
    align-items:center;
    justify-items:center;
    margin-top:40px;
}

.partners-grid img{
    width:120px;
    opacity:0.7;
    filter: grayscale(100%);
    transition:0.3s ease;
}

.partners-grid img:hover{
    opacity:1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer{
    background:#0b1f33;
    color:white;
    padding:70px 7% 30px;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:40px;
}

.footer h3{
    font-size:1.6rem;
    margin-bottom:10px;
}

.footer p{
    color:#b9c6d3;
    line-height:1.6;
}

.footer-links h4{
    margin-bottom:15px;
    color:#ffffff;
}

.footer-links a{
    display:block;
    color:#b9c6d3;
    margin-bottom:10px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#16c784;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#8ea2b5;
}
.footer-socials{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);

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

    color:white;
}

.footer-socials a:hover{
    background:var(--green);
    transform:translateY(-3px);
}

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

@media(max-width:900px){

    .hero h1{
        font-size:2.8rem;
    }

    nav{
        display:none;
    }

    .cta-box{
        padding:45px 25px;
    }

    .cta-box h2{
        font-size:2rem;
    }
}

@media(max-width:600px){

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero-text{
        font-size:1rem;
    }

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

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

/* =========================
   PREMIUM UI POLISH LAYER
========================= */

/* Smooth scrolling */
html{
    scroll-behavior:smooth;
}



/* Better section spacing rhythm */
section{
    position:relative;
}

/* Section fade-in base (optional animation hook) */
.section-header h2{
    letter-spacing:-0.5px;
}

/* Glow accent line under headers */
.section-header h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    margin-top:15px;
    border-radius:10px;
    background: linear-gradient(90deg, var(--green), var(--orange));
}

/* Navbar stronger glass feel */
.navbar{
    backdrop-filter: blur(16px);
}

/* Buttons feel more tactile */
.primary-btn,
.secondary-btn,
.nav-btn{
    cursor:pointer;
}

@media(max-width: 600px){

    .pre-hero{
        height: auto;
        min-height: 55vh;
        padding: 110px 7% 60px; /* 👈 key fix */
        align-items: flex-start;
    }

    .pre-hero-content h2{
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .pre-hero-content p{
        font-size: 0.95rem;
    }
}

/* CUSTOM MODAL */
.custom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);

    display: none;

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

    z-index: 99999;

    padding: 20px;

    overflow-y: auto; /* IMPORTANT */
}

.custom-modal.show {
    display: flex;
}

.custom-modal-content {
    background: #fff;

    width: 100%;
    max-width: 900px;

    border-radius: 20px;

    padding: 40px;

    position: relative;

    animation: modalFade .25s ease;

    max-height: 95vh; /* IMPORTANT */
    overflow-y: auto; /* IMPORTANT */
}

@keyframes modalFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width:768px){

    .custom-modal{
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .custom-modal-content{
        padding: 25px;
        max-height: unset;
    }

}

.custom-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}
a,
button,
.primary-btn,
.secondary-btn,
.nav-btn,
.about-card,
.sector-card,
.stat-card,
.panelist-card {
    transition: 0.3s ease;
}

button{
    border:none;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:768px) {

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

    .custom-modal-content {
        padding: 25px;
    }

}

/* =========================
   PARTNER MODAL ENHANCEMENTS
========================= */

/* textarea styling */
.form-group textarea{
    min-height:120px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    outline:none;
    resize:vertical;
    font-family:'Inter',sans-serif;
}

/* focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#19c37d;

    box-shadow:
    0 0 0 4px rgba(25,195,125,0.10);

}

/* modal header */
.custom-modal-header{
    margin-bottom:30px;
}

.custom-modal-header h2{
    font-size:2rem;
    margin-bottom:10px;
    color:#0b1f33;
}

.custom-modal-header p{
    color:#6f8598;
    line-height:1.7;
}

/* labels */
.form-group label{
    margin-bottom:8px;
    font-size:0.92rem;
    color:#0b1f33;
}

/* better input look */
.form-group input,
.form-group select,
.form-group textarea{

    width:100%;
    background:#fff;

    transition:0.25s ease;
}

/* modal scroll fix */
.custom-modal{

    overflow-y:auto;

}

/* mobile spacing */
@media(max-width:768px){

    .custom-modal{
        align-items:flex-start;
        padding:30px 15px;
    }

    .custom-modal-content{

        margin:auto 0;
        width:100%;
        border-radius:18px;

    }

    .custom-modal-header h2{
        font-size:1.5rem;
    }

    .modal-actions{
        flex-direction:column;
    }

    .modal-actions .primary-btn,
    .modal-actions .secondary-btn{

        width:100%;
        text-align:center;

    }

}

/* =========================
   AGENDA SECTION
========================= */

.agenda-section{
    padding:120px 7%;
    background:linear-gradient(
        180deg,
        #f7fafc 0%,
        #eef5fb 100%
    );
}

.agenda-wrapper{
    display:flex;
    flex-direction:column;
    gap:35px;
    margin-top:60px;
}

/* ROW */
.agenda-item{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:25px;
    align-items:stretch;
}

/* ALTERNATE */
.agenda-item.right{
    grid-template-columns:1fr 260px;
}

/* DAY CARD */
.agenda-day{
    position:relative;
    padding:35px 30px;
    border-radius:24px;
    color:white;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:190px;

    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* SLANTED EDGE */
.agenda-day::after{
    content:"";
    position:absolute;
    top:0;
    right:-60px;
    width:120px;
    height:100%;
    background:rgba(255,255,255,0.12);
    transform:skewX(-18deg);
}

/* COLORS */
.agenda-day.green{
    background:linear-gradient(135deg,#19c37d,#119a63);
}

.agenda-day.orange{
    background:linear-gradient(135deg,#ff9f1c,#ff6b35);
}

.agenda-day.blue{
    background:linear-gradient(135deg,#2f80ed,#1f5fbf);
}

.agenda-day h3{
    font-size:2rem;
    margin-bottom:12px;
}

.agenda-day span{
    font-size:1rem;
    opacity:0.92;
    line-height:1.6;
}

/* CONTENT */
.agenda-content{
    background:white;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;
    justify-content:center;

    border:1px solid rgba(0,0,0,0.05);
}

.agenda-content h4{
    font-size:1.45rem;
    margin-bottom:16px;
    color:#0b1f33;
}

.agenda-content p{
    color:#5b7083;
    line-height:1.9;
    font-size:1rem;
}

/* HOVER */
.agenda-item:hover .agenda-content{
    transform:translateY(-4px);
}

.agenda-item:hover .agenda-day{
    transform:translateY(-4px);
}

/* SCROLL ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:900px){

    .agenda-item,
    .agenda-item.right{
        grid-template-columns:1fr;
    }

    /* FIX ORDER */
    .agenda-item.right .agenda-day{
        order:1;
    }

    .agenda-item.right .agenda-content{
        order:2;
    }

    .agenda-day{
        min-height:150px;
    }
}

/* CONTACT SECTION */

.contact-section{
    padding:100px 7%;
    background:#ffffff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    margin-top:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:25px;
    background:var(--bg-secondary);
    border-radius:20px;
}

.contact-card i{
    font-size:20px;
    color:var(--green);
    margin-top:4px;
}

.contact-card h4{
    margin-bottom:6px;
}

.contact-card p{
    color:var(--muted);
    line-height:1.6;
}

.contact-form{
    background:var(--bg-secondary);
    padding:35px;
    border-radius:24px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.full-width{
    grid-column:1 / -1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    border-radius:14px;
    padding:16px;
    background:white;
    outline:none;
    font-family:'Inter',sans-serif;
}

.contact-form textarea{
    resize:none;
}

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-form{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:auto;
    }
}


#toast{
    position:fixed;
    top:30px;
    right:30px;

    background:#16a34a;
    color:white;

    padding:16px 22px;

    border-radius:12px;

    font-weight:600;

    opacity:0;
    visibility:hidden;

    transform:translateY(-20px);

    transition:0.35s ease;

    z-index:999999;
}

#toast.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}