:root {

  --card-border: rgba(255,255,255,0.55);
  --font-main: "Roboto", sans-serif;
}

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

.landing-why{
    font-family:var(--font-main);
    overflow:hidden;
}

/* =========================
   TOP
========================= */

.landing-why-top{
    background:#F2FFE6;
    text-align:center;
    padding:90px 24px 70px;
}

.landing-why-subtitle{
    color:var(--primary);
    font-size:16px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:22px;
}

.landing-why-top h2{
    font-size:64px;
    font-weight:700;
    color:var(--heading);
    line-height:1.1;
    margin:0 0 28px;
    letter-spacing:-2px;
}

.landing-why-desc{
    max-width:700px;
    margin:auto;
    color:#14264d;
    font-size:24px;
    line-height:1.3;
    font-weight:500;
}

/* =========================
   BOTTOM
========================= */

.landing-why-bottom{
    background:#071f53;
    padding:80px 6% 90px;
}
.landing-why-bottom-inner{
    max-width: 1500px;
    margin: 0 auto;
}

.landing-why-heading{
    text-align:center;
    margin-bottom:60px;
}

.landing-why-heading h3{
    color:var(--text);
    font-size:40px;
    margin:0;
    font-weight:700;
}

.landing-why-heading span{
    width:80px;
    height:4px;
    background:var(--primary);
    border-radius:20px;
    display:block;
    margin:22px auto 0;
}

/* =========================
   GRID
========================= */

.landing-why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* =========================
   CARD
========================= */

.landing-why-card{
    border:1px solid var(--card-border);
    border-radius:18px;
    padding:40px;
    background:transparent;
    transition:.35s ease;
}

.landing-why-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.landing-why-icon{
    width:52px;
    height:52px;
    border-radius:10px;
    background:rgba(0, 255, 170, 0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3affb6;
    margin-bottom:20px;
}

.landing-why-icon.blue{
    background:rgba(70, 140, 255, 0.08);
    color:#5aa2ff;
}

.landing-why-card h4{
    color:var(--text);
    font-size:24px;
    margin:0 0 10px;
    font-weight:700;
    line-height:1.3;
}

.landing-why-card p{
    color:var(--text-muted);
    font-size:20px;
    line-height:1.3;
    margin:0;
    font-weight:500;
    max-width:560px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .landing-why-top h2{
        font-size:56px;
    }

    .landing-why-desc{
        font-size:24px;
    }

    .landing-why-heading h3{
        font-size:42px;
    }

    .landing-why-grid{
        gap:24px;
    }

    .landing-why-card h4{
        font-size:28px;
    }

    .landing-why-card p{
        font-size:20px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .landing-why-top{
        padding:40px 15px;
    }

    .landing-why-subtitle{
        font-size:12px;
        margin-bottom: 14px;
    }

    .landing-why-top h2{
        font-size:42px;
        line-height:1.15;
        letter-spacing:-1px;
        margin-bottom:14px;
    }

    .landing-why-desc{
        font-size:18px;
        line-height:1.3;
    }

    .landing-why-bottom{
        padding:40px 15px;
    }

    .landing-why-heading{
        margin-bottom:45px;
    }

    .landing-why-heading h3{
        font-size:32px;
        line-height:1.3;
    }

    .landing-why-grid{
        grid-template-columns:1fr;
    }

    .landing-why-card{
        padding:32px 26px;
        text-align:center;
    }

    .landing-why-icon{
        margin:0 auto 14px;
    }

    .landing-why-card h4{
        font-size:22px;
    }

    .landing-why-card p{
        font-size:14px;
        max-width:100%;
    }
}
@media(max-width:480px){
    .landing-why-top h2{
        font-size:32px;
    }
    .landing-why-desc{
        font-size:14px;
    }
    .landing-why-card h4{
      font-size: 20px;
    }
    .landing-why-card p{
      font-size: 12px;
    }
}






/* =========================
   LANDING WORK SECTION
========================= */

.landing-work{
    background:#F2FFE6;
    padding:90px 6%;
    overflow:hidden;
}

.landing-work-container{
    width:100%;
    max-width:1500px;
    margin:auto;
}

/* =========================
   HEADING
========================= */

.landing-work-heading{
    margin-bottom:70px;
}

.landing-work-heading h2{
    font-size:64px;
    font-weight:700;
    color:#0d2554;
    line-height:1;
    margin:0;
    letter-spacing:-2px;
}

.landing-work-heading span{
    display:block;
    width:90px;
    height:4px;
    background:#0d2554;
    border-radius:10px;
    margin-top:22px;
}

/* =========================
   GRID
========================= */

.landing-work-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:45px;
    align-items:flex-start;
}

/* =========================
   CARD
========================= */

.landing-work-card{
    position:relative;
}

.landing-work-number{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    margin-bottom:24px;
    border:2px solid;
    transition:.35s ease;
}

.landing-work-card:hover .landing-work-number{
    transform:translateY(-6px) scale(1.05);
}

.landing-work-card h3{
    font-size:20px;
    font-weight:700;
    margin:0 0 12px;
    line-height:1.1;
}

.landing-work-card p{
    font-size:14px;
    line-height:1.6;
    max-width:260px;
    margin:0;
    font-weight:400;
}

/* =========================
   BLUE
========================= */

.landing-work-card.blue .landing-work-number{
    color:#76a7ff;
    border-color:#76a7ff;
    box-shadow:0 0 14px rgba(118,167,255,.55);
}

.landing-work-card.blue h3,
.landing-work-card.blue p{
    color:#76a7ff;
}

/* =========================
   DARK GREEN
========================= */

.landing-work-card.green-dark .landing-work-number{
    color:#c8ff65;
    border-color:#4f7a00;
    box-shadow:0 0 14px rgba(133,255,0,.45);
}

.landing-work-card.green-dark h3{
    color:#111;
}

.landing-work-card.green-dark p{
    color:#222;
}

/* =========================
   RED
========================= */

.landing-work-card.red .landing-work-number{
    color:#ff6767;
    border-color:#ff6767;
    box-shadow:0 0 14px rgba(255,103,103,.45);
}

.landing-work-card.red h3,
.landing-work-card.red p{
    color:#ff6767;
}

/* =========================
   ORANGE
========================= */

.landing-work-card.orange .landing-work-number{
    color:#ff922e;
    border-color:#ff922e;
    box-shadow:0 0 14px rgba(255,146,46,.45);
}

.landing-work-card.orange h3,
.landing-work-card.orange p{
    color:#ff922e;
}

/* =========================
   GREEN
========================= */

.landing-work-card.green .landing-work-number{
    color:#6aff00;
    border-color:#6aff00;
    box-shadow:0 0 14px rgba(106,255,0,.55);
}

.landing-work-card.green h3,
.landing-work-card.green p{
    color:#6aff00;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .landing-work-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .landing-work-heading h2{
        font-size:58px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .landing-work{
        padding:40px 15px;
    }

    .landing-work-heading{
        margin-bottom:40px;
        text-align:center;
    }

    .landing-work-heading h2{
        font-size:42px;
    }

    .landing-work-heading span{
        margin:22px auto 0;
    }

    .landing-work-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .landing-work-card{
        text-align:center;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .landing-work-number{
        width:54px;
        height:54px;
        /* font-size:26px; */
        margin:0 auto 24px;
    }

 

}

@media(max-width:480px){
      .landing-work-card h3{
        font-size:20px;
    }

    .landing-work-card p{
        font-size:16px;
        max-width:100%;
        line-height:1.3;
    }
    
    .landing-work-grid {
        gap: 28px;
    }
}




    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--bg2);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
    }
 
    /* subtle radial glow behind globe */
    .hero::before {
      content: "";
      position: absolute;
      left: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 680px;
      height: 680px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 50%, rgba(64, 99, 207, 0.35) 0%, rgba(6, 19, 41, 0) 70%);
      pointer-events: none;
    }
 
    .hero-container {
      max-width: var(--container-max);
      width: 100%;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
    }
 
    /* ── GLOBE SIDE ── */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 520px;
    }
 
    .globe-img {
      width: 420px;
      height: 420px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 0 60px rgba(60,100,210,0.4)) drop-shadow(0 0 120px rgba(40,80,180,0.2));
      animation: floatGlobe 5s ease-in-out infinite;
    }
 
    @keyframes floatGlobe {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-12px); }
    }
 
    /* small green dot bottom-left */
    .dot-accent {
      position: absolute;
      bottom: 90px;
      left: 0px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 38%, #5ddc30 0%, #1d8a00 100%);
      box-shadow: 0 0 18px rgba(100,220,40,0.55), 0 0 40px rgba(80,200,30,0.25);
      z-index: 3;
      animation: dotPulse 3s ease-in-out infinite;
    }
 
    @keyframes dotPulse {
      0%,100% { transform: scale(1); box-shadow: 0 0 18px rgba(100,220,40,0.55), 0 0 40px rgba(80,200,30,0.25); }
      50%      { transform: scale(1.08); box-shadow: 0 0 28px rgba(100,220,40,0.75), 0 0 60px rgba(80,200,30,0.35); }
    }
 
    /* floating card top-right of globe */
    .float-card {
      position: absolute;
      top: 72px;
      right: 30px;
      width: 100px;
      height: 72px;
      border-radius: 14px;
      background: rgba(60, 100, 200, 0.28);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(100, 150, 255, 0.18);
      z-index: 3;
      animation: floatCard 5s ease-in-out infinite;
    }
 
    @keyframes floatCard {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-8px); }
    }
 
    /* ── CONTENT SIDE ── */
    .hero-content {
      padding-left: 20px;
      z-index: 2;
    }
 
    /* live badge */
    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(30, 60, 20, 0.55);
      border: 1px solid rgba(100, 200, 40, 0.3);
      border-radius: 999px;
      padding: 5px 14px 5px 10px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #b8f06a;
      margin-bottom: 28px;
    }
 
    .live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #6dff01;
      box-shadow: 0 0 6px #6dff01;
      animation: blink 1.6s ease-in-out infinite;
    }
 
    @keyframes blink {
      0%,100% { opacity: 1; }
      50%      { opacity: 0.3; }
    }
 
    /* headline */
    .hero-heading {
      font-family: var(--font-heading);
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--primary);
      margin-bottom: 22px;
    }
 
    /* subheading */
    .hero-sub {
      font-family: var(--font-heading);
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 14px;
    }
 
    /* body text */
    .hero-body {
      font-family: var(--font-main);
      font-size: 14px;
      line-height: 1.7;
      color: rgba(242, 255, 230, 0.72);
      max-width: 520px;
      margin-bottom: 44px;
    }
 
    /* CTA row */
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
 
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: #0d1a00;
      font-family: var(--font-main);
      font-size: 15px;
      font-weight: 700;
      padding: 16px 28px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(110, 255, 1, 0.28);
    }
 
    .btn-primary:hover {
      background: #a3ff2e;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(110, 255, 1, 0.42);
    }
 
    .btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0,0,0,0.22);
    }
 
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(242, 255, 230, 0.85);
      font-family: var(--font-main);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
      cursor: pointer;
      background: none;
      border: none;
    }
 
    .btn-secondary:hover { color: var(--primary); }
 
    .ext-icon {
      opacity: 0.7;
      font-size: 14px;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        text-align: center;
      }
      .hero-visual {
        height: 360px;
        order: -1;
      }
      .globe-img { width: 300px; height: 300px; }
      .dot-accent { bottom: 20px; left: 40px; }
      .float-card { top: 30px; right: 60px; width: 76px; height: 56px; }
      .hero-body { margin: 0 auto 36px; }
      .hero-ctas { justify-content: center; }
    }


     
    :root {
      --nav-bg: #f2ffe6;
      --nav-btn: #66cc01;
      --nav-text: #f2ffe6;
      --nav-hov: #0d1a00;
      --primary: #80ff01;
      --primary-dark: #00ce35;
      --secondary: #0d0208;
      --text: #f2ffe6;
      --text-muted: #a0a0a0;
      --bg: #ffffff;
      --bg2: #061329;
      --glass: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --container-max: 1500px;
      --font-main: "Roboto", sans-serif;
      --font-heading: "Bricolage Grotesque", sans-serif;
      --grad1: linear-gradient(247deg, #001451 -0.17%, #002eae 30.32%, #4063cf 58.03%, #aef96a 117.61%);
      --grad2: linear-gradient(267deg, #cfffa0 0%, #6dff01 33.85%, #2165de 112.72%, #0a1f44 159.18%);
    }
 

    /* ── LANDING HERO ── */
    .landing-hero {
      min-height: 90vh;
      background: var(--bg2);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
    }
 
    /* .landing-hero::before {
      content: "";
      position: absolute;
      left: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 680px;
      height: 680px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 50%, rgba(64, 99, 207, 0.35) 0%, rgba(6, 19, 41, 0) 70%);
      pointer-events: none;
    } */
 
    .landing-hero__container {
      max-width: var(--container-max);
      width: 100%;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
    }
 
    /* ── VISUAL SIDE ── */
    .landing-hero__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 520px;
    }
 
    .landing-hero__globe-img {
      width: 500px;
      height: 500px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 0 60px rgba(164, 248, 126, 0.24)) drop-shadow(0 0 120px rgba(223, 255, 219, 0));
      animation: landingHeroFloat 5s ease-in-out infinite;
    }
 
    @keyframes landingHeroFloat {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-12px); }
    }
 
    .landing-hero__dot {
      position: absolute;
      bottom: 90px;
      left: 0px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 38%, #5ddc30 0%, #1d8a00 100%);
      box-shadow: 0 0 18px rgba(100,220,40,0.55), 0 0 40px rgba(80,200,30,0.25);
      z-index: 3;
      animation: landingHeroDotPulse 3s ease-in-out infinite;
    }
 
    @keyframes landingHeroDotPulse {
      0%,100% { transform: scale(1); box-shadow: 0 0 18px rgba(100,220,40,0.55), 0 0 40px rgba(80,200,30,0.25); }
      50%      { transform: scale(1.08); box-shadow: 0 0 28px rgba(100,220,40,0.75), 0 0 60px rgba(80,200,30,0.35); }
    }
 
    .landing-hero__float-card {
      position: absolute;
      top: 72px;
      right: 30px;
      width: 100px;
      height: 72px;
      border-radius: 14px;
      background: rgba(60, 100, 200, 0.28);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(100, 150, 255, 0.18);
      z-index: 3;
      animation: landingHeroCardFloat 5s ease-in-out infinite;
    }
 
    @keyframes landingHeroCardFloat {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-8px); }
    }
 
    /* ── CONTENT SIDE ── */
    .landing-hero__content {
      padding-left: 20px;
      z-index: 2;
    }
 
    .landing-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(30, 60, 20, 0.55);
      border: 1px solid rgba(100, 200, 40, 0.3);
      border-radius: 999px;
      padding: 5px 14px 5px 10px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #b8f06a;
      margin-bottom: 28px;
    }
 
    .landing-hero__badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #6dff01;
      box-shadow: 0 0 6px #6dff01;
      animation: landingHeroBlink 1.6s ease-in-out infinite;
    }
 
    @keyframes landingHeroBlink {
      0%,100% { opacity: 1; }
      50%      { opacity: 0.3; }
    }
 
    .landing-hero__heading {
      font-family: var(--font-heading);
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      background: linear-gradient(96deg, #D9D9D9 8.06%, #C8FF91 64.9%, #94F731 144.65%, #80FF01 184.53%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    }
 
    .landing-hero__subheading {
      font-family: var(--font-heading);
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 14px;
    }
 
    .landing-hero__body {
      font-family: var(--font-main);
      font-size: 14px;
      line-height: 1.7;
      color: rgba(242, 255, 230, 0.72);
      max-width: 720px;
      margin-bottom: 44px;
      font-weight: 400;
    }
 
    .landing-hero__ctas {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
 
    .landing-hero__btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: #0d1a00;
      font-family: var(--font-main);
      font-size: 15px;
      font-weight: 700;
      padding: 16px 28px;
      border-radius: 16px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(110, 255, 1, 0.28);
    }
 
    .landing-hero__btn-primary:hover {
      background: #a3ff2e;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(110, 255, 1, 0.42);
    }
 
    .landing-hero__btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.973);
    }
 
    .landing-hero__btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(242, 255, 230, 0.85);
      font-family: var(--font-main);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
      cursor: pointer;
      background: none;
      border: none;
    }
 
    .landing-hero__btn-secondary:hover { color: var(--primary); }
 
    .landing-hero__ext-icon {
      opacity: 0.7;
      font-size: 14px;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .landing-hero__container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        text-align: center;
      }
      .landing-hero__content{
        padding-left: 0;
      }
      .landing-hero__visual {
        height: 360px;
        order: -1;
      }
      .landing-hero__globe-img { width: 300px; height: 300px; }
      .landing-hero__dot { bottom: 20px; left: 40px; }
      .landing-hero__float-card { top: 30px; right: 60px; width: 76px; height: 56px; }
      .landing-hero__body { margin: 0 auto 36px; }
      .landing-hero__ctas { justify-content: center; }
    }


    @media (max-width: 480px) {
      .landing-hero__heading{
        font-size: 32px;
      }
      .landing-hero__container{
        padding: 0 16px;
      }
      .landing-hero {
        padding: 40px 0;
      }
      .landing-hero__btn-primary{
        font-size: 10px;
        padding: 6px 10px
      }
      .landing-hero__btn-secondary{
        font-size: 10px;
      }
      .landing-hero__btn-arrow svg,
      .landing-hero__btn-secondary svg{
        width: 8px;
        height: 8px;
      }
      .landing-hero__btn-arrow {
        height: 20px;
        width: 20px;
      }
         .landing-work-heading h2 {
        font-size: 32px;
    }
    .landing-hero__body {
      font-size: 10px;
    }
    .landing-hero__badge{
      font-size: 9px;
    }

    }