/* ================= GLOBAL ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Unbounded:wght@400;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  padding-top: 88px; /* prevent sections from hiding behind header */
}


/* ================= HEADER ================= */
header {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 80px;
  height: 88px;
  background: #E2E6EA;
  box-sizing: border-box;

  position: fixed;  /* fixed at top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;    /* stay above everything */
}

section {
  scroll-margin-top: 88px; /* slightly more than header height */
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 44px;
}

/* Nav Links */
nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #0F172A;
  letter-spacing: 0.005em;
  transition: 0.3s;
}

nav a:hover {
  color: #0019FF;
}

/* Contact Button */
.contact-btn {
  padding: 16px 32px;
  border: 2px solid #0019FF;
  border-radius: 48px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #0019FF;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #0019FF;
  color: #fff;
}

/* ================= HERO SECTION ================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 60px 120px; /* remove right padding */
  gap: 48px;
  background: linear-gradient(180deg, #E2E6EA 0%, #C0C9D5 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  font-family: 'Unbounded', cursive;
  font-weight: 500;
  font-size: 56px;
  line-height: 110%;
  margin: 0 0 16px;
  color: #0F172A;
}

.hero-content h1 span {
  font-weight: 600;
  color: #0019FF;
}

.hero-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #475569;
  margin-bottom: 32px;
}

/* Hero Form */
.hero-form {
  display: flex;
  gap: 8px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 3px 24px;
  gap: 1px;
  width: 260px;
}

.input-group .email-icon {
  font-size: 18px;
  color: #64748B;
}

.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  background: transparent;
}

/* Hero Button */
.hero-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 8px 6px 24px;
  background: #0019FF;
  border: none;
  border-radius: 80px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0F0FC0;
}

.hero-btn .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #F8FAFC;
  border-radius: 80px;
  color: #0F172A;
  font-size: 20px;
}


.hero-image {
  flex: 1; /* allow image to expand */
  display: flex;
  justify-content: flex-end; /* push all the way right */
  align-items: center;
}

.hero-image img {
  max-width: 850px; /* make it bigger */
  width: 750px;
  border-radius: 20px;
}


/* ================= ABOUT SECTION ================= */
.about-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 120px 0 120px;
  gap: 80px;
  background: #F8FAFC;
  width: 100%;
  min-height: 658px;
  box-sizing: border-box;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 470px;
}

.about-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  text-transform: uppercase;
  color: #0F172A;
  margin: 0;
}


.about-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 650px;
  position: relative;
  top: 120px;
}

.about-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align:justify;
  color: #64748B;
}

.about-image {
  position: absolute;
  left: -550px;
  bottom: 24px;
  width: 480px;
  /* transform: rotate(110deg); */
  /* filter: drop-shadow(40px 60px 100px rgba(7, 11, 52, 0.3)); */
}

/* ================= PROBLEMS SECTION ================= */
.problems-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 50px;
  gap: 64px;
  width: 100%;
  box-sizing: border-box;
}

.problems-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #0F172A;
  max-width: 904px;
}

.problems-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 18px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  height: 200px;
  border: 2px solid #64748B;
  border-radius: 40px;
  background: #fff;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #0019FF; /* light blue glow */
   box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);

}

.problem-number {
  font-weight: 700;
  font-size: 20px;
  color: #0019FF;
}

.problem-title {
  font-weight: 700;
  font-size: 24px;
  color: #1E293B;
  margin: 0;
}

.problem-text {
  font-weight: 500;
  font-size: 18px;
  color: #475569;
  margin: 0;
}

/* ================= HEADLINE SECTION ================= */
.headline-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  height: 150px;
  width: 100%;
  box-sizing: border-box;
}

.headline-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  text-transform: uppercase;
  color: #94A3B8;
}

.headline-text span {
  color: #0019FF;
}
/* ========== Services categories (clean & responsive) ========== */
    .services-section {
      max-width: 1440px;
      margin: auto;
      border-left: 1px solid #fff;
      border-radius: 56px;
      overflow: hidden;
      background-color: #0F172A;
      color: #fff;
    }

    .service-category {
      padding: 28px 56px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      box-sizing: border-box;
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      user-select: none;
    }

    .category-header h2 {
      font-family: 'Unbounded', sans-serif;
      font-size: 32px;
      font-weight: 400;
      margin: 0;
      color: #FFFFFF;
    }

    .category-desc {
      margin: 10px 0 0 42px;
      font-size: 17px;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
    }

    .category-header .arrow {
      font-size: 22px;
      color: #FFFFFF;
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
      transform: rotate(45deg);
    }

    .category-header .arrow.open {
      transform: rotate(-135deg);
    }

    .service-category .cards {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding-top: 0;
      padding-left: 10px;
      padding-right: 10px;
      transition: max-height 0.6s ease, opacity 0.35s ease, padding-top 0.35s ease;
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Three cards per row */
      grid-template-rows: repeat(2, auto); /* Two rows */
      gap: 20px;
      margin-top: 18px;
    }

    .service-category.open .cards {
      max-height: 2400px;
      opacity: 1;
      padding-top: 18px;
    }

    .service-category .card {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 20px;
      box-sizing: border-box;
      background: transparent;
      color: #fff;
      transition: all 0.3s ease; /* Smooth transition for hover effect */
    }

    .service-category .card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: #0019FF; /* Light blue glow */
      box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    }

    .service-category .card span {
      display: block;
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .service-category .card h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 8px;
    }

    .service-category .card p {
      font-size: 15px;
      font-weight: 500;
      margin: 0;
      color: rgba(255,255,255,0.9);
    }

    @media (max-width: 900px) {
      .service-category { padding: 20px 22px; }
      .category-header h2 { font-size: 22px; }
      .category-desc { margin-left: 40px; font-size: 15px; }
      .service-category .cards {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row */
        grid-template-rows: repeat(3, auto); /* Three rows */
      }
    }

    @media (max-width: 600px) {
      .service-category .cards {
        grid-template-columns: 1fr; /* One card per row */
        grid-template-rows: repeat(6, auto); /* Six rows */
      }
    }

/* ================= FOOTER ================= */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  height: 92px;
  background: #1E293B;
  color: #FFFFFF;
  box-sizing: border-box;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 44px;
}

footer p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

footer p a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}

footer p a:hover {
  color: #FFD700;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }

  .about-left, .about-right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .about-image {
    position: static;
    transform: none;
    margin-top: 30px;
  }

  .problems-section {
    padding: 40px 20px 80px;
  }

  .problem-card {
    max-width: 100%;
    height: auto;
  }

  .headline-text {
    font-size: 40px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .headline-text {
    font-size: 28px;
    line-height: 120%;
  }
}

/* ================================ 
   Approach Section (Fixed & Optimized)
================================ */
.approach-section {
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: flex-start;
  padding: 100px 40px 120px 120px;
  gap: 80px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  background: #F8FAFC;
  /* border-radius: 0 0 56px 56px; */
  /* position: relative; */
  box-sizing: border-box;
}

/* Left side (heading + arrow + image) */
.approach-left {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 20px;
  width: 650px;
  position: relative;
}

.approach-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.approach-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  text-transform: uppercase;
  color: #0F172A;
  margin: 0;
}



.approach-image {
  max-width: 480px;
  margin-top: 20px;
  border-radius: 20px;
  height: 320px;
    /* position: absolute; */
  /* transform: rotate(100deg); */
  /* filter: drop-shadow(20px 30px 60px rgba(7, 11, 52, 0.3)); */
}

/* Right side (text) */
.approach-right {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-start; */
  width: 700px;
  top: 155px;
  left: -60px;
  /* gap: 3px; */
  position: relative;

}

.approach-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-align: justify;
  color: #64748B;
  /* margin: 0; */
}



/* ===========================
   WHY CHOOSE US SECTION
=========================== */
.choose {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 120px 80px;
  gap: 60px;
  background: #0F172A;
}

.choose h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: #94A3B8;
}

.choose h1 span {
  color: #0019FF; /* blue */
  font-weight: 700;
}

.choose .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 43px;
  flex-wrap: wrap; /* responsive */
  max-width: 1200px;
  width: 100%;
}

.choose .card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 16px;
  flex: 1 1 300px;
  max-width: 371px;
  min-height: 293px;
  border: 2px solid #FFFFFF;
  border-radius: 40px;
  background: transparent;
  color: #FFFFFF;
  transition: all 0.3s ease; /* smooth effect */
}

.choose .card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #0019FF; /* light blue glow */
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.choose .card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  margin: 0;
}

.choose .card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  margin: 0;
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
  .choose h1 {
    font-size: 48px;
  }
  .choose .row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .choose {
    padding: 50px 30px;
  }
  .choose h1 {
    font-size: 36px;
  }
}

/* ================================
   CORPORATE ASSOCIATES SECTION
================================ */
.corporate {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 50px;
  background: #fff;
  gap: 20px;
}

.corporate h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  color: #94A3B8;
  text-align: center;
}

.corporate h1 span {
  color: #0019FF; /* blue */
  font-weight: 700;
}

.corporate-logos {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

.logo-row {
  display: flex;
  justify-content: space-evenly;  /* evenly distributes logos */
  align-items: center;
  flex-wrap: nowrap;              /* keeps logos aligned in one row */
  gap: 100px;                     /* consistent spacing */
}

.logo-row img {
  max-height: 110px;
  max-width: 240px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .corporate h1 {
    font-size: 48px;
  }
  .logo-row {
    flex-wrap: wrap;          /* allow wrapping on smaller screens */
    justify-content: center;  /* keep centered */
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .corporate h1 {
    font-size: 36px;
  }
  .corporate-logos {
    gap: 50px;
  }
  .logo-row {
    gap: 40px;
  }
}

/* ================================
   CLIENT SUCCESS STORIES SECTION
================================ */
.client {
  background: #0F172A;
  padding: 10px 0 50px;
  text-align: center;
}

.client h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 80px;
}

.client h1 span {
  color: #0019FF;
  font-weight: 700;
}

.client-slider {
  display: flex;
  justify-content: center;
  gap: 32px;
  overflow: hidden;
}

.client-card {
  flex: 0 0 360px;
  padding: 40px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-align: left;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.client-card.active {
  background: #0019FF;
  border: none;
  opacity: 1;
}

.client-card .quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0019FF;
  display: block;
  margin-bottom: 20px;
}

.client-card.active .quote {
  color: #fff;
}

.client-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.client-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #E2E8F0;
  text-transform: uppercase;
}

.client-arrows {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.client-arrows button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.client-arrows button:hover {
  background: #2563EB;
  border-color: #2563EB;
}



/* ================= FAQ CONTACT US SECTION ================= */
    .faq-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0 24px;
      background: #0F172A;
    }

    .faq-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 80px 120px 120px 120px;
      gap: 80px;
      background: #64748B;
      border-radius: 56px;
      width: 100%;
      box-sizing: border-box;
    }

    .faq-content {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 0 200px 0 230px;
      width: 100%;
      box-sizing: border-box;
    }

    .faq-header {
      font-family: 'Unbounded', sans-serif;
      font-weight: 400;
      font-size: 64px;
      line-height: 110%;  
      color: #fff;
      margin-bottom: 40px;
      align-self: flex-start;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 800px;
    }

    .faq-item {
      border-bottom: 1px solid #fff;
      padding: 40px 0;
      cursor: pointer;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 150%;
      color: #fff;
    }

    .faq-question .arrow {
      width: 16px;
      height: 16px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 4px;
      transform: rotate(-45deg);
      transition: transform 0.3s ease;
    }

    .faq-answer {
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 18px;
      line-height: 140%;
      color: #fff;
      padding: 16px 0 0;
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .arrow {
      transform: rotate(45deg);
    }


    /* ================= CONTACT US SECTION ================= */
    .contact-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 120px;
      background: #0F172A;
      color: #fff;
    }

    .contact-container {
      display: flex;
      flex-direction: row;
      gap: 80px;
      max-width: 1200px;
      width: 100%;
    }

    /* ===== LEFT CONTENT ===== */
    .contact-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 40px;
    }

    .contact-left h2 {
      font-family: 'Unbounded', sans-serif;
      font-size: 64px;
      font-weight: 400;
      line-height: 110%;
      text-transform: uppercase;
      margin: 0;
    }

    .contact-left p {
      font-size: 18px;
      font-weight: 500;
      line-height: 140%;
      max-width: 500px;
    }

    .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      background: #0019FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
    }

    /* ===== RIGHT CONTENT ===== */
    .contact-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 40px;
    }

    .contact-form h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .form-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .form-row input {
      flex: 1;
      padding: 16px 24px;
      border-radius: 40px;
      border: none;
      outline: none;
      font-size: 14px;
      color: #64748B;
    }

    .form-row button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 6px 24px;
      border: none;
      background: #0019FF;
      color: #ffffff;
      border-radius: 80px;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
    }

    .form-row button .arrow {
      width: 40px;
      height: 40px;
      background: #ffffff;
      color:  #0019FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ===== CONTACT DETAILS ===== */
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 46px;
      padding: 60px 0 0 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 700;
      font-size: 16px;
    }

    .contact-item .icon {
      width: 40px;
      height: 40px;
      background: #F8FAFC;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0F172A;
      font-size: 18px;
    }
    .social-icons {
      display: flex;
      gap: 16px;
    margin-top: 5px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      background: #0019FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
    }
    /* Responsive */
    @media (max-width: 900px) {
      .contact-container {
        flex-direction: column;
        gap: 40px;
      }
    }