main.home-page-2026 {
  /* overriding container class to set the bootstrap class */
  .container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }

  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }

  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }

  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }

  @media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
  }

  .container-fluid {
    max-width: 100%;
  }

  /* ----------------------------- */
  /* Reset paragraphs */
  p {
    font-family: var(--global-fonts);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: inherit; /* inherit text color from parent */
  }

  /* ----------------------------- */
  /* Reset unordered & ordered lists */
  ul,
  ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 0rem; /* default Bootstrap padding */
    list-style-position: outside;
  }

  /* Reset list items */
  li {
    font-family: var(--global-fonts);
    display: list-item;
    line-height: 1.5;
  }

  /* Hero section */
  .hero-section {
    position: relative;
    padding: 1rem 0;

    .hero-background {
      position: absolute;
      inset: 0;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 80% 0%;
      }
    }

    .hero-content {
      max-width: 55%;
      margin: clamp(4rem, 8vw, 5rem) 0;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: var(--main-sub-heading);
      font-weight: 700;
      color: var(--theme-blue);
      margin-bottom: 2rem;

      span {
        color: black;
      }
    }

    .hero-description {
      font-size: 1.1rem;
      color: #2a2a2a;
      line-height: 1.6;
      margin-bottom: 3rem;
    }

    .features-container {
      display: flex;
      flex-wrap: wrap;
    }

    .feature-badge {
      background-color: var(--theme-opacity-blue);
      border: 1px solid var(--theme-light-blue);
      font-weight: 500;
      width: max-content;
      border-radius: 50px;
      color: var(--theme-blue);
      padding: 0.5rem 1rem;
      margin: 0.25rem;
      display: inline-block;
      font-size: clamp(0.85rem, 2vw, 0.9rem);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      display: inline-flex;
      gap: 5px;
      align-items: center;
    }

    .feature-badge:hover {
      background-color: var(--theme-light-blue);
      border-color: var(--theme-blue);
      color: white;
    }

    @media (max-width: 992px) {
      .hero-content {
        max-width: 80%;
      }
    }

    @media (max-width: 767.98px) {
      .feature-badge {
        padding: 4px 8px;
      }
      .hero-title {
        margin-bottom: 1rem;
      }
      .hero-description {
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 576px) {
      .hero-content {
        margin-top: 5rem;
        margin-bottom: 10px;
      }

      text-align: center;
      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #000000b0;
        z-index: 1;
      }
      .hero-title,
      .hero-title > span {
        color: white;
      }

      .hero-description {
        color: rgb(213, 241, 255);
      }

      .hero-content {
        max-width: 100%;
      }

      .features-container {
        justify-content: center;
      }

      .feature-badge {
        background-color: #f0f5fd00;
        border: 1px solid #ffffff;
        color: #ffffff;
      }
    }
  }
  .statistics-section {
      padding: 40px 0px 40px;
  }
  .statistics-section .stat-item {
      text-align: center;
  }
  .statistics-section .stat-item .stat-number {
      display: flex;
      justify-content: center;
      font-size: 35px;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
      gap: 10px;
  }
  .statistics-section .stat-item .stat-label {
      font-size: 16px;
      color: #2c3e50;
      font-weight: 500;
      line-height: 1.4;
      margin: 0;
  }

  .our-clients-section {
    background-color: white;

    .brand-carousel {
      position: relative;
      overflow: hidden;
      height: 8.5rem;
      padding: 1rem;
      margin: 0 -15px;
    }

    .brand-scroll {
      display: flex;
      align-items: center;
      animation: scrollBrands 20s linear infinite;
      width: fit-content;
    }

    .brand-logo {
      width: 200px;
      height: 100px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      flex-shrink: 0;
      cursor: pointer;
    }

    .brand-logo:hover {
      transform: translateY(-4px);
      margin-inline: 5px;
      border-radius: 5px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border-color: rgba(66, 165, 245, 0.2);
    }

    .brand-logo img {
      max-width: 100%;
      max-height: 100%;
      transition: transform 0.3s ease;
    }

    .brand-logo:hover img {
      transform: scale(1.1);
    }

    /* Pause animation on hover */

    .brand-carousel:hover .brand-scroll {
      animation-play-state: paused;
    }

    /* Gradient fade edges */

    .brand-carousel::before,
    .brand-carousel::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 10;
      pointer-events: none;
    }

    .brand-carousel::before {
      left: 0;
      background: linear-gradient(to right, white, transparent);
    }

    .brand-carousel::after {
      right: 0;
      background: linear-gradient(to left, white, transparent);
    }

    @media (max-width: 767.98px) {
      .brand-logo {
        width: 150px;
        height: 80px;
      }
    }
  }

  /* ==================== Generic Tab System (Reusable) ==================== */
  .tabs-section {
    > div {
      height: 300px;
      padding: 0px;
    }

    /* .active-tab {
      flex-shrink: 0; */
    /* width: 100%; */
    /* } */

    .tab-list {
      display: flex;
      flex-direction: column;
    }

    .non-active-tabs {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
      /* max-height: calc(300px - 52px); */
      max-height: 300px;
      overflow-y: auto;
      scrollbar-width: none;

      &:hover {
        scrollbar-width: thin;
      }

      /* > :first-child {
        margin-top: 5px;
      } */
    }

    .tab-item {
      background: transparent;
      border-start-start-radius: 5px;
      border-end-start-radius: 5px;
      padding: clamp(0.6rem, 2.5vw, 1rem) clamp(0.4rem, 3vw, 1rem);
      color: white;
      font-size: clamp(12px, 2vw, 0.95rem);
      font-weight: 700;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: left;
      width: 100%;
      outline: none;
    }

    .tab-item.active,
    .tab-item:hover {
      height: 100%;
      background: white;
      color: var(--theme-blue);
      border-color: var(--theme-blue);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .tab-item span {
      display: block;
    }

    .tab-panel {
      display: none;
      animation: moveToRight 0.4s ease-in-out;
    }

    .tab-panel.active {
      display: block;
      margin-top: 0.5rem;
    }

    @media (max-width: 991.98px) {
      padding-inline: 0.5rem;
      > div {
        height: 50px;
      }
      /* .active-tab {
      width: 350px;
    } */
      .tab-list {
        border-top: 1.2px solid white;
        border-bottom: 1.2px solid white;
        border-left: 1.2px solid white;
        border-radius: 10px;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        flex-direction: row;
        overflow: hidden;
      }

      .tab-item {
        max-width: fit-content;
        flex-shrink: 0;
      }

      .tab-item:hover {
        background: transparent;
        color: white;
      }

      .tab-item.active {
        background: white;
        color: var(--theme-blue);
      }

      .non-active-tabs {
        flex-direction: row;
        overflow-x: auto;
        /* max-width: calc(100% - 40%); */
        max-width: 100%;
        > :first-child {
          margin-top: 0px;
        }
      }
      .tab-container {
        height: 300px;
      }
    }
  }
  /* ==================== End Generic Tab System ==================== */

  /* Core Services Section */
  .core-services-section {
    background: linear-gradient(282.86deg, #12408c 2.7%, #226be9 101.04%);
    margin: 0px 0px 40px;

    color: white;

    .main-section-title {
      color: white;
    }

    .section-description {
      color: rgba(255, 255, 255, 0.822);
    }

    /* Services List */
    .services-list {
      display: flex;
      flex-direction: column;
      gap: clamp(0.8rem, 2vw, 1rem);
    }

    .service-item {
      background-color: white;
      border-radius: clamp(8px, 1.5vw, 12px);
      padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 2rem);
      color: var(--theme-blue);
      font-size: var(--text-subheading);
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      border: 2px solid transparent;
      cursor: pointer;
      text-align: left;
      width: 100%;
      outline: none;
    }

    .service-item:hover {
      transform: translateX(10px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .service-item.active {
      background-color: white;
      border-color: var(--theme-blue);
      box-shadow: 0 4px 20px rgba(34, 107, 233, 0.25);
      transform: translateX(10px);
    }

    .service-item span {
      display: block;
    }

    /* Services Tab Content */
    .services-tab-content {
      display: none;
      animation: fadeIn 0.4s ease-in-out;
    }

    .services-tab-content.active {
      display: block;
    }

    /* Services Image Wrapper */
    .services-image-wrapper {
      padding: 1rem;
      position: relative;
      display: flex;
      gap: 1rem;
      justify-content: center;
      align-items: start;
      overflow-y: auto;
      max-height: calc(300px - 1rem);
      scrollbar-width: thin;
    }

    .tab-container {
      background: white;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      overflow: hidden;
    }

    .services-image {
      position: sticky;
      top: 0;
      margin-top: 0.5rem;
      width: 100%;
      max-width: 600px;
    }

    .services-image img {
      border-radius: clamp(12px, 2vw, 20px);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Services Info Card */
    .services-info-card {
      background: white;
      max-width: min(95%, 450px);
      z-index: 2;
    }

    .info-card-text {
      font-size: var(--card-para);
      color: black;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .info-card-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .info-card-list li {
      display: flex;
      align-items: flex-start;
      gap: clamp(0.5rem, 1.2vw, 0.8rem);
      font-size: var(--card-para);
      color: #374151;
      line-height: 1.5;
    }

    .info-card-list li i {
      color: var(--theme-blue);
      flex-shrink: 0;
      width: clamp(16px, 2.5vw, 20px);
      height: clamp(16px, 2.5vw, 20px);
      margin-top: 2px;
    }

    .info-card-list li span {
      flex: 1;
    }

    /* Responsive Design */
    @media (max-width: 991.98px) {
      .services-info-card {
        position: static;
        margin-top: clamp(1.5rem, 4vw, 2rem);
        max-width: 100%;
      }

      .services-image {
        max-width: 100%;
      }
      .services-image-wrapper {
        flex-direction: column;
        justify-content: start;
      }
    }

    @media (max-width: 575.98px) {
      .services-info-card {
        margin: 0;
        padding: clamp(1rem, 3vw, 1.5rem);
      }

      .services-image {
        height: 130px;
        margin: 0;
      }

      .service-item {
        padding: clamp(0.9rem, 2.5vw, 1.2rem);
      }
    }
  }

  /* Enterprise Services Section */
  .enterprise-services-section,
  .benefits-section {
    background-color: #ffffff;

    padding: 5rem 0;
    position: relative;

    .overlay-background {
      position: absolute;
      inset: 0;
      z-index: 0;
      height: 80%;
      width: 100%;
      background: radial-gradient(101.93% 101.93% at 50% 101.93%, rgba(34, 107, 233, 0.26) 0%, #ffffff 56.7%);
    }
    .container {
      position: relative;
      z-index: 1;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid #e9ecef !important;
      border-radius: 12px !important;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-color: var(--theme-blue) !important;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--theme-opacity-blue);
      color: var(--theme-blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .icon-blue {
      width: 24px;
      height: 24px;
    }

    .service-title {
      font-size: var(--text-subheading);
      font-weight: 600;
      color: black;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .service-description {
      font-size: var(--card-para);
      color: black;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* Services Section Responsive */
    @media (max-width: 991.98px) {
      .enterprise-services-section {
        padding: 3rem 0;
      }
    }

    @media (max-width: 767.98px) {
      .enterprise-services-section {
        padding: 2rem 0;
      }

      .service-card {
        margin-bottom: 1rem;
      }
    }

    @media (max-width: 575.98px) {
      .service-card {
        padding: 1.5rem !important;
      }
    }
  }

  /* CTA Section */
  .home-cta-section {
    background-color: var(--theme-blue);

    .cta-title {
      color: white;
      margin-bottom: 2rem;
    }
    .cta-img-container {
      position: relative;
      display: flex;
      justify-content: end;
      margin: 0;
      padding: 0;
      overflow: hidden;
      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90.18deg, #226be9 -0.16%, rgba(255, 255, 255, 0) 95.76%);
      }
    }
    @media (max-width: 767.98px) {
      .container-fluid {
        text-align: center;
      }
      .cta-img-container {
        display: none;
      }
    }
  }

  /* Industry Expertise Section Styles */

   .case-studies-section .industry-card.h-100 .industry-features p strong {
        margin: 0px 0px 5px;
        display: block;
    }
    .case-studies-section .industry-card.h-100 .industry-features ul li strong {
        margin: 0px 0px 5px;
        display: block;
    }


  
  .tech-stack-accordion {
      display: flex;
      border: 10px solid var(--theme-blue);
      border-radius: 10px;
      overflow: hidden;
  }
  /* Left Sidebar */
  .tech-stack-accordion .tech-stack-tabs {
      background: var(--theme-blue);
      width: 35%;
      padding: 20px 0;
      max-height: 370px;
      overflow-y: auto;
      overflow-x: hidden;
      scroll-behavior: smooth;
  }

  .tech-stack-accordion .tech-stack-btn {
      display: block;
      width: 100%;
      margin: 10px auto;
      padding: 15px 20px;
      border: none;
      background: transparent;
      color: white;
      text-align: left;
      font-size: 16px;
      cursor: pointer;
      border-radius: 10px;
      transition: 0.3s ease;
  }

  .tech-stack-accordion .tech-stack-btn.active {
      background: white;
      color: #1a2b49;
      font-weight: bold;
  }

  /* Right Content */
  .tech-stack-accordion-content {
      flex: 1;
      padding: 30px;
      background: #f9fffb;
      position: relative;
  }
  .tech-stack-accordion-content .grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
  }

 .tech-stack-content {
      display: none;
      animation: fadeIn 0.5s ease;
  }

  .tech-stack-content.active {
      display: block;
  }

  .tech-stack-accordion-content .card {
      background: white;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
  }
  .tech-stack-accordion-content .card:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(17, 24, 39, .1), transparent);
      transition: left 0.5s ease;
  }
  .tech-stack-accordion-content .card:hover {
      background: #fff;
      border-color: #d1d5db;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
      transform: translateY(-2px);
  }
  .tech-stack-accordion-content .card:hover:before {
      left: 100%;
  }

  .industry-solutions-section .industry-card-containers.owl-carousel button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 100%;
      background: #fff;
      margin: 0;
      font-size: 25px;
      color: #000;
      box-shadow: 0 0 5px 0 #000;
  }
  .industry-solutions-section .industry-card-containers.owl-carousel button.owl-prev {
      left: -20px;
  }
  .industry-solutions-section .industry-card-containers.owl-carousel button.owl-next {
      right: -20px;
  }
  .industry-solutions-section .industry-card-containers.owl-carousel button span {
      top: -2px;
      position: relative;
  }

  /* Smooth Animation */
  @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
  }
  
  .why-choose-us-row {
      display: grid;
      grid-template-columns: 6.2fr 3.8fr;
      gap: 20px;
      align-items: center;
  }
  .why-choose-us-row .why-choose-us-col-left {
      background: linear-gradient(135deg, #6f42c1, #007bff);
      width: 100%;
      height: 100%;
      padding: 80px 100px 85px 70px;
      border-top-right-radius: 60px;
      position: relative;
      z-index: 3;
  }
  .why-choose-us-col-right {
      min-width: 0;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline {
      position: relative;
      width: 450px;
      z-index: 3;
      margin-left: -100px;
      display: block;
      margin-bottom: 0;
  }
  .why-choose-us-section .why-choose-us-col-left .main-section-title {
      color: #fff;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline .approach-step .step-card .step-title {
      flex-wrap: wrap;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline .approach-step .step-card .step-title p {
      width: 100%;
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: #333;
      margin-bottom: 16px;
      line-height: 1.3;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
      color: #000;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      text-align: center;
      box-shadow: 0 0 5px 0 #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 25px;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline button.owl-prev {
      left: -15px;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline button.owl-next {
      right: -15px;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline button span {
      position: relative;
      top: -2px;
  }
  .why-choose-us-section .why-choose-us-row .approach-timeline .approach-step .step-card {
      padding: 25px;
      background: #fff;
      box-shadow: 0 4px 22px 0 rgb(0 0 0 / 13%);
      height: 100%;
      padding: 30px;
      border-top-left-radius: 50px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 12px;
      max-width: 95%;
      margin: auto;
  }

  .case-studies-section,
  .technologies-we-use-section {
    position: relative;
    background: radial-gradient(101.93% 101.93% at 50% 101.93%, rgba(34, 107, 233, 0.26) 0%, #ffffff 100%);

    .industry-main-title {
      font-size: var(--sub-heading);
      font-weight: 700;
      color: #333;
      text-align: center;
    }
    .industry-card {
      background-color: white;
      border: 1px solid #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
      opacity: 1;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }

    .industry-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--theme-blue);
      .industry-img {
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
      }
    }

    .industry-image {
      min-height: min(25vh, 120px);
      width: 100%;
      height: 300px;
      overflow: hidden;
      position: relative;
      margin-bottom: 0;
      &::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
      }
    }

    .industry-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .industry-content {
      position: relative;
      padding: clamp(0.8rem, 2vw, 1.1rem);
    }

    .industry-title {
      position: absolute;
      top: -2.18rem;
      left: 0;
      font-size: var(--card-para);
      font-weight: 400;
      color: white;
      background-color: var(--theme-blue);
      padding: 0.5rem 1rem;
      border-top-right-radius: 8px;
      border-top: 1.3px solid white;
      border-right: 1.3px solid white;
      z-index: 1;
    }
   

    .industry-features {
      color: black;
      min-height: 60px;
      margin-bottom: 0;
      position: relative;
      font-size: var(--card-para);
      line-height: 1.6;
      transition: all 0.3s ease;

      .heading {
        font-weight: 600;
        font-size: var(--description-para);
      }

      p,
      li {
        font-size: var(--card-para);
      }

      ul {
        list-style: none;
        padding-left: 0;
        margin-left: 8px;
        li {
          display: flex;
          justify-content: start;
          align-items: center;
          gap: 1rem;
          margin-bottom: 3px;
        }
      }
      .list-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        padding: 3px;
        width: 20px;
        height: 20px;
        background-color: var(--theme-blue);
        color: white;
      }
    }

    /* Responsive Design for Industry Section */
    @media (max-width: 992px) {
      .industry-title {
        top: -2rem;
      }
      .industry-image {
        height: 200px;
      }
    }

    @media (max-width: 768px) {
      .industry-title {
        top: -1.9rem;
      }
      .industry-image {
        height: 180px;
      }
    }

    @media (max-width: 576px) {
      .industry-title {
        top: -1.85rem;
      }
      .industry-image {
        height: 160px;
      }
    }
  }

  /* Benefits Section Style */
  .benefits-section {
    .main-section-title,
    .section-description {
      color: white;
    }

    .overlay-background {
      height: 60%;
      background: var(--theme-blue);
    }
    .service-title {
      font-size: var(--description-para);
    }
    .service-description {
      color: black;
    }
    .service-card {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      &:hover {
        box-shadow: 0 20px 40px #226be928;
      }
    }
  }

  /* AI Models Expertise Section Styles */
  .tech-stack-supporting-section {
    background: radial-gradient(101.93% 101.93% at 50% 101.93%, rgba(34, 107, 233, 0.26) 0%, #ffffff 80%);
    position: relative;

    .section-description {
      color: black;
    }

    .ai-models-card {
      background-color: #ffffff;
      border-top: 1.26px solid #e8e8e8;
      padding: clamp(0.8rem, 2.5vw, 1rem);
      border-radius: 12px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .ai-models-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .ai-models-card-header {
      color: var(--theme-blue);
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .ai-models-card-title {
      font-size: var(--card-para);
      font-weight: 400;
      margin: 0;
      background: var(--theme-blue);
      color: white;
      padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.2rem);
      border-radius: 5px;
    }

    /* Foundation Models Grid (2x4 layout) */
    .ai-models-grid {
      display: flex;
      flex-direction: column;
      gap: clamp(0.8rem, 1.5vw, 1rem);
    }

    .ai-models-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(0.6rem, 1.2vw, 1rem);
    }

    /* Center Column Grid (single column) */
    .ai-models-grid-center {
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: center;
    }

    .ai-model-tag {
      padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.2rem);
      border-radius: 8px;
      font-size: var(--card-para);
      transition: all 0.3s ease;
      display: flex;
      gap: 10px;
      align-items: center;
      border: 1.26px solid transparent;

      img {
        width: 25px;
        height: 25px;
      }
    }

    .ai-model-tag:hover {
      background: #f9f9f9;
      transform: translateY(-2px);
      color: var(--theme-blue);
      border: 1.26px solid #e8e8e8;
    }

    .ai-model-tag-empty {
      /* Empty placeholder for grid alignment */
      visibility: hidden;
    }

    /* Center column specific styling */
    .ai-models-grid-center .ai-model-tag {
      width: 100%;
      max-width: 250px;
    }

    @media (max-width: 576px) {
      .ai-models-row {
        grid-template-columns: 1fr;
      }

      .ai-models-grid-center .ai-model-tag {
        max-width: none;
      }
    }
  }

  /* Technologies We Use Section Style */
  .technologies-we-use-section {
    background: linear-gradient(282.86deg, #12408c 2.7%, #226be9 101.04%);
    .main-section-title,
    .section-description {
      color: white;
    }
    .industry-card {
      display: flex;
      padding: 1rem;
      max-height: 320px;
    }

    .industry-image {
      height: 100%;
      width: 35%;
      border-radius: 5px;
      overflow: hidden;
    }
    .industry-content {
      overflow-y: auto;
      max-height: calc(1px + 99%);
      padding: 0 1rem;
      width: 65%;
      scrollbar-width: thin;
    }
    .industry-features {
      color: black;
      .heading {
        padding-bottom: 0.3rem;
        border-bottom: 1.5px solid rgba(0, 0, 0, 0.189);
        position: sticky;
        top: 0;
        background-color: white;
      }
      ul {
        list-style: disc;
        padding-left: 0;
        li {
          display: list-item;
          margin: 0;
        }
      }
    }
    @media (max-width: 576px) {
      .industry-card {
        max-height: 100%;
        height: 100%;
        flex-direction: column;
      }
      .industry-image {
        width: 100%;
        max-height: 160px;
        margin-bottom: 1rem;
      }
      .industry-content {
        width: 100%;
      }
    }
  }

  /* Our Approach Section */
  .faq-section,
  .why-choose-us-section,
  .development-progress-section,
  .our-approach-section,
  .plans-section {
    background-color: white;
    position: relative;

    .background-overlay {
      position: absolute;
      height: 45%;
      width: 100%;
      bottom: 0;
      background: linear-gradient(90deg, #e4e9fa 0%, #eaf6fc 100%);
    }

    .main-section-title,
    .section-description {
      color: #2c3e50;
    }

    .approach-timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: clamp(0.5rem, 2vw, 1rem);
      align-items: start;
      margin-top: clamp(2rem, 4vw, 3rem);
    }

    .approach-step {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .step-connector {
      position: absolute;
      z-index: 1;
      left: 50%;
      top: -25%;
      transform: translateX(-5%);
      width: max-content;

      > img {
        width: 280px;
      }
    }

    .step-card {
      position: relative;
      z-index: 2;
      background-color: white;
      border: 1px solid #226be914;
      border-radius: 8px;
      padding: clamp(0.6rem, 2.5vw, 0.8rem);
      text-align: center;
      width: 100%;
      height: 100%;
      min-height: clamp(140px, 20vw, 180px);
      transition: all 0.3s ease;

      .step-dot {
        width: clamp(20px, 2.5vw, 30px);
        height: clamp(20px, 2.5vw, 30px);
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1px solid #f0f5fd;
        flex-shrink: 0;
        position: absolute;
        top: -5%;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
        &::before {
          content: "";
          width: clamp(12px, 2.5vw, 18px);
          height: clamp(12px, 2.5vw, 18px);
          border-radius: 50%;
          background-color: var(--theme-blue);
        }
      }

      .step-badge {
        display: none;
      }
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: rgba(34, 107, 233, 0.2);
    }

    .step-title {
      font-weight: 500 !important;
      background-color: var(--theme-opacity-blue);
      padding: 1rem 0.4rem;
      font-size: clamp(0.8rem, 1.8vw, 1rem);
      border-radius: 10px;
      margin-bottom: 1rem;
      min-height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .step-description {
      font-size: var(--card-para);
      color: black;
      line-height: 1.5;
      margin: 0;
      flex-grow: 1;
      min-height: 100px;

      > ul {
        margin-left: 10px;
      }
    }

    @media (max-width: 1400px) and (min-width: 1200px) {
      .step-connector {
        left: 52%;
        > img {
          width: 240px;
        }
      }
    }

    @media (max-width: 1199.98px) {
      .approach-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1rem, 3vw, 2rem);
      }
      .step-card {
        margin-bottom: 2rem;
        .step-badge {
          display: inline-block;
          position: absolute;
          top: -5%;
          left: 10%;
          background-color: var(--theme-blue);
          color: white;
        }
      }

      .step3-connector {
        .step-connector {
          display: none;
        }
      }

      .step-connector {
        top: -22%;
        left: 51%;
        > img {
          width: 350px;
        }
      }
    }

    @media (max-width: 992.98px) {
      .step-connector {
        > img {
          width: 265px;
        }
      }
    }
    @media (max-width: 767.98px) {
      .step3-connector {
        .step-connector {
          display: inline-block;
        }
      }
      .step2-connector,
      .step4-connector {
        .step-connector {
          display: none;
        }
      }

      .step-connector {
        > img {
          width: 300px;
        }
      }

      .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .approach-timeline {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
      }

      .step-card .step-dot {
        left: 0;
        top: 50%;
      }

      .step2-connector,
      .step4-connector {
        .step-connector {
          display: inline-block;
        }
      }

      .step-connector {
        left: -6rem;
        top: 82%;
        transform: rotate(270deg) scaleX(-1);
        > img {
          width: 295px;
        }
      }
      .approach-step {
        align-items: end;
      }
      .step-card {
        max-width: 90%;
        min-height: auto;
      }

      .step-card .step-badge {
        display: none;
      }
    }
  }

  /* Plan Section */
  .why-choose-us-section,
  .development-progress-section,
  .plans-section {
    .background-overlay {
      position: absolute;
      inset: 0;
      height: 100%;
      z-index: 0;
      background: radial-gradient(100.93% 101.93% at 50% 101.93%, rgba(34, 107, 233, 0.26) 0%, #ffffff 100%);
    }

    .approach-timeline {
      margin-top: 0;
      margin-bottom: 1rem;
      grid-template-columns: repeat(4, 1fr);
    }

    .step-title {
      font-weight: 500 !important;
      background-color: var(--theme-blue);
      color: white;
      gap: 1rem;
      justify-content: start;
      padding: 0.3rem 1rem;
      min-height: 60px;
      .icon-container {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        background-color: white;
        border-radius: 5px;
        color: var(--theme-blue);
        align-items: center;
      }
    }
    .step-description {
      text-align: start;
      min-height: 200px;
    }

    @media (max-width: 1199.98px) {
      .approach-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1rem, 3vw, 2rem);
      }
      .step-card {
        margin-bottom: 0;
      }
    }

    @media (max-width: 767.98px) {
      .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .approach-timeline {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
      }

      .approach-step {
        align-items: center;
      }
      .step-card {
        max-width: 100%;
        min-height: auto;
      }
    }
  }

  /* Security Section */
  .security-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(32, 113, 231, 0.2) 100%);

    position: relative;

    .section-description {
      color: black;
      font-weight: 400;
    }

    .security-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .security-feature-item {
      display: flex;
      gap: clamp(1rem, 2vw, 1.5rem);
      align-items: center;
      background: #ffffffa3;
      padding: clamp(0.8rem, 2.5vw, 1rem);
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .security-feature-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-icon-wrapper {
      background: white;
      color: var(--theme-blue);
      border: 1px solid rgba(0, 0, 0, 0.073);
      border-radius: 12px;
      padding: clamp(0.3rem, 1.5vw, 0.5rem);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: clamp(45px, 8vw, 50px);
      height: clamp(45px, 8vw, 50px);
    }

    .feature-icon-wrapper i,
    .feature-icon-wrapper svg {
      width: clamp(34px, 4vw, 42px);
      height: clamp(34px, 4vw, 42px);
    }

    .feature-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: clamp(0.3rem, 0.8vw, 0.5rem);
    }

    .feature-title {
      font-size: var(--description-para);
      font-weight: 600;
      margin: 0;
      line-height: 1.3;
    }

    .feature-description {
      font-size: var(--card-para);
      line-height: 1.6;
      margin: 0;
    }

    .security-image {
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .security-image img {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }

    @media (max-width: 991.98px) {
      .security-image {
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 767.98px) {
      .security-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(0.8rem, 2vw, 1rem);
      }
      .security-image {
        display: none;
      }
    }

    @media (max-width: 575.98px) {
      .security-features {
        gap: clamp(1rem, 3vw, 1.5rem);
      }
    }
  }

  /* Development Section */
  .development-progress-section,
  .faq-section {
    .background-overlay {
      inset: unset;
      height: 70%;
      bottom: 0;
    }
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
    .background-overlay {
      inset: 0;
      height: 100%;
      width: 100%;
      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }
    }

    .main-section-title,
    .section-description {
      position: relative;
      z-index: 1;
    }

    .approach-timeline {
      margin-top: 0;
      margin-bottom: 1rem;
      grid-template-columns: repeat(2, 1fr);
    }

    .step-title {
      font-weight: 500 !important;
      background-color: white;
      color: black;
      padding: 0;
      min-height: auto;
      .icon-container {
        background-color: var(--theme-blue);
        color: white;
      }
    }

    .step-description {
      min-height: auto;
    }

    @media (max-width: 767.98px) {
      .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .approach-timeline {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
      }
    }
  }

  /* Industry Solutions Section */
  .industry-solutions-section {
    background: #f8f9fa;
    padding: 5rem 0;

    .industry-card-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;

      > :nth-child(2) {
        display: flex;
        flex-direction: column;
        gap: 5px;
        > :last-child {
          display: flex;
          gap: 5px;
          justify-content: center;
          align-items: center;
        }
      }
    }

    .industry-card {
      border-radius: 12px !important;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .industry-card:hover {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      transform: translateY(0);

      .industry-image {
        transform: scale(1.1);
      }
    }

    .industry-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease-in-out;
    }

    .industry-overlay {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #0000000c;
      transition: background 0.3s ease;
    }

    .industry-card:hover .industry-overlay {
      background: #00000061;
    }

    .industry-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
    }

    @media (max-width: 1200px) and (min-width: 768px) {
      .industry-label {
        font-size: small;
      }
    }

    /* Industry Solutions Responsive */
    @media (max-width: 992px) {
      padding: 3rem 0;

      .industry-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      padding: 2rem 0;
      .industry-card-container {
        flex-direction: column;

        > :nth-child(2) {
          flex-direction: column;
          > :last-child {
            display: flex;
            flex-direction: column;
          }
        }
      }

      .industry-start-card,
      .industry-end-card,
      .industry-middle-card {
        max-width: 500px;
        width: 100%;
      }

      .industry-card {
        height: 180px;
        width: 100%;
        margin-bottom: 5px;
      }

      .industry-label {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 1200px) and (min-width: 768px) {
      .card-two:hover .card-three {
        display: none;
      }
    }
  }

  .faq-section {
    .background-overlay {
      position: absolute;
      inset: 0;
      height: 100%;
      z-index: 0;
      background: radial-gradient(100.93% 101.93% at 50% 101.93%, rgba(34, 107, 233, 0.26) 0%, #ffffff 100%);
    }

    .accordion,
    .accordion-item {
      --bs-accordion-btn-focus-box-shadow: white;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
    }
    .accordion-button {
      font-weight: 600;
      background: white;
    }
  }

  @media (max-width: 767px) {
    .statistics-section .stat-item{
        margin-bottom: 20px;
    }
    .statistics-section .stat-item .stat-number{
        font-size: 25px;
    }
    .statistics-section {
        padding: 30px 0px 10px;
    }
    .our-clients-section .mb-5 {
        margin-bottom: 20px !important;
    }
    .our-clients-section figure.brand-logo {
        margin-bottom: 0;
    }
    .our-clients-section .brand-carousel {
        height: auto;
    }
    .home-cta-section .cta-title {
        margin-bottom: 20px;
    }
    .benefits-section{
        padding: 2rem 0;
    }
    .benefits-section .mb-5 {
        margin-bottom: 20px !important;
    }
    .tech-stack-supporting-section .mb-5 {
        margin-bottom: 20px !important;
    }
    .tech-stack-accordion{
      flex-wrap: wrap;
    }
    .tech-stack-accordion .tech-stack-tabs{
      width: 100%;
      max-height: initial;
      padding: 0px 0;
      overflow-y: hidden;
      overflow-x: scroll;
      display: flex;
      gap: 10px;
    }
    .tech-stack-accordion .tech-stack-btn{
      padding: 5px 15px;
      margin: 10px auto;
      border-radius: 5px;
      font-size: 15px;
    }
    .tech-stack-accordion-content{
      padding: 10px;
    }
    .tech-stack-accordion-content .grid{
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .technologies-we-use-section.py-5,.plans-section.py-5,
    .our-approach-section.py-5,.industry-solutions-section.py-5 {
        padding: 30px 0px !important;
    }
    .plans-section .section-description {
        margin-bottom: 0;
    }
    .plans-section .mb-4,.our-approach-section .mb-4 {
        margin-bottom: 15px !important;
    }
    .plans-section .approach-timeline ul {
        padding-left: 15px;
    }
    .plans-section .approach-timeline .step-card {
        min-height: auto;
    }
    .our-approach-section .approach-timeline .step-card {
        margin-bottom: 0;
    }
    .our-approach-section .approach-timeline {
        margin-top: 0;
    }
    .our-approach-section .section-description br,.industry-solutions-section .section-description br {
        display: none;
    }
    .why-choose-us-section .why-choose-us-row .approach-timeline{
      width: 100%;
      margin-left: 0;
      margin-top: -50px;
    }
    .why-choose-us-row{
      grid-template-columns: 1fr;
    }
    .why-choose-us-row .why-choose-us-col-left{
      padding: 30px 20px 30px 20px;
      border-top-right-radius: 30px;
    }
    .why-choose-us-section .why-choose-us-row .approach-timeline .approach-step .step-card{
      max-width: 100%;
    }
    .why-choose-us-section .why-choose-us-row .approach-timeline .approach-step .step-card .step-title p{
      font-size: 18px;
    }
    .why-choose-us-section{
      padding: 30px 0px !important;
    }
    .faq-section .accordion .accordion-item .accordion-header button.accordion-button {
        padding-left: 0;
        padding-right: 0;
    }
  }

}

