/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; }

a {
  text-decoration: none; /* Removes the underline from all links */
}
/* HERO WRAPPER */
.hero {
    padding: 60px 87px;
  }
  
  .hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }
  
  .hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Text-to-buttongroup gap */
  }
  
.hero-image-section img {
  width: 100%; /* Make width flexible by default */
  max-width: 648px; /* Set a max-width for desktop */
  height: auto;
  border-radius: 15px;
  background: linear-gradient(270deg, rgba(255,255,255,0) 0%, #FFF 100%),
              url('assets/home_page_hero_sec_img.png') lightgray center/cover no-repeat;
  box-shadow: 4px 0 4px 0 rgba(0,0,0,0.25);
  object-fit: cover;
}
  
  /* TITLE */
  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
    font-size: clamp(32px, 4.5vw, 64px);
    color: #000;
  }
  
  .hero h1 .blue {
    color: #3C83F6;
  }
  .hero h1 .green {
    color: #21C45D;
  }
  
  /* SUBTEXT */
  .subtext {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #343A40;
  }
  
  /* BUTTON GROUP */
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .exp-btn-hero .btn-icon {
    display: inline-flex;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .cta-btn-hero {
    background-color: #21C45D;
    color: #fff;
    padding: 16.5px 16px;
    /* font-size: 16px; */
    font-size: clamp(16px, 1vw + 0.6rem, 20px);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  
  .exp-btn-hero {
    background: transparent;
    border: 1px solid #21C45D;
    color: #21C45D;
    padding: 15px 16px;
    /* font-size: 16px; */
    font-size: clamp(16px, 1vw + 0.6rem, 20px);
    font-weight: 600;
    border-radius: 8px;
    font-family: "Space Grotesk";
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
  }
  
  /* RESPONSIVE BEHAVIOR */
  
  @media (max-width: 1321px) {
    .hero {
      padding: 40px 40px;
      align-items: center;
    }
    .hero-container {
      flex-direction: column;
      gap: 16px; /* reduced gap for stacked layout */
      text-align: center;
    }
    .hero-text-section, .hero-buttons {
      align-items: center;
      gap: 16px;
    }
    .hero-image-section img {
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }
  }
  
  /* Button text shrink for smaller screens */
  @media (max-width: 491px) {
    .hero {
      padding: 40px 30px;
      align-items: center;
    }
  }

  /* @media (max-width: 441px) {
    .hero-buttons {
      flex-direction: column;
      gap: 16px;
    }
  } */

  /* what we do section */
  
  .what-we-do-section {
    background-color: #f9fbfc;
    color: #1a1a1a;
    text-align: center;
    padding: 60px 20px;
  }
  
  .what-we-do-section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .what-we-do-section-subheading {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
  }
  
  .what-we-do-section-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .what-we-do-section-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    max-width: 340px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .what-we-do-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .what-we-do-section-icon {
    background: #d4f7df;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    color: #24a148;
    fill: #24a148;
    margin-bottom: 20px;
  }
  
  .what-we-do-section-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .what-we-do-section-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  @media (max-width: 900px) {
    .what-we-do-section-cards {
        flex-direction: column;
        align-items: center;
    }
  }
  

  /*Solutions section*/
  .solutions {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    align-items: center;
    justify-items: center;
  }
  
  .solutions-header {
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    gap: 32px;
    flex-direction: column;
  }
  
  .solutions-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: #343A40;
    font-size: clamp(30px, 1vw + 1.5rem, 40px);
    font-weight: 700;
    line-height: clamp(30px, 1vw + 1.5rem, 40px);
    margin:0px;
  }
  
  .solutions-header p {
    margin: 0;
    max-width: 800px;
    color: #545e66;
    line-height: 1.6;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 0.7rem, 20px);
  }
  
  .solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: Inter;
    font-size: clamp(14px, 1vw + 0.7rem, 20px);
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }
  
  .solutions-tabs span {
    cursor: pointer;
    padding-bottom: 5px;
  }
  
  .solutions-tabs .active {
    border-bottom: 2px solid #2979ff;
    color: #2979ff;
  }
  
  .solutions-content {
    display: none;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .solutions-content.active {
    display: flex;
  }
  
  .solutions-image img {
    max-width: 570px;
    border-radius: 12px;
  }
  
  .solutions-text h3 {
    margin: 0 0;
    font-family: Inter;
    font-size: clamp(22px, 1vw + 0.7rem, 28px);
    color: #2979ff;
  }
  
  .solutions-text p {
    margin: 15px 0;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 0.7rem, 20px);
    color: #555;
  }
  
  .solutions-text ul {
    list-style: none;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 0.7rem, 20px);
    padding: 0;
  }
  
  .solutions-text ul li {
    margin-bottom: 8px;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 0.7rem, 20px);
  }
  
  .learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #2979ff;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .solutions-content {
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }
  
    .solutions-image img {
      max-width: 90%;
      border-radius: 12px;
    }
  
    .solutions-text ul {
      text-align: left;
      display: inline-block;
    }
  }
  


  /* Proven Trackrecord section */
  .proven-trackrecord-section {
    background-color: #fdfbf6;
    text-align: center;
    padding: 80px 60px;
    display: flex;
    gap: 32px;
    flex-direction: column;
    justify-items: center;
    overflow: hidden;
    align-items: center;
  }

  .proven-trackrecord-heading {
    font-family: 'Montserrat', sans-serif;
    color: #343A40;
    font-size: clamp(30px, 1vw + 1.5rem, 40px);
    font-weight: 700;
    line-height: clamp(30px, 1vw + 1.5rem, 40px);
  }

  .proven-trackrecord-subheading {
    margin: 0;
    max-width: 800px;
    color: #545e66;
    line-height: 1.6;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 0.7rem, 20px);
  }

  .stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    gap: 20px;
    text-align: center;
    margin: 0 auto;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .proven-trackrecord-icon {
    color: #00b050;
    margin-bottom: 10px;
  }
  
  .number {
    font-size: 28px;
    font-weight: bold;
    color: #2979ff;
  }
  
  .label {
    font-size: 16px;
    color: #666;
  }
  
  /* Below 1150px → 2 columns */
  @media (max-width: 1150px) {
    .stats-card {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Below 550px → 1 column */
  @media (max-width: 550px) {
    .stats-card {
      grid-template-columns: 1fr;
    }
  }

  .brand-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .brand-section h2 {
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 1vw + 1.5rem, 40px);
    font-weight: 700;
    line-height: clamp(30px, 1vw + 1.5rem, 40px);
  }
  
  .brand-slider {
    overflow: hidden;
    position: relative;
  }
  
  .brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
  }
  
  .brand-track img {
    width: auto;
    height: 40px;
    object-fit: contain; /* keeps aspect ratio without distortion */
    margin: 0 40px;
    transition: transform 0.3s ease;
  }
  
  .brand-track img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  



  /* commitments section */

  .our-commitments{
    background: #f6fbfd;
  }
  
  .wrap {
    padding: 80px 60px;
    margin:auto;
    max-width: 1100px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    box-sizing: border-box;
    background: #f6fbfd;
    justify-content: space-around;
  }
  
.commitments-text {
  /* The min-width was causing overflow on mobile. Remove it here. */
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  align-self: stretch;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0; /* Prevent this column from shrinking too much on desktop */
}
@media (min-width: 952px) {
  .commitments-text {
    min-width: 400px;
  }
}
  .commitments-text h2 {
    color: #343A40;
    font-family: Manrope;
    font-size: 40px;
  }
  .commitments-text p {
    margin: 0;
    color: #6b7780;
    line-height: 1.6;
    font-family: Inter;
    font-size: 18px;    
    max-width: 420px;
  }
  

  


  .accordion-item {
    background: #fff;
    /* max-width: 800px; */
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: visible;
    box-shadow: 0 1px 0 rgba(15, 23, 36, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }
  .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 23, 36, 0.06);
  }
  
  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: #0f1720;
    font-size: 1.05rem;
    line-height: 1;
    border-radius: 12px;
  }
  .accordion-header:focus {
    outline: 2px solid rgba(59, 130, 246, 0.15);
    outline-offset: 2px;
  }
  
  .icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 34px;
  }
  .icon svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(0);
    transition: opacity 220ms cubic-bezier(.2, .9, .3, 1), transform 220ms cubic-bezier(.2, .9, .3, 1);
    color: #51606a;
    opacity: 1;
  }
  .icon svg.up-arrow {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(6px);
  }
  .accordion-header[aria-expanded="true"] .icon .down-arrow {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-6px);
  }
  .accordion-header[aria-expanded="true"] .icon .up-arrow {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms cubic-bezier(.2, .9, .3, 1);
    background: transparent;
  }
  .accordion-content .inner {
    padding: 0 20px;
    color: #6b7780;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .accordion-content.is-open .inner {
    padding: 14px 20px 18px 20px;
  }
  
  @media (max-width: 951px) {
    .wrap {
      flex-direction: column;
      padding: 44px 32px;
    }
    .commitments-text {
      min-width: 300px;
      gap: 16px;
    }
    .commitments-text p {
      text-align: center;
      margin: auto;
    }
    .commitments-text h2 {
      font-size: 2rem;
      text-align: center;
      margin: auto;
    }

  }
  @media (max-width: 441px) {
    .wrap {
      flex-direction: column;
      padding: 32px 20px;
    }
  }


  /* Testimonail Section */
  /* Testimonail Section */
  .testimonial-section {
    background-color: #fdfbf6;
    text-align: center;
    padding: 80px 60px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    overflow: hidden;
  }
  
  .testimonial-heading {
    font-family: 'Inter', sans-serif;
    color: #343A40;
    font-size: clamp(30px, 1vw + 1.5rem, 40px);
    font-weight: 700;
    line-height: clamp(30px, 1vw + 1.5rem, 40px);
  }
  
  .testimonial-subheading {
    margin: 0;
    color: #545e66;
    line-height: 1.6;
    font-family: Inter;
    font-size: clamp(16px, 1vw + 1.5rem, 20px);
  }
  
  .testimonial-carousel {
    width: 100%;
    text-align: left;
    max-width: 1220px; /* keeps your original max */
    margin: auto;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-track {
    display: flex;
    gap: 32px; /* must match the JS gap value */
    transition: transform 0.5s ease;
    align-items: stretch;
  }
  
  
.testimonial-card {
  flex: 0 0 auto;
  /* Start with a flexible width for mobile */
  width: 90%;
  max-width: 594px; /* Set a max-width for desktop */
  box-sizing: border-box;
  transition: width 180ms ease, transform 180ms ease;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0 auto; /* Helps center the single card on mobile view */
}
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  
  .testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-meta {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;               /* allows text-overflow to work inside flex */
    /* padding-right: 30px;        <-- ensures 30px space from right inner edge */
  }
  
  .testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
  }
  
  .testimonial-role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
  }
  
  .testimonial-company {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #0a815b;
    margin: 0;
  }
  
  
  .testimonial-stars {
    color: #ffc107;
    font-size: 20px;
    margin: 12px 0;
  }
  
  .testimonial-feedback {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
    color: #333;
  }

  .testimonial-controls {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px; /* ✅ this adds spacing between arrow, dots, and carousel */
  }
  
  
  .arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: inline-block;
  }
  
  .dot.active {
    background-color: #333;
  }

  @media (max-width: 1300px) {
    .testimonial-card {
      /* allow JS to override width; this is just a safe fallback */
      width: calc((100% - 32px) / 2);
    }
  }
  
@media (min-width: 769px) {
  .testimonial-card {
    /* On desktop, set width based on whether 1 or 2 cards are shown */
    width: calc((100% - 32px) / 2); /* For 2 cards per slide */
    margin: 0; /* Remove auto margin on desktop */
  }
}


  /* tech section  */
  .tech-section {
    background-color: #0f1b2b;
    color: #fff;
    padding: 80px 32px;
    margin: 0px;
    text-align: center;
  }
  
  .tech-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 12px;
  }
  
  .tech-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #cdd5e1;
    margin-bottom: 64px;
  }
  
  .tech-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  
  .tech-column {
    flex: 1;
    min-width: 340px;
  }
  
  .tech-title {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
    position: relative;
    color: #fff;
  }
  
  .tech-title.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 64px;
    height: 4px;
    background-color: #c5e95b;
    border-radius: 2px;
  }
  
  .tech-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: transparent;
    border: 1px solid #c5e95b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
  }
  
  .tech-icon {
    font-size: 24px;
    color: #c5e95b;
    flex-shrink: 0;
  }
  
  .tech-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
  }
  
  .tech-card-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #cdd5e1;
    margin-top: 4px;
  }
  
  /* 📱 Mobile Responsiveness */
  @media (max-width: 768px) {
    .tech-section {
      padding: 60px 20px;
    }
  
    .tech-heading {
      font-size: 26px;
      line-height: 34px;
    }
  
    .tech-subheading {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 40px;
    }
  
    .tech-grid {
      flex-direction: column;
      gap: 32px;
      text-align: center; /* Keep it neat for mobile */
    }
  
    .tech-column {
      min-width: 100%;
    }
  
    .tech-title {
      font-size: 20px;
    }
  
    .tech-card {
      justify-content: center;
      text-align: left;
    }
  }
  
  /* 📱 Small Phones */
  @media (max-width: 480px) {
    .tech-section {
      padding: 40px 16px;
    }
  
    .tech-heading {
      font-size: 22px;
      line-height: 30px;
    }
  
    .tech-subheading {
      font-size: 14px;
      margin-bottom: 32px;
    }
  
    .tech-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 16px;
    }
  
    .tech-card-title {
      font-size: 14px;
    }
  
    .tech-card-sub {
      font-size: 13px;
    }
  }
  