/* =========================================================
   ROOT TOKENS
   ========================================================= */
   :root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
  
    --color-primary: #1f1d4d;
    --color-secondary: #6bcf6a;
    --color-text: #243b4a;
    --color-muted: #6b7280;
    --color-bg: #fff;
    --color-border: #e5e7eb;
  
    --btn-bg: #1f3f46;
    --btn-text: #ffffff;
    --btn-border: #1f3f46;
    --btn-hover-bg: #162e33;
    --btn-hover-text: #ffffff;
    --btn-hover-border: #162e33;
  
    --container-max-width: 1320px;
    --container-padding: clamp(0.5rem, 4vw, 1rem);
  
    --radius-sm: 6px;
    --radius-md: 999px;
    --radius-lg: 20px;
  
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  /* =========================================================
     BASE RESET
     ========================================================= */
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: var(--font-secondary);
    background-color: var(--color-bg);
    color: var(--color-text);
  }
  
  /* =========================================================
     UTILITIES
     ========================================================= */
     .container {
      max-width: var(--container-max-width);
      margin-inline: auto;
      padding: var(--container-padding);
    }
    
  
  .flex {
    display: flex;
  }
  .material-icons {
    font-size: 1.1em;
    margin-left: 0.4em;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .items-center {
    align-items: center;
  }
  .text-center{
    text-align: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  
  .gap-sm {
    gap: clamp(0.25rem, 1vw, 0.5rem);
  }
  
  .gap-lg {
    gap: clamp(1rem, 3vw, 2rem);
  }
  
  .text-xl {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  
  .text-base {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }
  
  .font-primary {
    font-family: var(--font-primary);
    font-weight: 600;
  }
  
  .font-secondary {
    font-family: var(--font-secondary);
    font-weight: 500;
  }
 .title-primary {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}
/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */

/* Extra large (hero titles if needed) */
.text-xxl {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  line-height: 1.15;
}

/* Section titles */
.text-xl {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

/* Card / subsection titles */
.text-lg {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  line-height: 1.3;
}

/* Body text (default paragraphs) */
.text-md {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
}

/* Supporting text */
.text-sm {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
}

/* Meta / captions */
.text-xs {
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  line-height: 1.5;
}

/* =========================================================
   SECTION PADDING UTILITIES
   ========================================================= */
   .section-padding {
    padding-block: clamp(1rem, 10vw, 1.5rem);
  }
  
  
  /* =========================================================
     BUTTON
     ========================================================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--btn-text);
    background-color: var(--btn-bg);
    border: 1px solid var(--btn-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
  }
  
  .btn:hover,
  .btn:focus {
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    color: var(--btn-text);
  }
  /* =========================================================
   TOP BAR (NO TEXT)
   ========================================================= */
   .topbar {
    width: 100%;
    background-image: linear-gradient(
      90deg,
      #4b5574 0%,
      #6a6f8e 45%,
      #8a8fa9 100%
    );
  }
  
  .topbar .container {
    height: 3rem;
  }
  
  @media (max-width: 768px) {
    .topbar {
      display: none;
    }
  }
  
  

  /* =========================================================
     HEADER
     ========================================================= */

     
  header {
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
  }
  header h1{
    margin: 0;
  }
  
  header img {
    max-height: clamp(2.2rem, 4vw, 4rem);
    width: auto;
    display: block;
  }
  
  /* =========================================================
     DESKTOP NAVIGATION
     ========================================================= */
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
  }
  
  nav a {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
  }
  
  nav a:hover {
    color: var(--color-primary);
  }
  .nav .btn:hover .material-icons {
    transform: translateX(6px);
  }
  
  /* =========================================================
     MOBILE MENU TOGGLE
     ========================================================= */
  .menu-toggle {
    display: none;
  }
  
  .menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-btn span {
    width: 1.6rem;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.45s ease, opacity 0.3s ease;
  }
  
  /* =========================================================
     MOBILE FULLSCREEN MENU
     ========================================================= */
  @media (max-width: 768px) {
    nav {
      position: fixed;
      inset: 0;
      background: linear-gradient(
        135deg,
        #1a164f 0%,
        #141044 50%,
        #0d0a33 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-100%);
      transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1000;
    }
  
    nav ul {
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }
  
    nav a {
      font-family: var(--font-primary);
      font-size: clamp(1.5rem, 5vw, 2.2rem);
      color: #ffffff;
    }
  
    .menu-btn {
      display: flex;
    }
  
    header .btn {
      display: none;
    }
  
    .menu-toggle:checked ~ nav {
      transform: translateY(0);
    }
  
    .menu-toggle:checked + .menu-btn span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  
    .menu-toggle:checked + .menu-btn span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle:checked + .menu-btn span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  
  /* =========================================================
     DESKTOP OVERRIDES
     ========================================================= */
  @media (min-width: 769px) {
    .menu-btn {
      display: none;
    }
  
    nav {
      position: static;
      transform: none;
      background: none;
    }
  }
  

  .hero {
    position: relative;
    min-height: clamp(32rem, 85vh, 52rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 12, 40, 0.65) 0%,
      rgba(10, 12, 40, 0.85) 60%,
      rgba(10, 12, 40, 0.95) 100%
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: clamp(42rem, 75vw, 68rem);
    text-align: center;
    margin-inline: auto;
  }
  
  .hero-arrow {
    color: var(--color-secondary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    display: inline-block;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    animation: hero-float 3.5s ease-in-out infinite;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hero-arrow:hover {
    transform: translateY(-6px) rotate(-45deg) scale(1.1);
    animation-play-state: paused;
  }
  
  @keyframes hero-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
  }
  
  .hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 clamp(1rem, 3vw, 1.5rem);
  }
  
  .hero-text {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
    max-width: clamp(30rem, 65vw, 44rem);
  }
  
  .btn-accent {
    --btn-bg: var(--color-secondary);
    --btn-text: #0b2b14;
    --btn-border: var(--color-secondary);
    --btn-hover-bg: #5bbf5a;
    --btn-hover-text: #0b2b14;
    --btn-hover-border: #5bbf5a;
  }

  
  .logo-marquee {
    width: 100%;
    overflow: hidden;   
    position: relative;
  }
  
  /* optional edge fade – remove if not needed */
  .logo-marquee::before,
  .logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6rem;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
  }
  
  .logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
  }
  
  .logo-track {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 6vw, 2rem);
    width: max-content;
    animation: marquee 35s linear infinite;
  }
  
  .logo {
    height: clamp(4rem, 10vw, 8rem);
    width: auto;      
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  
  .logo:hover {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  /* TRUE seamless loop */
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  /* pause on hover */
  .logo-marquee:hover .logo-track {
    animation-play-state: paused;
  }
  
 
  /* =========================================================
   SOLUTIONS SECTION
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.solutions-text {
  max-width: clamp(36rem, 70vw, 52rem);
  margin-inline: auto;
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(31, 63, 70, 0.9);
}


  
  /* =========================================================
     GRID — EQUAL HEIGHT CARDS
     ========================================================= */
  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: stretch;
  }
  
  @media (min-width: 768px) {
    .cards-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* =========================================================
     CARD
     ========================================================= */
  .card {
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    background: radial-gradient(
        120% 120% at 0% 0%,
        rgba(120, 110, 200, 0.35) 0%,
        rgba(60, 55, 140, 0.45) 40%,
        rgba(28, 24, 84, 0.9) 100%
      ),
      linear-gradient(
        135deg,
        #3f3a8c 0%,
        #2b276f 40%,
        #17144a 75%,
        #0e0b33 100%
      );
    box-shadow: var(--shadow-md);
  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(0.5rem, 3vw, 1rem);
  }
  
  /* =========================================================
     ICON SLOT — CRITICAL FOR ALIGNMENT
     ========================================================= */
  .icon {
    display: flex;
    align-items: flex-start;
    height: clamp(3rem, 6vw, 3.5rem); /* fixed slot */
  }
  
  .icon img {
    height: clamp(2.25rem, 4vw, 3rem);
    width: auto;
    display: block;
  }
  
  /* =========================================================
     TEXT RESET (NO AUTO MARGINS)
     ========================================================= */
  .card h3,
  .card p {
    margin: 0;
    text-align: left;
    margin-top: auto;
  }
  
  /* =========================================================
     TEXT COLORS
     ========================================================= */
  .text-light {
    color: #ffffff;
  }
  
  .text-light-muted {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* =========================================================
     OPTIONAL HOVER
     ========================================================= */
  .card:hover {
    transform: translateY(-4px);
    transition: transform 0.35s ease;
  }
  

  /* ===============================
   SECTION
   =============================== */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 6vw, 4rem);
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

/* ===============================
   LEFT PANEL
   =============================== */
.why-left {
  background-color: #eef6ec;
  padding: clamp(2.5rem, 6vw, 4rem);
}

.title-lg {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

/* ===============================
   RIGHT PANEL
   =============================== */
.why-right {
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    #3f3a8c 0%,
    #2b276f 40%,
    #17144a 75%,
    #0e0b33 100%
  );
  color: #ffffff;
}

/* ===============================
   ITEMS
   =============================== */
.why-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.why-text {
  max-width: 32rem;
}

.why-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #ff9a4d;
  line-height: 1;
}

/* ===============================
   DIVIDER
   =============================== */
.divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: clamp(2rem, 6vw, 3rem) 0;
}


  
  /* =========================================================
     BLOG GRID
     ========================================================= */
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }
  
  @media (min-width: 768px) {
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* =========================================================
     BLOG CARD — TOP ALIGNED
     ========================================================= */
  .blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }
  
  /* =========================================================
     BLOG IMAGE
     ========================================================= */
  .blog-image {
    width: 100%;
    height: clamp(12rem, 25vw, 16rem);
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  
  /* =========================================================
     BLOG META
     ========================================================= */
  .blog-meta {
    margin: 0;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: #3f3a8c;
  }
  
  /* =========================================================
     TEXT RESET (CRITICAL)
     ========================================================= */
  .blog-card h3,
  .blog-card p {
    margin: 0;
  }
 
  /* =========================================================
     BUTTON — TOP ALIGNED
     ========================================================= */
  .btn-accent {
    --btn-bg: var(--color-secondary);
    --btn-text: #0b2b14;
    --btn-border: var(--color-secondary);
    --btn-hover-bg: #5bbf5a;
    --btn-hover-text: #0b2b14;
    --btn-hover-border: #5bbf5a;
  }
  

  /* =========================================================
   CTA BOX
   ========================================================= */
.cta-box {
  border-radius: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(3rem, 8vw, 5rem);
  text-align: center;

  background: radial-gradient(
      120% 120% at 50% 0%,
      rgba(120, 110, 200, 0.35) 0%,
      rgba(60, 55, 140, 0.45) 40%,
      rgba(28, 24, 84, 0.9) 100%
    ),
    linear-gradient(
      135deg,
      #3f3a8c 0%,
      #2b276f 40%,
      #17144a 75%,
      #0e0b33 100%
    );

  box-shadow: var(--shadow-md);
}

/* =========================================================
   CTA TITLE
   ========================================================= */
.cta-title {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #ffffff;
  font-family: var(--font-primary);
}

/* =========================================================
   CTA TEXT
   ========================================================= */
.cta-text {
  max-width: 48rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   BUTTON (CENTERED)
   ========================================================= */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  --btn-bg: var(--color-secondary);
  --btn-text: #0b2b14;
  --btn-border: var(--color-secondary);
  --btn-hover-bg: #5bbf5a;
  --btn-hover-text: #0b2b14;
  --btn-hover-border: #5bbf5a;
}

/* =========================================================
   FOOTER
   ========================================================= */
   .footer {
    background: linear-gradient(
      135deg,
      #1a164f 0%,
      #141044 50%,
      #0d0a33 100%
    );
    color: #ffffff;
    padding-block: clamp(4rem, 10vw, 6.5rem);
  }
  
  /* =========================================================
     GRID
     ========================================================= */
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 8vw, 5rem);
  }
  
  @media (min-width: 992px) {
    .footer-grid {
      grid-template-columns: 1.4fr 1fr;
      align-items: start;
    }
  }
  
  /* =========================================================
     LEFT
     ========================================================= */
  .footer-eyebrow {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
  }
  
  .footer-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.15;
    margin: clamp(1rem, 3vw, 1.75rem) 0;
  }
  
  /* =========================================================
     EMAIL BOX
     ========================================================= */
  .email-box {
    display: flex;
    align-items: center;
    max-width: 28rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: clamp(0.75rem, 2vw, 1rem);
  }
  
  .email-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: clamp(0.95rem, 2vw, 1rem);
    outline: none;
  }
  
  .email-box input::placeholder {
    color: rgba(255,255,255,0.5);
  }
  
  .email-box button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    cursor: pointer;
  }
  
  /* =========================================================
     SOCIAL
     ========================================================= */
  .social {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  
  .social a {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
  }
  
  /* =========================================================
     RIGHT
     ========================================================= */
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 3rem);
  }
  
  .footer-heading {
    display: block;
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    display: block;
    margin-bottom: 0.6rem;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.95rem, 2vw, 1rem);
    opacity: 0.85;
  }
  
  .footer-contact {
    margin-top: clamp(2.5rem, 6vw, 4rem);
  }
  
  .footer-contact p {
    margin: 0 0 1rem;
    font-size: clamp(0.95rem, 2vw, 1rem);
    opacity: 0.85;
  }
  
  /* =========================================================
     BOTTOM
     ========================================================= */
  .footer-bottom {
    margin-top: clamp(3rem, 8vw, 5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    opacity: 0.55;
  }
  