/* =========================================================
   MAIN NAVIGATION — OVER VIDEO
========================================================= */

.navbar {
    position: fixed;

    top: 34px;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    background: transparent;

    transition:
        background .35s ease,
        padding .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}


/* Container */

.navbar .container {
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.nav-logo {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    color: #fff;

    text-decoration: none;
      filter:
    drop-shadow(2px 0 0 #fff)
    drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff)
    drop-shadow(0 -2px 0 #fff)
    drop-shadow(1.5px 1.5px 0 #fff)
    drop-shadow(-1.5px 1.5px 0 #fff)
    drop-shadow(1.5px -1.5px 0 #fff)
    drop-shadow(-1.5px -1.5px 0 #fff)
    drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* .nav-logo-img {
    width: 48px;
    height: 48px;

    object-fit: contain; */

    /* border-radius: 50%; */
/* } */

.nav-logo .word {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .word strong {
    font-family: 'Poppins', sans-serif;

    font-size: 1.15rem;

    color: #fff;

    letter-spacing: .02em;
}

.nav-logo .word span {
    margin-top: 4px;

    font-size: .63rem;

    color: rgba(255,255,255,.85);

    letter-spacing: .18em;

    text-transform: uppercase;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links li > a {
    position: relative;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 8px 0;

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition: color .3s ease;
}


/* Underline */

.nav-links li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #d9a320;

    transition: width .3s ease;
}

.nav-links li > a:hover::after,
.nav-links li > a.active::after {
    width: 100%;
}

.nav-links li > a:hover {
    color: #f5d27d;
}


/* Dropdown arrow */

.dropdown-toggle span {
    font-size: 10px;

    transition: transform .25s ease;
}

.dropdown:hover .dropdown-toggle span {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
========================================================= */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-content {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 190px;

    padding: 8px 0;

    background: #f5f0f0;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 2000;
}

.navbar .dropdown:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.navbar .dropdown-content a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    color: #16305c;

    font-size: 14px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.navbar .dropdown-content a:hover {
    background: #f5f3f0;

    color: #b97b1f;
}


/* =========================================================
   DADDYS GROUP
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.daddys-wrapper .dropdown-content {
    left: auto;
    right: 0;
}

.nav-cta {
    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(8px);

    color: #fff;

    padding: 11px 18px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background .3s ease,
        transform .3s ease;
}

.nav-cta:hover {
    background: rgba(255,255,255,.22);

    transform: translateY(-2px);
}


/* =========================================================
   SCROLLED NAVBAR
========================================================= */

.navbar.solid {
    top: 34px;

    padding: 11px 0;

    background: #ffffff;

    backdrop-filter: blur(14px);

    box-shadow:
        0 8px 30px rgba(15,33,66,.18);
}

.navbar.solid .nav-logo .word strong {
    color: #16305c;
}

.navbar.solid .nav-logo .word span {
    color: rgba(22,48,92,.65);
}

.navbar.solid .nav-links li > a {
    color: #16305c;
}

.navbar.solid .nav-links li > a:hover {
    color: #b97b1f;
}

.navbar.solid .nav-cta {
    background: #16305c;
    border-color: #16305c;
    color: #fff;
}




/* .hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    align-items:center;
} */



.btn-solid {
    background: #0a4f7d;
    color: #fff;
}

.btn-solid:hover {
    background: #083c60;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #0a4f7d;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-banner img {
        height: 70vh;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: fit-content;
    }
}




.brand{
    position: relative;     /* anchor point for the oversized logo */
    display: flex;
    align-items: center;
    height: 100%;
}

.brand img{
    position: absolute;
    top: 5%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    height: 78px;            /* logo can now be taller than the navbar itself */
    object-fit: contain;
}
.brand{
    width: 150px;
    flex-shrink: 0;
}
.navlinks{
    display:flex;
    align-items:center;
    gap:35px;
}

.navlinks>a,
.dropdown>a{
    position:relative;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    padding:8px 0;
    transition:.3s;
}

/* Animated Underline */

.navlinks>a::after,
.dropdown>a::after{

    content:'';

    position:absolute;

    left:50%;
    bottom:-6px;

    width:0;
    height:3px;

    background:#f7b733;

    transition:.35s;

    transform:translateX(-50%);
}

.navlinks > a,
.dropdown > a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    padding:10px 18px;
    /* border:1px solid rgba(255,255,255,.25); */
    border-radius:30px;
    transition:all .3s ease;
}

.navlinks > a:hover,
.dropdown:hover > a{
    background:#ffffff;
    color:#0b4f78;
    border-color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

/* Active */

.navlinks .active{
    color:#f7b733;
}

.navlinks .active::after{
    width:100%;
}

.dropdown{
    position:relative;
}
.dropdown{
    position:relative;
}

.dropdown-content{
    position:absolute;
    top:100%;
    right:0;
    min-width:220px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
border:1px solid #d9d9d9;
    display:none;
    z-index:999;
}

.dropdown-content a{
    display:block;
    padding:12px 18px;
    text-decoration:none;
    color:#333;
     border-bottom:1px solid #e5e5e5;

    transition:all .3s ease;
}

.dropdown-content a:hover{
    background:#0d5e8c;
    color:#fff;
}

/* Show on hover */
.dropdown:hover .dropdown-content{
    display:block;
}

/* Show on click */
.dropdown.active .dropdown-content{
    display:block;
}
 /* ============================================
     TOP RIBBON — the "highlight above the header"
     A gold band, feast-bunting flags along the base,
     carrying chapter news as a slow marquee.
  ============================================ */
    :root{
    --navy:#16305c;
    --navy-deep:#0f2142;
    --gold:#d99a3c;
    --gold-deep:#b97b1f;
    --cream:#fdf3df;
    --cream-2:#f7ead0;
    --white:#ffffff;
    --text-soft:rgba(22,48,92,0.68);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}

  h1,h2,h3,h4{font-family:'Poppins', sans-serif; font-weight:700; letter-spacing:-0.01em;}
  a{color:inherit;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
  @media (max-width:640px){ .wrap{padding:0 20px;} }
  .eyebrow{
    font-family:'Poppins',sans-serif; font-size:0.8rem; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-deep);
    display:flex; align-items:center; gap:10px;
  }
  .eyebrow::after{content:""; height:2px; width:44px; background:var(--gold); display:inline-block;}


 /* =========================================================
   TOP NEWS BAR
========================================================= */

  /* =========================================
   TOP BAR
========================================= */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 38px;

    background: var(--gold);
    color: var(--navy-deep);

    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;

    z-index: 1100;

    /* IMPORTANT */
    overflow: hidden;
}


/* =========================================
   SINGLE DIAGONAL STRIPE
========================================= */

.topbar::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 6px;

    background: repeating-linear-gradient(
        -55deg,
        var(--navy) 0 10px,
        transparent 10px 20px
    );

    opacity: 0.9;

    pointer-events: none;

    z-index: 5;
}


/* =========================================
   TOPBAR CONTENT
========================================= */

.topbar-inner {
    max-width: 1400px;
    height: 100%;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;
    align-items: center;

    gap: 20px;

    position: relative;
    z-index: 10;
}


/* Chapter News */

.topbar-tag {
    flex-shrink: 0;

    color: var(--navy-deep);

    font-size: 11px;
    font-weight: 700;
padding: 0.15rem
2.4px
 0.55rem;
    letter-spacing: .12em;
    background: var(--navy-deep);
        color: var(--gold);
    text-transform: uppercase;
}


/* Scrolling area */

.topbar-track {
    flex: 1;

    overflow: hidden;

    white-space: nowrap;
}


/* Scrolling content */

.topbar-marquee {
    display: inline-flex;

    align-items: center;

    gap: 60px;

    white-space: nowrap;

    animation: topbarScroll 28s linear infinite;
}


/* News text */

.topbar-marquee span {
    font-size: 12px;

    color: var(--navy-deep);

    opacity: .95;
}


/* News title */

.topbar-marquee span b {
    color: var(--navy);

    font-weight: 700;
}


/* Right links */

.topbar-links {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 20px;
}

.topbar-links a {
    color: var(--navy-deep);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: opacity .2s ease;
}

.topbar-links a:hover {
    opacity: .65;
}


/* =========================================
   MARQUEE
========================================= */

@keyframes topbarScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .topbar-marquee {
        animation: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 720px) {

    .topbar {
        height: 34px;
    }

    .topbar-inner {
        padding: 0 20px;
    }

    .topbar-links {
        display: none;
    }

    .topbar-tag {
        font-size: 9px;
    }

    .topbar-marquee {
        gap: 40px;
    }

    .topbar-marquee span {
        font-size: 11px;
    }

}
/* nav{
    background:var(--white);
    position:sticky; top:0; z-index:50;
    box-shadow: 0 6px 18px rgba(22,48,92,0.10);
  } */
  /* patterned seam bookending the ribbon above, echoes the topbar's diagonal stripe */
  /* nav::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 5px;
    background-image: repeating-linear-gradient(
      -55deg,
      var(--gold) 0 8px,
      var(--navy) 8px 16px
    );
  } */

  /* about us section */
  .about-section{
    padding:50px 0;
    background:#fff;
}

.about-section .container{
    width:90%;
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
    flex:1;
}

.section-title{
    color:#0b3b88;
    font-size:42px;
    font-weight:700;
    position:relative;
    display:inline-block;
    margin-bottom:20px;
}

.section-title::after{
    content:"";
    width:70px;
    height:5px;
    background:#d39b1f;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:5px;
}

.about-content h2{
    font-size:36px;
    color:#1b1b1b;
    margin:20px 0;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    font-size:17px;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    background:#0b3b88;
    color:#fff;
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.about-btn:hover{
    background:#07285f;
}
/* focus area */

.focus-card{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
}

.focus-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.focus-card .icon{
    display:block;
    width:100%;
    text-align:center;
    font-size:58px;
    margin-bottom:18px;
    line-height:1;
}

.focus-card h4{
    font-size:20px;
    color:#0b2d67;
    margin-bottom:10px;
    font-weight:700;
}

.focus-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* Colors */

.blue{
    color:#1E4FA1;
}

.royal-blue{
    color:#0F5CC0;
}

.sky{
    color:#1DA1F2;
}

.green{
    color:#5CB85C;
}

.light-green{
    color:#78C850;
}

.orange{
    color:#F57C00;
}

.gold{
    color:#F4B400;
}

.red{
    color:#E53935;
}

.purple{
    color:#8E44AD;
}

.pink{
    color:#EC407A;
}
/* impact section */
.impact-section{
    width:100%;
    margin:0;
    padding:0;

    background-image:
        linear-gradient(rgba(8,34,85,.78), rgba(8,34,85,.78)),
        url("../images/imapct-_bg_1_50.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.impact-overlay{
    max-width:1300px;
    margin:0 auto;
    padding:40px 20px;
}

.impact-overlay h3{
    text-align:center;
    color:#fff;
    font-size:32px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:30px;
}

.impact-overlay h3::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#f4b400;
    margin:10px auto 0;
    border-radius:4px;
}

.impact-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.impact-box{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    color:#fff;
}

.impact-box i{
    font-size:50px;
    color:#fff;
}

.impact-box h2{
    margin:0;
    font-size:48px;
    color:#f4b400;
    font-weight:700;
}

.impact-box p{
    margin:5px 0 0;
    color:#fff;
    font-size:17px;
}

.divider{
    width:1px;
    height:70px;
    background:rgba(255,255,255,.3);
}

@media(max-width:992px){

.impact-row{
    flex-wrap:wrap;
    row-gap:35px;
}

.divider{
    display:none;
}

.impact-box{
    width:50%;
    flex:none;
}

}

@media(max-width:576px){

.impact-box{
    width:100%;
    justify-content:flex-start;
}

}
/*==============================
 Empower + Business
==============================*/

.empower-business{

    padding:80px 0;
    background:#f7f9fc;

}

.empower-business .wrap{

    width:100%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

}

.info-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    display:flex;
    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

}

.info-content{

    flex:1;
    padding:40px;

}

.section-tag{

    font-size:34px;
    font-weight:700;
    display:block;
    margin-bottom:20px;

}

.green{

    color:#01316e;

}

.orange{

    color:#01316e;

}

.info-content p{

    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;

}

.business-list{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:25px 0;

}

.business-list div{

    font-size:16px;
    color:#333;

}

.business-list i{

    color:#1aa052;
    margin-right:8px;

}

.btn-green,
.btn-orange{

    display:inline-block;
    text-decoration:none;
    color:#fff;
    padding:13px 28px;
    border-radius:8px;
    font-weight:600;
    margin-top:10px;

}

.btn-green{

    background:#d97d12;

}

.btn-orange{

    background:#d97d12;

}

.btn-green:hover{

    background:#01316e;

}

.btn-orange:hover{

    background:#01316e;

}

.info-image{

    width:250px;
    height:100%;
    overflow:hidden;

}

.info-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/* Responsive */

@media(max-width:992px){

.empower-business .wrap{

grid-template-columns:1fr;

}

.info-card{

flex-direction:column;

}

.info-image{

width:100%;
height:320px;

}

.info-content{

padding:30px;

}

}

@media(max-width:576px){

.business-list{

grid-template-columns:1fr;

}

.section-tag{

font-size:28px;

}

}
/*events */

/*==========================================
    EVENTS + SUCCESS STORIES
==========================================*/

.events-success{
    padding:70px 0;
    background:#f8f9fc;
}

.events-success .wrap{
    width:90%;
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:65% 35%;
    gap:30px;
}

/*==========================
        Section Titles
==========================*/

.title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.title-row h2{
    font-size:34px;
    color:#0B2D67;
    font-weight:700;
}

.title-row a{
    color:#0B2D67;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

.title-row a:hover{
    color:#d79a16;
}

/*==========================
      Event Grid
==========================*/

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/*==========================
        Event Card
==========================*/

.event-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;
}

.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/*==========================
        Event Image
==========================*/

.event-img{
    height:150px;
    overflow:hidden;
}

.event-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.event-card:hover img{
    transform:scale(1.08);
}

/*==========================
      Content Section
==========================*/

.event-content{
    display:flex;
    align-items:flex-start;
    padding:18px;
    gap:15px;
}

/*==========================
       Date Box
==========================*/

.date-box{

    width:62px;
    min-width:62px;
    height:78px;

    background:#fff;

    border-radius:8px;

    border:1px solid #ddd;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.day{

    font-size:30px;
    font-weight:700;
    color:#0B2D67;
    line-height:1;

}

.month{

    margin-top:6px;
    font-size:13px;
    color:#666;
    font-weight:600;
    letter-spacing:1px;

}

/*==========================
      Event Details
==========================*/

.event-info{

    flex:1;

}

.event-info h4{

    font-size:19px;
    color:#222;
    margin-bottom:12px;
    line-height:1.4;

}

.event-info p{

    font-size:14px;
    color:#666;
    margin-bottom:8px;

}

.event-info i{

    color:#0B2D67;
    margin-right:6px;

}

/*==========================
        Button
==========================*/

.btn-event{

    display:inline-block;
    margin-top:15px;

    background:#0B2D67;
    color:#fff;

    text-decoration:none;

    padding:10px 18px;

    border-radius:6px;

    font-size:14px;
    font-weight:600;

    transition:.3s;

}

.btn-event:hover{

    background:#d79a16;

}

/*==========================
      Tablet
==========================*/

@media(max-width:992px){

.events-success .wrap{

grid-template-columns:1fr;

}

.events-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==========================
      Mobile
==========================*/

@media(max-width:768px){

.events-grid{

grid-template-columns:1fr;

}

.event-content{

flex-direction:column;
align-items:center;
text-align:center;

}

.date-box{

margin-bottom:10px;

}

}
/*=========================================
        SUCCESS STORIES
=========================================*/

.success-area{

    background:#fff;
    border-radius:14px;
    padding:22px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    height:fit-content;

}

/*========================
      Slider Layout
========================*/

.success-slider{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-top:15px;

}

/*========================
      Content
========================*/

.success-content{

    display:flex;
    align-items:center;
    gap:20px;

    width:100%;

    padding:10px 35px;

}

/*========================
      Profile Image
========================*/

.profile{

    width:110px;
    height:110px;

    border-radius:50%;
    object-fit:cover;

    border:5px solid #f2f2f2;

    flex-shrink:0;

}

/*========================
        Text
========================*/

.story-text{

    flex:1;

}

.story-text p{

    color:#555;
    line-height:1.8;
    margin:15px 0;

    font-size:15px;

}

.story-text h4{

    color:#222;
    font-size:20px;
    margin-top:15px;

}

/*========================
       Stars
========================*/

.stars{

    color:#f5b400;
    font-size:18px;
    letter-spacing:3px;

}

/*========================
      Arrows
========================*/

.arrow{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#0B2D67;

    box-shadow:0 4px 12px rgba(0,0,0,.15);

    cursor:pointer;

    transition:.3s;

    position:absolute;
    top:50%;

    transform:translateY(-50%);

    z-index:5;

}

.prev{

    left:0;

}

.next{

    right:0;

}

.arrow:hover{

    background:#0B2D67;
    color:#fff;

}

/*========================
       Dots
========================*/

.dots{

    display:flex;
    justify-content:center;
    gap:10px;

    margin-top:20px;

}

.dots span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ccc;

    cursor:pointer;

    transition:.3s;

}

.dots span.active{

    background:#0B2D67;
    width:12px;
    height:12px;

}

/*========================
     Slide Animation
========================*/

.story-slide{

    display:none;
    animation:fade .6s ease;

}

.story-slide.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*========================
     Responsive
========================*/

@media(max-width:992px){

.success-content{

    flex-direction:column;
    text-align:center;

}

.profile{

    width:90px;
    height:90px;

}

.story-text{

    margin-top:15px;

}

}

@media(max-width:576px){

.success-area{

    padding:18px;

}

.profile{

    width:80px;
    height:80px;

}

.story-text p{

    font-size:14px;

}

.story-text h4{

    font-size:18px;

}

.arrow{

    width:32px;
    height:32px;

}

}
/*volunteer */

.volunteer-banner{

    width:100%;
    height:300px;

    background-image:
    linear-gradient(to right,
    rgba(8,41,105,.95) 0%,
    rgba(8,41,105,.90) 35%,
    rgba(8,41,105,.65) 55%,
    rgba(8,41,105,.15) 75%,
    rgba(8,41,105,0) 100%),
    url("../images/volunteer-banner.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.volunteer-content{

    width:90%;
    max-width:1300px;
    margin:auto;

    color:#fff;

}

.volunteer-content .eyebrow{

    color:#f4b400;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

}

.volunteer-content h2{

    margin:12px 0;
    font-size:40px;
    font-weight:700;
    line-height:1.2;
     color:#fff;

}

.volunteer-content p{

    width:40%;
    font-size:15px;
    line-height:1.8;
    color:#eef2ff;
    margin-bottom:30px;

}

.volunteer-btn{

    display:inline-block;

    padding:14px 30px;

    background:#f4b400;
    color:#0B2D67;

    border-radius:8px;

    text-decoration:none;
    font-weight:700;

    transition:.3s;

}

.volunteer-btn:hover{

    background:#fff;

}

@media(max-width:992px){

.volunteer-banner{

    height:auto;
    padding:60px 0;

}

.volunteer-content p{

    width:65%;

}

}

@media(max-width:768px){

.volunteer-content h2{

    font-size:34px;

}

.volunteer-content p{

    width:100%;

}

}
/*coonnect */
/*=============================
      COMMUNITY SECTION
==============================*/

.connect-section{

    background-image: url("../images/connect-bg.png");
    background-size:cover;

    min-height:380px;

    display:flex;
    align-items:center;

}

.connect-container{

    width:90%;
    max-width:1350px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/*=============================
        LEFT CONTENT
==============================*/

.connect-left{

    width:35%;

}

.connect-left h2{

    color:#0B2D67;
    font-size:25px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:700;

}

.connect-left p{

    color:#333;
    font-size:13px;
    line-height:1.8;
    margin-bottom:28px;

}

.join-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#0B2D67;
    color:#fff;

    padding:14px 18px;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.join-btn:hover{

    background:#d79a16;

}

/*=============================
      NEWSLETTER CARD
==============================*/
.newsletter-card{
    width:380px;
    background:rgba(255,255,255,.95);
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);

    margin-right:400px;   /* Increase/decrease this value */
}

.newsletter-card h3{

    color:#0B2D67;
    margin-bottom:18px;

    font-size:24px;

}

.newsletter-card p{

    color:#555;
    line-height:1.7;
    margin-bottom:25px;

}

.newsletter-form{

    display:flex;
    gap:12px;

}

.newsletter-form input{

    flex:1;

    height:52px;

    border:1px solid #d8b15d;

    border-radius:8px;

    padding:0 15px;

    font-size:15px;

    outline:none;

}

.newsletter-form button{

    background:#0B2D67;
    color:#fff;

    border:none;

    border-radius:4px;

    padding:0 20px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#d79a16;

}

/*=============================
      Responsive
==============================*/

@media(max-width:992px){

.connect-container{

    flex-direction:column;
    gap:40px;

}
/* 
.connect-left,
.newsletter-card{

    width:100%;

} */

.connect-left h2{

    font-size:38px;

}

.newsletter-form{

    flex-direction:column;

}

.newsletter-form button{

    height:52px;

}

}
/*footer brand */
.footer-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-logo{
    width:80px;      /* Adjust as needed */
    height:auto;
    object-fit:contain;
    flex-shrink:0;
}

.footer-brand h4{
    margin:0;
}

.footer-brand p{
    margin:4px 0 0;
}

.mission-art{
    width:400px;
    height:auto;
    display:block;
    margin:-50px auto 0;
}
.quote-box{
    margin-top:35px;
    padding:25px;
    text-align:center;
    border-left:5px solid #d4af37;
    background:#f8fafb;
    border-radius:12px;
}

.quote-box p{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#0d5c63;
    font-style:italic;
}
.slogan-wrapper{
    width:100%;
  
   
   
}
.uk-slogan{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:30px;
    color:#e9eff0;
    font-size:16px;
    font-weight:500;
    flex-wrap:wrap;
}

.uk-slogan strong{
    font-size:20px;
    color:#fc9302;
    font-weight:700;
}

.uk-slogan .line{
    width:70px;
    height:2px;
    background:#d4af37;
}

.uk-slogan .dot{
    width:6px;
    height:6px;
    font-size: 12px;
    background:#d4af37;
    border-radius:50%;
}
/*==================================================
                FOOTER
==================================================*/

.footer{
    position:relative;
    background:url("../images/footer-bg1.png") center bottom/cover no-repeat;
    color:#fff;
    overflow:hidden;
    padding:90px 0 30px;
}

/* Dark Overlay */

.footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(7,29,54,.88),
        rgba(7,29,54,.80),
        rgba(7,29,54,.72)
    );
}

.footer-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:60px;
    max-width:1400px;
    margin:auto;
    padding:0 50px;
}

/*========================================
            ABOUT
========================================*/

.footer-logo{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.footer-logo img{
    width:80px;
}

.footer-logo h2{
    color:#fff;
    margin:0;
    font-size:34px;
    letter-spacing:1px;
    font-family:"Cormorant Garamond",serif;
}

.tagline{
    margin-top:8px;
    color:#d7b36b;
    font-size:17px;
    line-height:1.7;
    font-weight:500;
}

.about-text{
    color:rgba(255,255,255,.88);
    line-height:2;
    max-width:420px;
    font-size:16px;
}

/*========================================
            HEADINGS
========================================*/

.footer h4{
    color:#d7b36b;
    margin-bottom:22px;
    font-size:21px;
    text-transform:uppercase;
    letter-spacing:1px;
    position:relative;
}

.footer h4::after{
    content:"";
    width:45px;
    height:2px;
    background:#d7b36b;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-space{
    margin-top:45px;
}

/*========================================
            LINKS
========================================*/

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:16px;
}

.footer ul li a{
    color:#f2f2f2;
    text-decoration:none;
    transition:.35s;
    font-size:16px;
}

.footer ul li a:hover{
    color:#d7b36b;
    padding-left:8px;
}

/*========================================
            CONTACT
========================================*/

.contact-info li{
    display:flex;
    gap:15px;
    align-items:flex-start;
    color:#f3f3f3;
    line-height:1.8;
}

.contact-info i{
    color:#d7b36b;
    width:22px;
    margin-top:4px;
    font-size:18px;
}

/*========================================
            SOCIAL
========================================*/

.social-icons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.35s;
    backdrop-filter:blur(4px);
}

.social-icons a:hover{
    background:#d7b36b;
    color:#0c3559;
    transform:translateY(-4px);
}

/*========================================
            BOTTOM
========================================*/

.footer-bottom{
    position:relative;
    z-index:2;
    margin-top:10px;
}

.footer-bottom-line{
    width:100%;
    height:1px;
    background:rgba(215,179,107,.6);
    margin-bottom:20px;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:0 50px;
}

.copyright{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:15px;
}

.footer-tagline{
    margin:0;
    color:#d7b36b;
    font-size:15px;
    font-weight:500;
    letter-spacing:.5px;
    text-align:right;
}
/*========================================
            RESPONSIVE
========================================*/

@media(max-width:1100px){

.footer-content{

    grid-template-columns:repeat(2,1fr);

    gap:50px;

}

}

@media(max-width:768px){

.footer{

    padding-top:70px;

}

.footer-content{

    grid-template-columns:1fr;

    text-align:center;

    padding:0 30px;

}

.footer-logo{

    justify-content:center;

}

.about-text{

    margin:auto;

}

.footer h4::after{

    left:50%;

    transform:translateX(-50%);

}

.contact-info li{

    justify-content:center;

}

.social-icons{

    justify-content:center;

}

.footer-logo h2{

    font-size:28px;

}

.footer-slogan{

    font-size:22px;

}

}
@media(max-width:768px){

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
        gap:10px;
        padding:0 20px;
    }

    .footer-tagline{
        text-align:center;
    }

}
.menu-toggle{
    display:none;
    font-size:28px;
    color:#0d5c63;
    cursor:pointer;
}

/* Mobile */

@media(max-width:991px){

.menu-toggle{
    display:block;
}

.navlinks{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#ffffff;
    display:none;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    z-index:999;
}

.navlinks.active{
    display:flex;
}

.navlinks a{
    color:#0d5c63;
    padding:16px 25px;
    border-bottom:1px solid #eee;
    display:block;
    text-decoration:none;
}

.dropdown{
    width:100%;
}

.dropdown>a{
    display:block;
    padding:16px 25px;
}



.dropdown-content{
    position:static;
    display:none;      /* Hide initially */
    box-shadow:none;
    background:#f8f8f8;
}

.dropdown.active .dropdown-content{
    display:block;     /* Show only when active */
}



.nav-cta{
    display:none;
}

}
@media (max-width:991px){

nav{
    padding:15px;
    justify-content:space-between;
    align-items:center;
}

.brand{
    width:auto;
}

.brand img{
    position:static;
    transform:none;
    height:55px;
}

.menu-toggle{
    display:block;
    margin-left:auto;
    margin-right:35px;
    font-size:28px;
}

.dropdown{
    width:auto;
    margin-left:0;
}

.nav-cta{
    padding:8px 14px;
    font-size:12px;
}

}
/* ==============================
   CONNECT SECTION - MOBILE FIX
   ============================== */

@media (max-width: 768px) {

    .connect-section {
        width: 100%;
        min-height: auto;
        padding: 50px 0;
        overflow: hidden;
    }

    .connect-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .connect-left {
        width: 100%;
        box-sizing: border-box;
    }

    .connect-left h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .connect-left p {
        font-size: 14px;
        line-height: 1.7;
    }

    .newsletter-card {
        width: 100%;
        max-width: 100%;
        margin: 0;              /* IMPORTANT */
        padding: 25px;
        box-sizing: border-box;
    }

    .newsletter-card h3 {
        font-size: 22px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   FOOTER BRAND - MOBILE CENTER
   ========================================= */

@media (max-width: 768px) {

    .footer-logo {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        margin: 0 auto 25px;
    }

    .footer-logo img {
        width: 80px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .footer-logo h2 {
        margin: 0;
        text-align: center;
        font-size: 28px;
    }

    .about-text {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        text-align: center;
    }
}
.impact-eyebrow {
    justify-content: center;
    width: 100%;
    margin: 0 auto 20px;
}
/* =========================================================
   NAVBAR
   Transparent over hero
   White background after scrolling
========================================================= */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;

    z-index: 2000;

    background: transparent;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        height .35s ease;
}


/* Navbar after scrolling */

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    height: 78px;
}


/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.main-navbar .container {
    max-width: 1400px;
    height: 100%;

    margin: 0 auto;
    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.nav-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    width: 150px;
    height: 100%;

    text-decoration: none;

    overflow: visible;
}


.nav-logo-img {
    display: block;

    width: 135px;
    height: auto;

    max-height: 85px;

    object-fit: contain;

    transition:
        width .35s ease,
        transform .35s ease;
}


/* Smaller logo after scrolling */

.main-navbar.scrolled .nav-logo-img {
    width: 115px;
    max-height: 62px;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 26px;

    list-style: none;

    margin: 0 auto;
    padding: 0 25px;

    height: 100%;
}


.nav-links li {
    position: relative;
}


.nav-links li > a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 10px 0;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color .3s ease;
}


/* Navbar text becomes navy after scroll */

.main-navbar.scrolled .nav-links li > a {
    color: #16305c;
}


/* Hover */

.nav-links li > a:hover {
    color: #d99a3c;
}


/* Active */

.nav-links li > a.active {
    color: #d99a3c;
}


/* Underline */

.nav-links li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #d99a3c;

    transition: width .3s ease;
}


.nav-links li > a:hover::after,
.nav-links li > a.active::after {
    width: 100%;
}


/* =========================================================
   DROPDOWN
========================================================= */

.nav-links .dropdown,
.nav-right .dropdown {
    position: relative;
}


/* Dropdown box */

.dropdown-content {
    position: absolute;

    top: calc(100% + 10px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 200px;

    padding: 8px 0;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 3000;
}


/* Small arrow */

.dropdown-content::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 12px;
    height: 12px;

    background: #ffffff;

    transform: translateX(-50%) rotate(45deg);
}


/* Show dropdown */

.dropdown:hover > .dropdown-content,
.dropdown:focus-within > .dropdown-content {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* Dropdown links */

.dropdown-content > a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    color: #16305c !important;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease;
}


.dropdown-content > a::after {
    display: none !important;
}


.dropdown-content > a:hover {
    background: #fdf3df;

    color: #b97b1f !important;

    padding-left: 23px;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-toggle span {
    display: inline-block;

    font-size: 10px;

    transition: transform .25s ease;
}


.dropdown:hover .dropdown-toggle span,
.dropdown:focus-within .dropdown-toggle span {
    transform: rotate(180deg);
}


/* =========================================================
   DADDYS GROUP
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.nav-cta {
    border: 1px solid rgba(255, 255, 255, .6);

    background: rgba(255, 255, 255, .12);

    color: #ffffff;

    padding: 10px 17px;

    border-radius: 6px;

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 7px;

    transition: all .3s ease;
}


/* After scroll */

.main-navbar.scrolled .nav-cta {
    color: #16305c;

    background: transparent;

    border-color: rgba(22, 48, 92, .25);
}


.nav-cta:hover {
    background: #d99a3c;
    color: #ffffff !important;
    border-color: #d99a3c;
}


/* DADDYS dropdown aligned right */

.daddys-dropdown {
    left: auto;

    right: 0;

    transform: translateY(10px);
}


.nav-right .dropdown:hover > .daddys-dropdown,
.nav-right .dropdown:focus-within > .daddys-dropdown {
    transform: translateY(0);
}


.daddys-dropdown::before {
    left: auto;
    right: 28px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.hamburger span {
    width: 25px;
    height: 2px;

    background: #ffffff;

    transition: all .3s ease;
}


.main-navbar.scrolled .hamburger span {
    background: #16305c;
}
/* ---- Dropdown fix: consistent open/close ---- */
.navbar .nav-links .dropdown-content,
.navbar .nav-right .dropdown-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.navbar .nav-links .dropdown:hover > .dropdown-content,
.navbar .nav-right .dropdown:hover > .dropdown-content,
.navbar .nav-links .dropdown:focus-within > .dropdown-content,
.navbar .nav-right .dropdown:focus-within > .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* ---- Dropdown hover-gap fix ---- */
.navbar .dropdown-content,
.navbar .daddys-dropdown {
  top: 100% !important;         /* flush against the trigger — no dead gap */
  margin-top: 0 !important;
  padding-top: 14px !important; /* visual breathing room, INSIDE the hoverable box now */
  transform: translateX(-50%) translateY(0) !important; /* keep centered ones aligned */
}

.navbar .daddys-dropdown {
  transform: none !important; /* right-aligned dropdown, not centered */
}

/* keep hover state alive while pointer is anywhere in the box, including the new padding area */
.navbar .dropdown:hover > .dropdown-content,
.navbar .dropdown:focus-within > .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar .nav-links {
  gap: 42px;   /* was 30px — more space between items */
}

.navbar .nav-links li > a {
  font-size: 16px;      /* was 14px */
  letter-spacing: .02em; /* slight breathing room between letters */
}

.navbar .dropdown-toggle span {
  font-size: 12px;  /* keep the little arrow proportionate */
}
/* =========================================================
   MOBILE NAVIGATION — CLEAN FINAL VERSION
   ========================================================= */

@media (max-width: 991px) {

    /* ---------- NAVBAR ---------- */

    .navbar {
        top: 34px;
        padding: 10px 0;
        background: transparent;
        z-index: 2000;
    }

    .navbar.solid {
        top: 34px;
        padding: 10px 0;
        background: #ffffff;
        backdrop-filter: blur(14px);
    }

    /* ---------- CONTAINER ---------- */

    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
        flex-wrap: wrap;
    }

    /* ---------- LOGO ---------- */

    .navbar .nav-logo {
        display: flex;
        align-items: center;

        width: auto;
        height: auto;

        flex-shrink: 0;
        position: relative;
        z-index: 2100;
    }

    .navbar .nav-logo-img {
        width: 58px;
        height: 58px;
        max-height: 58px;
        object-fit: contain;
    }

    .navbar .nav-logo .word strong {
        font-size: 1rem;
    }

    .navbar .nav-logo .word span {
        font-size: .55rem;
    }

    /* ---------- HAMBURGER ---------- */

    .navbar .hamburger {
        display: flex;

        width: 42px;
        height: 42px;

        margin-left: auto;

        border: none;
        background: transparent;

        cursor: pointer;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        position: relative;
        z-index: 2100;
    }

    .navbar .hamburger span {
        display: block;

        width: 25px;
        height: 2px;

        background: #ffffff;

        transition: all .3s ease;
    }

    /* Hamburger color after scrolling */

    .navbar.solid .hamburger span {
        background: #16305c;
    }

    /* ---------- MOBILE MENU ---------- */

    .navbar .nav-links {
        order: 3;

        width: 100%;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 12px 0 0;
        padding: 10px 0;

        background: #ffffff;

        border-radius: 12px;

        box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

        list-style: none;

        position: relative;
        z-index: 2050;
    }

    /* Open menu */

    .navbar .nav-links.active {
        display: flex;
    }

    /* ---------- MENU ITEMS ---------- */

    .navbar .nav-links li {
        width: 100%;
        position: relative;
    }

    .navbar .nav-links li > a {
        width: 100%;

        display: flex;
        align-items: center;

        padding: 14px 20px;

        color: #16305c !important;

        font-size: 15px;
        font-weight: 600;

        text-decoration: none;

        border-bottom: 1px solid #eeeeee;

        box-sizing: border-box;
    }

    .navbar .nav-links li:last-child > a {
        border-bottom: none;
    }

    /* Remove desktop underline */

    .navbar .nav-links li > a::after {
        display: none !important;
    }

    /* Hover */

    .navbar .nav-links li > a:hover {
        background: #fdf3df;
        color: #b97b1f !important;
    }

    /* Active */

    .navbar .nav-links li > a.active {
        color: #b97b1f !important;
        background: #fdf3df;
    }

    /* ---------- DROPDOWN ---------- */

    .navbar .nav-links .dropdown {
        width: 100%;
    }

    .navbar .nav-links .dropdown > .dropdown-toggle {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Arrow */

    .navbar .dropdown-toggle span {
        margin-left: auto;
        font-size: 11px;

        transition: transform .25s ease;
    }

    /* Rotate arrow when opened */

    .navbar .dropdown.active .dropdown-toggle span {
        transform: rotate(180deg);
    }

    /* ---------- DROPDOWN CONTENT ---------- */

    .navbar .nav-links .dropdown-content {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        display: none;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        pointer-events: auto !important;

        padding: 0 !important;
        margin: 0;

        background: #f7f7f7;

        border-radius: 0;

        box-shadow: none;

        overflow: hidden;
    }

    /* Open dropdown */

    .navbar .nav-links .dropdown.active > .dropdown-content {
        display: block !important;
    }

    /* Dropdown links */

    .navbar .nav-links .dropdown-content a {
        display: block;

        width: 100%;

        padding: 12px 20px 12px 38px;

        color: #16305c !important;

        font-size: 14px;
        font-weight: 500;

        text-decoration: none;

        border-bottom: 1px solid #e8e8e8;

        box-sizing: border-box;
    }

    .navbar .nav-links .dropdown-content a:last-child {
        border-bottom: none;
    }

    .navbar .nav-links .dropdown-content a:hover {
        background: #fdf3df;
        color: #b97b1f !important;
        padding-left: 43px;
    }

    /* Remove desktop dropdown arrow decoration */

    .navbar .dropdown-content::before {
        display: none !important;
    }

    /* ---------- RIGHT SIDE / DADDYS GROUP ---------- */

    .navbar .nav-right {
        order: 4;

        display: none;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        padding: 0;

        margin-top: 5px;
    }

    /* Show when menu opens */

    .navbar .nav-links.active ~ .nav-right {
        display: flex;
    }

    .navbar .nav-right .dropdown {
        width: 100%;
    }

    .navbar .nav-right .nav-cta {
        width: 100%;

        justify-content: center;

        margin-top: 8px;

        padding: 13px 18px;

        color: #16305c;

        background: #fdf3df;

        border: 1px solid #d99a3c;

        border-radius: 8px;
    }

    /* ---------- MOBILE SOLID NAV ---------- */

    .navbar.solid .nav-links {
        background: #ffffff;
    }

    /* ---------- HAMBURGER ANIMATION ---------- */

    .navbar .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .navbar {
        top: 34px;
    }

    /* .navbar .container {
        padding: 0 15px;
    } */

    .navbar .nav-logo-img {
        width: 52px;
        height: 52px;
    }

    .navbar .nav-logo .word strong {
        font-size: .92rem;
    }

    .navbar .nav-logo .word span {
        font-size: .5rem;
        letter-spacing: .12em;
    }

    .navbar .nav-links {
        margin-top: 10px;
        border-radius: 10px;
    }

    .navbar .nav-links li > a {
        padding: 13px 16px;
        font-size: 14px;
    }

    .navbar .nav-links .dropdown-content a {
        padding: 11px 16px 11px 34px;
        font-size: 13px;
    }

}
@media (max-width: 991px) {

    .navbar .nav-right {
        padding: 10px 20px 15px !important;
        background: #ffffff;
    }

    .navbar .nav-right .nav-cta {
        width: 100% !important;
        background: #16305c !important;
        color: #ffffff !important;
        border: 1px solid #16305c !important;
        border-radius: 8px;
        padding: 13px 18px;
        justify-content: center;
    }

    .navbar .nav-right .nav-cta:hover {
        background: #d99a3c !important;
        border-color: #d99a3c !important;
    }

}
/* =========================================================
   HERO CONTENT — REDUCE TOP & BOTTOM EMPTY SPACE
   ========================================================= */

@media (max-width: 768px) {

    .hero-content {
        position: absolute;

        top: 52%;
        left: 50%;

        width: 92%;
        max-width: 600px;

        transform: translate(-50%, -50%);

        padding: 10px 15px;

        text-align: center;

        box-sizing: border-box;
    }

    .hero-content .eyebrow {
        margin-bottom: 15px;
    }

    .hero-content h1 {
        margin: 0 0 16px;

        font-size: clamp(2rem, 7.5vw, 2.8rem);
        line-height: 1.15;
    }

    .hero-content p {
        margin: 0 auto 20px;

        font-size: 14px;
        line-height: 1.5;

        max-width: 500px;
    }

    .hero-ctas {
        gap: 12px;
        margin-top: 0;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-content {
        top: 51%;
        width: 94%;
        padding: 5px 10px;
    }

    .hero-content .eyebrow {
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 13.5px;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .hero-ctas {
        gap: 10px;
    }
}
/* ============================= */
/* SUCCESS STORY SLIDER */
/* ============================= */

.success-content {
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.success-content.story-changing {
    opacity: 0;
    transform: translateX(25px);
}

.success-content .profile {
    transition: opacity .35s ease;
}


/* Dots */

.success-area .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.success-area .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(22,48,92,.25);
    cursor: pointer;
    transition: all .3s ease;
}

.success-area .dots span.active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold);
}


/* Arrow buttons */

.success-slider .arrow {
    cursor: pointer;
    transition: all .25s ease;
}

.success-slider .arrow:hover {
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 640px) {

    .success-slider {
        gap: 8px;
    }

    .success-content {
        gap: 15px;
    }

}
/* =========================================================
   HERO CONTENT — SCREENSHOT STYLE
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;

    /* controls left/right position */
    padding-top: 65px;
}

.hero-content .inner {
    width: 100%;
    max-width: 680px;

    /* move content slightly to the left */
    margin-left: 0;
}


/* =========================================================
   HERO BADGE
   ========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 20px;

    border-radius: 999px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.45);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 600;

    letter-spacing: .13em;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #d99a3c;

    box-shadow: 0 0 12px rgba(217,154,60,.8);
}


/* =========================================================
   MAIN HERO HEADING
   ========================================================= */

.hero-title {
    margin: 0;

    color: #ffffff;

    /* Elegant large heading */
    font-family: Georgia, 'Times New Roman', serif;

    font-size: clamp(3.2rem, 5.1vw, 4.5rem);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -.035em;

    text-align: left;

    text-shadow:
        0 5px 25px rgba(0,0,0,.35),
        0 2px 8px rgba(0,0,0,.25);
}


/* Each line */
.hero-title span {
    display: block;
}


/* Gold italic words */

.hero-title em {
    color: #d99a3c;

    font-family: Georgia, 'Times New Roman', serif;

    font-style: italic;
    font-weight: 700;

    letter-spacing: -.045em;

    text-shadow:
        0 4px 20px rgba(0,0,0,.25);
}


/* =========================================================
   TAGLINE
   ========================================================= */

.hero-tagline {
    max-width: 570px;

    margin: 20px 0 34px;

    color: #fff4e5;

    font-family: 'Poppins', sans-serif;

    font-size: clamp(.9rem, 1.25vw, 1.08rem);

    font-weight: 400;

    line-height: 1.55;

    letter-spacing: .01em;

    text-align: left;

    text-shadow:
        0 3px 15px rgba(0,0,0,.5);
}

.hero-tagline .sep {
    color: #d99a3c;

    margin: 0 7px;

    font-weight: 600;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 4px;
}


/* Primary button */

.hero-actions .btn-primary {
    min-height: 52px;

    padding: 15px 30px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #d99a3c,
        #b97b1f
    );

    color: #fff;

    font-family: 'Poppins', sans-serif;

    font-size: .88rem;
    font-weight: 600;

    box-shadow:
        0 14px 30px rgba(185,123,31,.35);
}


/* Secondary button */

.hero-actions .btn-ghost {
    min-height: 52px;

    padding: 15px 30px;

    border-radius: 999px;

    background: rgba(255,255,255,.10);

    border: 1.5px solid rgba(255,255,255,.55);

    color: #fff;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-family: 'Poppins', sans-serif;

    font-size: .88rem;
    font-weight: 600;
}


/* =========================================================
   DESKTOP POSITION
   ========================================================= */

@media (min-width: 1200px) {

    .hero-content {
        padding-left: 0;
        padding-top: 60px;
    }

    .hero-content .inner {
        max-width: 680px;
    }

    .hero-title {
        font-size: 4.45rem;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 901px) and (max-width: 1199px) {

    .hero-content {
        padding-top: 55px;
    }

    .hero-content .inner {
        max-width: 600px;
    }

    .hero-title {
        font-size: clamp(3.2rem, 5vw, 4rem);
    }

    .hero-tagline {
        max-width: 520px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero-content {
        align-items: center;

        padding-top: 80px;
    }

    .hero-content .inner {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 8vw, 4rem);

        line-height: 1;
    }

    .hero-tagline {
        max-width: 600px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .hero-content {
        align-items: center;

        padding-top: 75px;
        padding-bottom: 40px;
    }

    .hero-content .inner {
        width: 100%;
        max-width: 100%;
    }


    /* Badge */

    .hero-badge {
        font-size: .62rem;

        letter-spacing: .09em;

        padding: 8px 13px;

        margin-bottom: 20px;
    }


    /* Heading */

    .hero-title {
        font-size: clamp(2.45rem, 11vw, 3.2rem);

        line-height: .98;

        letter-spacing: -.04em;
    }


    .hero-title em {
        letter-spacing: -.045em;
    }


    /* Tagline */

    .hero-tagline {
        font-size: .84rem;

        line-height: 1.55;

        margin-top: 18px;
        margin-bottom: 27px;

        max-width: 100%;
    }


    .hero-tagline .sep {
        margin: 0 3px;
    }


    /* Buttons */

    .hero-actions {
        gap: 12px;
    }

    .hero-actions .btn {
        min-height: 48px;

        padding: 13px 20px;

        font-size: .78rem;
    }
}
/* =========================================================
   ABOUT SECTION — MOBILE STACKED LAYOUT
   Image first, content below
========================================================= */

@media (max-width: 768px) {

    .about-section {
        padding: 45px 0;
    }

    .about-section .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 30px;

        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Image */
    .about-image {
        width: 100%;
        flex: none;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;

        border-radius: 14px;
    }

    /* Content below image */
    .about-content {
        width: 100%;
        flex: none;

        text-align: left;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .about-content h2 {
        font-size: 27px;
        line-height: 1.3;
        margin: 18px 0;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .about-btn {
        margin-top: 10px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-section {
        padding: 40px 0;
    }

    .about-section .container {
        padding: 0 16px;
        gap: 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-image img {
        border-radius: 12px;
    }
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 26px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 75px;
    font-size: .83rem;
    color: rgba(255,255,255,.55);
}

.footer-tagline {
    color: rgba(245, 224, 224, 0.65);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .3px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-tagline {
        text-align: center;
        width: 100%;
        line-height: 1.5;
    }
}
.hero-video { display: block; } .hero-photo { display: none; }


@media (max-width: 768px) {
    .hero {
        width: 100%;
         height: auto;
    min-height: 0;
        overflow: hidden;
        position: relative;
    }

    .hero-video {
        display: none !important;
    }

    .hero-photo {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        z-index: 0 !important;
    }

    .hero-scrim {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }
}
/* Hide mobile-only DADDYS on desktop */
.mobile-daddys {
    display: none;
}

@media (max-width: 991px) {

    /* =========================
       MOBILE HEADER
    ========================= */

    .navbar .container {
        position: relative;
    }

    /* Keep logo where it already is */
    .navbar .nav-logo {
        position: relative;
        z-index: 3001;
    }

    /* Hamburger / CLOSE stays on top */
    .navbar .hamburger {
        position: relative !important;
        z-index: 3002 !important;
    }


    /* =========================
       RIGHT 50% MOBILE MENU
    ========================= */

    .navbar .nav-links {
        position: absolute !important;

        top: 100% !important;
        right: 0 !important;
        left: auto !important;

        width: 50vw !important;
        max-width: 50vw !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 8px 0 !important;

        background: #fff !important;

        display: none;
        flex-direction: column;

        overflow: visible !important;

        box-shadow: -6px 8px 20px rgba(0, 0, 0, 0.18);

        z-index: 3000 !important;
    }

    .navbar .nav-links.active {
        display: flex !important;
    }


    /* =========================
       NORMAL MENU ITEMS
    ========================= */

    .navbar .nav-links > li {
        width: 100% !important;
        margin: 0 !important;
    }

    .navbar .nav-links > li > a {
        display: block !important;

        width: 100% !important;

        padding: 13px 18px !important;

        box-sizing: border-box;

        color: #16305c !important;
    }


    /* =========================
       ALL DROPDOWNS
    ========================= */

    .navbar .nav-links li .dropdown-content {
        display: none !important;

        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #f7f7f7 !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .navbar .nav-links li.dropdown-open > .dropdown-content {
        display: block !important;
    }


    /* Dropdown button */
    .navbar .nav-links .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100% !important;

        padding: 13px 18px !important;

        background: transparent !important;
        border: 0 !important;

        color: #16305c !important;

        font-family: inherit;
        font-size: inherit;
        font-weight: inherit;

        text-align: left;

        cursor: pointer;
    }

    .navbar .nav-links .dropdown-toggle span {
        margin-left: auto;
        transition: transform 0.25s ease;
    }

    .navbar .nav-links li.dropdown-open > .dropdown-toggle span {
        transform: rotate(180deg);
    }


    /* Dropdown links */
    .navbar .nav-links li > .dropdown-content a {
        display: block !important;

        width: 100% !important;

        padding: 11px 18px 11px 30px !important;

        box-sizing: border-box;

        background: #f7f7f7 !important;

        color: #16305c !important;

        font-size: 13px !important;
        font-weight: 400 !important;

        border-top: 1px solid #eee !important;
    }


    /* =========================
       DADDYS GROUP
    ========================= */

    .mobile-daddys {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-daddys > .dropdown-toggle {
        width: 100% !important;
    }

    /* Hide original desktop DADDYS */
    .navbar .nav-right {
        display: none !important;
    }


    /* =========================
       CLOSE X
    ========================= */

    .navbar .hamburger.active {
        position: relative !important;
        z-index: 4000 !important;
    }

    .navbar .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}