
  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,29,48,0.97) 0%, rgba(15,43,70,0.75) 60%, rgba(9,29,48,0.6) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 5% 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-left {}

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30,127,216,0.15);
    border: 1px solid rgba(30,127,216,0.3);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #74b8f0;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

  h1 {
    
    font-weight: 900;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 32px;
  }

  h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
  }

  .hero-body {
    font-size: 1.05rem;
    color: var(--secondary-text);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 48px;
  }

  .hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(30,127,216,0.35);
  }

  .hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30,127,216,0.45);
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px 32px;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .hero-stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(30,127,216,0.4);
  }

  .stat-number {
    
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.875rem;
    color: var(--secondary-text);
    font-weight: 400;
  }

  /* ─── TRUST BANNER ─── */
  .trust-banner {
    background: var(--accent);
    padding: 22px 5%;
    text-align: center;
  }

  .trust-banner p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  /* ─── WHY SECTION ─── */
  .why-section {
    padding: 110px 5%;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
  }


  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    background:none;
  }

  .why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 36px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 2px 20px rgba(15,43,70,0.06);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #74b8f0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,43,70,0.12);
    border-color: rgba(30,127,216,0.2);
  }

  .why-card:hover::before { transform: scaleX(1); }

  .why-card h3 {
    
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  .why-card p {
    font-size: 0.94rem;
    color: #4a6280;
    line-height: 1.75;
  }

   #hero{
      padding-top: 160px;
      background: #09131F;
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    max-width:1200px;
  }

  .hero-profile {
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(63,151,255,.22);
    box-shadow: 0 0 40px rgba(63,151,255,.12);
    position: relative;
    bottom: 60px;
  }

  .hero-profile img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .hero-profile {
    width: 340px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(63,151,255,.22);
    box-shadow: 0 0 40px rgba(63,151,255,.12);
  }

  .hero-profile img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  @media(max-width:1020px){
    .hero-profile { display: none; }
  }
  @media(max-width:1020px){
    .hero .wrap {
      grid-template-columns: 1fr;
    }
    .hero-profile {
      display: none;
    }
  }

    .ab-hero {
    padding: 90px 0 80px;
    border-bottom: 1px solid rgba(63,151,255,.14);
    position: relative;
    overflow: hidden;
    background: #09131F;
  }

  .ab-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(63,151,255,.14) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(63,151,255,.14) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 65% 50%, black 15%, transparent 75%);
    opacity: .45;
  }


  .ab-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .ab-hero-inner {
    display: flex;
    flex-direction: column;
  }

  .ab-hero-pre {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #3F97FF;
    margin-bottom: 18px;
  }

  .ab-hero-pre::before {
    content: '';
    width: 18px;
    height: 2px;
    background: linear-gradient(135deg, #3F97FF 0%, #6261E4 55%, #7A3CD2 100%);
    border-radius: 1px;
  }

  .ab-hero-heading {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #ffffff;
    margin-bottom: 18px;
  }

  .ab-hero-heading em {
    font-style: normal;
    background: linear-gradient(135deg, #3F97FF 0%, #6261E4 55%, #7A3CD2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ab-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.62);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 18px;
  }

  .ab-hero-credential {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.34);
    background: rgba(63,151,255,.06);
    border: 1px solid rgba(63,151,255,.16);
    border-radius: 5px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .ab-hero-tagline {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .ab-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .ab-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(63,151,255,.14);
  }

  .ab-hs {
    display: flex;
    flex-direction: column;
  }

  .ab-n {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #3F97FF 0%, #6261E4 55%, #7A3CD2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ab-l {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,.34);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-top: 4px;
  }

  .ab-hero-profile {
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid rgba(63,151,255,.22);
    box-shadow: 0 0 40px rgba(63,151,255,.12);
  }

  .ab-hero-profile img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  #hero h1{
      font-size: 24px;
      line-height: 32px;
  }
  @media(max-width:1020px){
    .ab-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .ab-hero-profile {
      display: none;
    }
  }

  @media(max-width:720px){
    .ab-hero {
      padding: 56px 0;
    }
    .ab-wrap {
      padding: 0 20px;
    }
    .ab-hero-stats {
      gap: 20px;
    }
  }

  p{
      font-family: 'graphikRegular'!important;
  }
    .president-section {
        background-size: cover;
        position: relative;
        width: 100%;
        z-index: 99;
        margin-top: 120px;
        max-width: 2120px;
        margin-left: auto;
        margin-right: auto;
        padding:200px 0;
        background-size: cover !important;
        
    }
    .president-section a{
      font-size: 18px;
      font-weight: 600;
      font-style: italic;
      color: #3f97fe;
    }
    .president-section .site-heading{
      margin-bottom:0px;
    }
    .wrap-image.mobile-img {
        display: none;
    }
    .president-section .innercontent {
         margin-left: 0 !important;
    }
    .need-help-section .siteBtn{
         text-align: center;
         margin-bottom: 30px;
    }
   .need-help-section .need-help-outer .content p{
      font-size:18px;
   }
   .president-content{
      max-width:620px;
   }
    @media (max-width: 920px) {
        /* .president-section {
            background: unset;
            padding: 0;
            margin-bottom: 60px;
            margin-top: 20px;
        } */

        .wrap-image.mobile-img {
            display: block;
            text-align: center;
            margin-bottom: 15px;
        }

        .wrap-image.mobile-img img {
            width: 100%;
            height: auto;
            max-width: 100%;
        }

        .president-content {
            margin-top: 15px;
        }
    }
    @media(max-width:1024px){
        .president-section .innercontent {
             max-width: 480px;
             margin-left:0 !important;
        }
        .president-section {
            padding: 20px 10px 0 !important;
            margin-top: 0;
        }
        .president-section p {
            font-size: 14px !important;
        }
        .president-section h3 {
            margin-top: 0;
            font-weight: 600;
            font-size: 26px;
        }
        .president-section .icons {
            margin-top: -14px;
        }
    }
    @media(min-width:500px){
        .president-section .wrap-image{
            display:none;
        }


    }


     /* ─── CTA SECTION ─── */
  .cta-section {
    background: var(--navy-deep);
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(30,127,216,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .cta-inner p {
    color: var(--secondary-text);
    font-size: 1.05rem;
    margin-bottom: 48px;
    line-height: 1.7;
  }

  .cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(30,127,216,0.4);
  }

  .cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(30,127,216,0.5);
  }

@media(max-width:768px){
    .hero-content{
        padding: 0 15px;
        display: block;
    }
    .president-section {
        margin-bottom: 0px;
        padding-bottom: 60px !important;
        background: #09131f!important;
    }
    .president-section .wrap{
        padding: 0 0;
    }
    .president-content{
        margin-top: 15px;
    }
    ._leadership  .member-box{
        margin-bottom:0;
    }
    .hero-left{
        margin-bottom: 30px;
    }
    .what-grid{
        display: block;
    }
}
