/* Hero section */

.hero-section {

  background-image: var(--hero-bg);

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  position: relative;

  padding: 1rem 0;

  &::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

   background: linear-gradient(90deg, #000000 0%, #000000de 50%, rgba(0, 0, 0, 0.5) 80%, rgb(0 0 0 / 46%) 100%);
    

  }

}


.hero-content {

  /* max-width: 50%; */

  /* margin: clamp(2rem, 10vw, 10rem) 0; */

  position: relative;

  z-index: 2;

}



.hero-title {

  font-size: 4rem;

  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 2rem;

}



.hero-subtitle {

  font-size: 2.5rem;

  font-weight: 600;

  color: #ffffff;

  margin-bottom: 2rem;

}



.hero-description {

  font-size: 1.1rem;

  color: #f5f5f5;

  line-height: 1.6;

  /* margin-bottom: 3rem; */

  /* max-width: 500px; */

}



.feature-badge {

  background-color: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50px;

  color: #ffffff;

  padding: 0.5rem 1rem;

  margin: 0.25rem;

  display: inline-block;

  font-size: 0.9rem;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;

  display: inline-flex;

  gap: 5px;

  align-items: center;
  

}



.feature-badge:hover {

  background-color: rgba(51, 102, 255, 0.2);

  border-color: rgba(51, 102, 255, 0.5);

}



/* ONLY RESPONSIVE MEDIA QUERIES FOR YOUR EXISTING STYLES */
@media (max-width: 768px) {
  .hero-section {
  background-position: right;
}
.hero-section::before {
        content: "";
        background: linear-gradient(90deg, #000000 0%, #000000 50%, rgba(0, 0, 0, 0.5) 80%, rgb(0 0 0) 100%);
    }
  }

/* Mobile phones (up to 575px) */

@media (max-width: 575.98px) {

  .hero-content {

    max-width: 100%;

    margin: auto;

    text-align: left;

  }



  .hero-title {

    font-size: 3rem;

  }



  .hero-subtitle {

    font-size: 1.4rem;

  }



  .hero-description {

    font-size: 16px;

    max-width: 100%;

  }



  .feature-badge {

    font-size:14px;

    padding: 0.35rem 0.7rem;

  }

}



/* Landscape phones (576px and up) */

@media (min-width: 576px) {

  .hero-content {

    /* max-width: 85%; */

  }



  .hero-title {

    font-size: 2.5rem;

  }



  .hero-subtitle {

    font-size: 1.8rem;

  }



  .hero-description {

    font-size: 1rem;

  }



  .feature-badge {

    font-size: 0.8rem;

  }

}



/* Tablets (768px and up) */

@media (min-width: 768px) {

  .hero-content {

    /* max-width: 70%; */

  }



  .hero-title {

    font-size: 3rem;

  }



  .hero-subtitle {

    font-size: 2.2rem;

  }



  .hero-description {

    font-size: 1.05rem;

  }



  .feature-badge {

    font-size: 0.85rem;

  }

}



/* Desktops (992px and up) */

@media (min-width: 992px) {

  .hero-content {

    /* max-width: 60%; */

  }



  .hero-title {

    font-size: 3.5rem;

  }



  .hero-subtitle {

    font-size: 2.3rem;

  }



  .hero-description {

    font-size: 1.08rem;

  }

}



/* Large desktops (1200px and up) - Back to your original values */

@media (min-width: 1200px) {

  .hero-content {

    /* max-width: 60%; */

  }



  .hero-title {

    font-size: 4rem;

  }



  .hero-subtitle {

    font-size: 2.5rem;

  }



  .hero-description {

    font-size: 1.1rem;

    /* max-width: 500px; */

  }



  .feature-badge {

    font-size: 0.9rem;

    padding: 0.5rem 1rem;

            margin: 0.45rem 0.45rem 0.45rem 0rem;
    

  }

}




/* Enterprise Services Section */

.enterprise-services-section {

  background-color: #ffffff;

  padding: 5rem 0;



  .services-title {

    max-width: 900px;

    margin: auto;

    font-size: 2.25rem;

    font-weight: 700;

    color: #2c3e50;

    line-height: 1.3;

    text-align: center;

  }



  .services-description {

    font-size: 1.1rem;

    color: #6c757d;

    line-height: 1.6;

    max-width: 1000px;

    text-align: center;

  }



  .service-card {

    background: #ffffff;

    border: 1.5px solid #0400FF !important;

    border-radius: 12px !important;

    transition: all 0.3s ease;

    height: 100%;

    display: flex;

    flex-direction: column;

  }



  .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;

    border: .5px solid #0400FF;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1rem;

  }



  .icon-blue {

    color: #0400ff;

    width: 24px;

    height: 24px;

  }



  .service-title {

    font-size: 1.25rem;

    font-weight: 600;

    color: #2c3e50;

    margin-bottom: 1rem;

    line-height: 1.4;

  }



  .service-description {

    font-size: 0.95rem;

    color: #6c757d;

    line-height: 1.6;

    /* flex-grow: 1; */

  }

ul.service-features-list li {
    color: #7f757d;
}



  /* Services Section Responsive */

  @media (max-width: 991.98px) {

    .enterprise-services-section {

      padding: 3rem 0;

    }



    .services-title {

      font-size: 1.8rem;

    }



    .services-description {

      font-size: 0.95rem;

    }

  }
  

  @media (max-width: 767.98px) {

    .enterprise-services-section {

      padding: 2rem 0;

    }



    .services-title {

      font-size: 1.6rem;

    }



    .service-card {

      margin-bottom: 1rem;

    }



    .service-title {

      font-size: 1.1rem;

    }



    .service-description {

      font-size: 0.9rem;

    }

  }



  @media (max-width: 575.98px) {

    .services-title {

      font-size: 1.4rem;

    }



    .services-description {

      font-size: 0.85rem;

    }



    .service-card {

      padding: 1.5rem !important;

    }

  }

}



/* ROI Hurdles CTA Section */

.roi-cta-section {

  background: linear-gradient(180deg, #0400ff 0%, #0300d1 100%);

  padding: 60px 0;



  .roi-cta-title {

    font-size: var(--sub-heading);

    font-weight: 600;

    color: #ffffff;

    margin-bottom: 2.5rem;

    line-height: 1.2;

  }



  .roi-cta-button {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 19px;
        border-radius: 12px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        border: 1px solid #ffffff;

  }



  .roi-cta-button:hover {

    background-color: transparent;

    color: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  }



  .roi-cta-button i {

    width: 20px;

    height: 20px;

    transition: transform 0.3s ease;

  }



  .roi-cta-button:hover i {

    transform: translateX(5px);

  }



  /* Responsive Design for ROI CTA */

  @media (max-width: 991.98px) {

    .roi-cta-section {

      padding: 60px 0;

    }

  }



  @media (max-width: 767.98px) {

    .roi-cta-section {

      padding: 50px 0;

    }



    .roi-cta-content {

      padding: 0 1rem;

    }



    .roi-cta-button {

      font-size: 1rem;

      padding: 12px 28px;

    }

  }



  @media (max-width: 575.98px) {

    .roi-cta-button {

      padding: 12px 24px;

      gap: 8px;

    }

  }

}



/* ===================================

   WhyChooseUs Section

   =================================== */

#why-hire-developer {

  background: linear-gradient(180deg, #e3f2fd 0%, #f0f7ff 50%, #ffffff 100%);



  .why-content {

    h2 {

      font-size: var(--sub-heading);

      color: var(--theme-blue);

      font-weight: 700;

    }

  }



  .why-benefit-item {

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    cursor: pointer;

    h3 {

      font-size: clamp(1rem, 1.5vw, 1.2rem);

    }

    p {

      margin-bottom: 0;

      font-size: var(--card-para);

    }

  }



  .why-check-icon {

    width: 24px;

    height: 24px;

    color: white;

    background: linear-gradient(180deg, #02569b 0%, #42a5f5 100%);

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  }



  .why-benefit-item:hover {

    border: 1px solid var(--theme-blue);

    transform: translateX(8px);

    background-color: var(--theme-light-blue);

    transition: all 0.3s ease-in-out;

    h3 {

      color: var(--theme-blue);

    }

    p {

      color: rgba(5, 5, 5, 0.646);

    }

    .why-check-icon {

      transform: scale(1.2);

    }

    .why-image-container {

      border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;

      aspect-ratio: 4/5;

    }

  }



  .bg-gradient-secondary {

    background: linear-gradient(135deg, #00bcd4, #0097a7);

  }



  /* Responsive adjustments */

  @media (max-width: 991px) {

    #why-choose-us {

      padding: 3rem 0;

    }



    .why-image-container {

      aspect-ratio: 3/4;

    }

  }



  @media (max-width: 767px) {

    #why-choose-us {

      padding: 2rem 0;

    }



    .why-image-container {

      aspect-ratio: 1/1;

    }

    .why-benefit-item {

      padding: 10px !important;

    }

  }

}



/* AI Model Capabilities Section */

.ai-capabilities-section {

  background: linear-gradient(180deg, #0400ff 0%, #0300cc 100%);

  padding: 5rem 0;



  .capabilities-title {

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 2rem;

  }



  .capabilities-description {

    font-size: var(--description-para);

    max-width: 910px;

  }



  .model-types-list {

    border-left: 1.8px solid rgba(255, 255, 255, 0.258);

  }



  .model-type-item {

    position: relative;

    cursor: pointer;

    transition: all 0.3s ease;

    padding: 10px 0;

    padding-left: 10px;

  }



  .model-type-item.active {

    padding-left: 15px;

    transition: all 0.3s ease-in-out;

    position: relative;

    &::before {

      content: "";

      position: absolute;

      left: -3px;

      width: 5px;

      height: 4.5rem;

      border-radius: 10px;

      background-color: white;

    }

  }



  .model-type-item.active .model-type-title {

    color: #ffffff !important;

    font-weight: 700;

  }



  .model-type-title {

    font-size: 1.3rem;

    font-weight: 600;

    line-height: 1.4;

    margin-left: 1.5rem !important;

    transition: all 0.3s ease;

  }



  .capabilities-content {

    padding-left: 2rem;

  }



  /* Tab Content Styles */

  .tab-content-item {

    border-radius: 15px;

    overflow: hidden;

    display: none;

    opacity: 0;

    transition: opacity 0.3s ease;

  }



  .tab-content-item.active {

    display: flex;

    flex-direction: column;

    opacity: 1;

    animation: fadeInUp 0.5s ease;

  }



  .capabilities-image-container {

    position: relative;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  }



  .capabilities-main-img {

    width: 100%;

    height: 300px;

    object-fit: cover;

  }



  .capabilities-description-card {

    background: #ffffff;

    padding: 1rem 2rem;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    position: relative;

    min-height: 120px;

    z-index: 2;

    > :first-child {

      margin-bottom: 10px;

    }

  }



  .capabilities-card-text {

    font-size: clamp(0.8rem, 1.8vw, 1rem);

    font-weight: 500;

    color: black;

    margin: 0;

  }



  /* AI Capabilities Section Responsive */

  @media (max-width: 991.98px) {

    .ai-capabilities-section {

      padding: 3rem 0;

    }



    .capabilities-title {

      font-size: 1.8rem;

    }



    .capabilities-content {

      padding-left: 0;

      margin-top: 3rem;

    }



    .model-types-list {

      display: flex;

      overflow: auto;

      gap: 1rem;

      border: 2px solid #ffffff2e;

      align-items: center;

      padding: 5px 10px;

      border-radius: 5px;

    }

    .model-type-item {

      min-width: fit-content;

      padding: 10px;

      margin-bottom: 0 !important;

      &:hover {

        transform: translateX(0);

      }

    }



    .model-type-item.active {

      padding-left: 10px;

      margin-left: 0;

      background-color: rgba(255, 255, 255, 0.231);

      border-radius: 5px;

      &::before {

        display: none;

      }

    }



    .model-type-title {

      font-size: 1.1rem;

      margin-left: 10px !important;

    }

  }



  @media (max-width: 767.98px) {

    .ai-capabilities-section {

      padding: 2rem 0;

    }



    .capabilities-title {

      font-size: 1.6rem;

    }



    .model-types-list {

      padding-left: 0.5rem;

    }



    .model-type-title {

      font-size: 1rem;

      margin-left: 1rem !important;

    }



    .model-line {

      width: 3px;

      height: 30px;

    }



    .capabilities-description-card {

      padding: 1.5rem;

      transform: translateY(0);

    }



    .capabilities-image-container,

    .capabilities-main-img {

      height: 220px;

    }



    .tab-content-item {

      max-width: 450px;

      margin: auto;

    }

  }



  @media (max-width: 575.98px) {

    .capabilities-title {

      font-size: 1.4rem;

    }



    .model-type-title {

      font-size: 0.95rem;

    }

    .capabilities-image-container,

    .capabilities-main-img {

      height: 160px;

    }



    .capabilities-description-card {

      padding: 1rem;

    }

  }

}



/* Transform Enterprise Section */

.transform-enterprise-section {

  background-color: #f8f9fa;

  padding: 5rem 0;



  .section-title {

    font-size: 36px;

    font-weight: 700;

    color: #2c3e50;

    line-height: 1.2;

    margin-bottom: 2rem;

  }



  .content-paragraphs p {
        max-width: 85%;
        font-weight: 400;
        font-size: clamp(0.9rem, 1.8vw, 1.05rem);
        color: #6c757d;
        line-height: 1.6;
    }



  .images-container {

    height: 400px;

    display: flex;

    justify-content: center;

    align-items: center;

  }



  .main-image {

    position: relative;

    z-index: 2;

  }



  .main-desktop-img {

    max-width: 400px;

    object-fit: cover;

    border-radius: 15px !important;

  }



  .overlay-image {

    bottom: 10%;

    left: -20%;

    z-index: 3;

    width: 60%;

  }



  .overlay-tech-img {

    max-width: 400px;

    width: 100%;

    height: 200px;

    object-fit: cover;

    border-radius: 15px !important;

  }



  /* Transform Section Responsive */

  @media (max-width: 991.98px) {

    .transform-enterprise-section {

      padding: 3rem 0;

    }



    .section-title {

      font-size: 2rem;

    }



    .images-container {

      margin-top: 3rem;

      height: auto;

    }



    .overlay-image {

      bottom: 10%;

      left: -5%;

      z-index: 3;

      width: 60%;

    }



    .content-paragraphs p {

      max-width: 100%;

    }

  }



  @media (max-width: 575.98px) {

    .images-container {

      flex-direction: column;

    }



    .transform-enterprise-section {

      padding: 2rem 0;

    }



    .section-title {

      font-size: 1.8rem;

    }



    .content-paragraphs p {

      max-width: 100%;

      font-size: 0.95rem;

    }

    .main-desktop-img {

      width: 100%;

    }



    .overlay-image {

      position: relative !important;

      left: 0;

      margin-top: 1rem;

      width: 100%;

      display: flex;

      justify-content: center;

      align-items: center;

    }

  }

}



/* Gen Ai Integration Progress Section */

.gen-ai-integration-process-section {

  background: linear-gradient(180deg, #0400ff 0%, #0300cc 100%);

  padding: 5rem 0;



  .trust-title {

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 2rem;

  }



  .trust-description {

    font-size: 1.1rem;

    line-height: 1.6;

    max-width: 800px;

    margin-bottom: 3rem;

    opacity: 0.9;

  }



  .trust-card {

    background: #ffffff5c;

    border: 0.8px solid #ffffff33;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

    cursor: pointer;

    min-height: 280px;

    margin: auto;

    position: relative;

    max-width: calc(100% - 5%);

    &:hover {

      transform: translateY(-8px);

      transition: transform 0.3s ease-in-out;

    }



    > .arrow-icon {

      width: 30px;

      height: 30px;

      color: white;

      position: absolute;

      top: 50%;

      right: -12%;

    }

  }



  .trust-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(180deg, #0400ff 0%, #0300d1 100%);

    color: white;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

  }



  .trust-icon .icon-blue {

    width: 28px;

    height: 28px;

  }



  .trust-card-title {

    font-size: clamp(1rem, 2vw, 1.2rem);

    font-weight: 700;

    color: white;

    margin-bottom: 1rem;

    line-height: 1.4;

    > strong {

      display: block;

      font-size: medium;

      color: #ffffffb2;

    }

  }



  .trust-card-description {

    font-size: var(--card-para);

    color: white;

    line-height: 1.6;

    margin-bottom: 0;

  }



  /* Global Trust Section Responsive */

  @media (max-width: 992px) {

    .global-trust-section {

      padding: 3rem 0;

    }



    .trust-title {

      font-size: 1.8rem;

    }



    .trust-description {

      font-size: 1rem;

    }



    .trust-card {

      min-height: 250px;

      margin-bottom: 1.5rem;

    }

  }



  @media (max-width: 767.98px) {

    .global-trust-section {

      padding: 2rem 0;

    }



    .trust-title {

      font-size: 1.6rem;

    }



    .trust-description {

      font-size: 0.95rem;

    }



    .trust-card {

      min-height: 220px;

      margin-bottom: 1rem;

      > .arrow-icon {

        display: none;

      }

    }



    .trust-icon {

      width: 50px;

      height: 50px;

      margin-bottom: 1rem;

    }



    .trust-icon .icon-blue {

      width: 24px;

      height: 24px;

    }

  }



  @media (max-width: 1200px) and (min-width: 992px) {

    /* Add your styles for screens between 992px and 1200px here */

    .global-trust-section .container > :last-child {

      div {

        width: 50%;

        .trust-card {

          width: 85%;

          margin: auto;

          .trust-icon {

            width: 50px;

          }

        }

      }

    }

  }

}



/* AI Models Expertise Section Styles */

.tech-stack-supporting-section {

  background: #f5f5f5;



  position: relative;



  .ai-models-main-title {

    font-size: var(--sub-heading);

    font-weight: 700;

    text-align: center;

  }



  .ai-models-main-description {

    font-size: var(--description-para);

    max-width: 900px;

    margin: auto;

  }



  .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: clamp(1rem, 2vw, 1.2rem);

    font-weight: 600;

    margin: 0;

  }



  /* 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 {

    background: #f9f9f9;

    color: #333;

    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;

    border: 1.26px solid #e8e8e8;

    display: flex;

    gap: 10px;

    align-items: center;

  }



  .ai-model-tag:hover {

    background: rgba(255, 255, 255, 0.811);

    transform: translateY(-2px);

    color: var(--theme-blue);

  }



  .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;

  }



  /* Responsive Design for AI Models Section */



  @media (max-width: 768px) {

    .ai-models-main-title {

      font-size: clamp(1.8rem, 5vw, 2.5rem);

    }

  }



  @media (max-width: 576px) {

    .ai-models-row {

      grid-template-columns: 1fr;

    }



    .ai-models-grid-center .ai-model-tag {

      max-width: none;

    }

  }

}



/* Industry Solutions Section */

.industry-solutions-section {

  background: #f8f9fa;

  padding: 5rem 0;



  .industry-card-container {

    display: flex;

    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-title {

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.3;

    color: #1a1a1a;

    margin-bottom: 2rem;

  }



  .industry-description {

    font-size: 1.1rem;

    line-height: 1.6;

    color: #666;

    margin-bottom: 2rem;

  }



  .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);

    .industry-image {

      transform: scale(1.1);

      transition: transform 0.3s ease-in-out;

    }

  }



  .industry-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

  }



  .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-title {

      font-size: 1.6rem;

    }



    .industry-description {

      font-size: 0.95rem;

    }



    .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;

    }

  }

}



/* Client Testimonials Section */

.client-testimonials-section {

  background: #f5f5f5;

  padding: 5rem 0;



  .testimonials-title {

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.3;

    color: #1a1a1a;

    margin-bottom: 3rem;

    max-width: 800px;

    margin-left: auto;

    margin-right: auto;

  }



  .carousel-inner {

    background: #f2f2f2;

    box-shadow: 0px 0px 4px 0px #00000040;

    border-radius: 42px;

  }



  .testimonial-card {

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    margin: 5px 2rem;

  }



  .client-photo {

    width: 10%;

    height: 100%;

    object-fit: cover;

  }



  .testimonial-content {

    max-width: 800px;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;

    margin: 0 auto;

  }



  .testimonial-text {

    font-size: 1.1rem;

    line-height: 1.7;

    color: #333;

    font-style: italic;

    margin-bottom: 0;

  }



  .quote-icon {

    font-size: 2rem;

  }



  .quote-icon i {

    width: 40px;

    height: 40px;

    color: #3366ff;

  }



  .client-name {

    font-size: 1.3rem;

    font-weight: 700;

    color: #1a1a1a;

    margin-bottom: 0.5rem;

  }



  .client-position {

    font-size: 1rem;

    color: #6c757d;

    margin-bottom: 0;

  }



  /* Carousel Indicators */

  .carousel-indicators {

    position: absolute;

    bottom: 10px;

  }



  .carousel-indicators [data-bs-target] {

    width: 4rem;

    height: 5px;

    border-radius: 5px;

    border: none;

    background-color: #dee2e6;

    margin: 0 6px;

    transition: all 0.3s ease;

  }



  .carousel-indicators .active {

    background-color: var(--theme-blue);

    transform: scale(1.2);

  }



  /* Carousel Controls - Hidden for cleaner look */

  .carousel-control-prev,

  .carousel-control-next {

    display: none;

  }



  /* Testimonials Section Responsive */

  @media (max-width: 991.98px) {

    .client-testimonials-section {

      padding: 3rem 0;

    }



    .testimonials-title {

      font-size: 1.8rem;

    }



    .testimonial-card {

      min-height: 450px;

      margin: 0 1rem;

    }



    .testimonial-text {

      font-size: 1rem;

    }



    .client-name {

      font-size: 1.2rem;

    }

  }



  @media (max-width: 767.98px) {

    .client-testimonials-section {

      padding: 2rem 0;

    }



    .testimonials-title {

      font-size: 1.6rem;

    }



    .testimonial-card {

      min-height: 400px;

      margin: 0 0.5rem;

      padding: 2rem 0.8rem;

    }



    .testimonial-text {

      font-size: 0.95rem;

    }



    .client-name {

      font-size: 1.1rem;

    }



    .client-position {

      font-size: 0.9rem;

    }



    .quote-icon {

      font-size: 1.5rem;

    }



    .quote-icon i {

      width: 30px;

      height: 30px;

    }



    .carousel-inner {

      background: #f2f2f2;

      box-shadow: 0px 0px 4px 0px #00000040;

      border-radius: 12px;

    }

    .testimonial-content {

      -webkit-line-clamp: 8;

    }

  }

}



/* Industry Expertise Section Styles */

.industry-expertise-section {

  background-color: #fff;

  position: relative;



  .industry-main-title {

    font-size: var(--sub-heading);

    font-weight: 700;

    color: #333;

    text-align: center;

  }



  .industry-main-description {

    font-size: var(--description-para);

    color: #6c757d;

    line-height: 1.6;

    flex-grow: 1;

    max-width: 900px;

  }



  .industry-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    border: 1px solid #f0f0f0;

    transition: all 0.3s ease;

    position: relative;

  }



  .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: 200px;

    overflow: hidden;

    position: relative;

    &::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) 100%);

    }

  }



  .industry-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

  }



  .industry-content {

        position: relative;
        padding: 16px 30px;

  }



  .industry-title {

    position: absolute;

    top: -2.25rem;

    font-size: var(--text-subheading);

    font-weight: 700;

    color: white;

    z-index: 1;

  }



  .industry-features {

    min-height: 60px;

    margin-bottom: 0;

    position: relative;

    font-size: var(--card-para);

    font-weight: 500;

    line-height: 1.6;

    transition: all 0.3s ease;

  }



  /* Add subtle animation on scroll */

  .industry-card {

    opacity: 1;

    transform: translateY(0);

  }



  /* Responsive Design for Industry Section */

  @media (max-width: 992px) {

    .industry-image {

      height: 180px;

    }

  }



  @media (max-width: 768px) {

    .industry-image {

      height: 160px;

    }

  }



  @media (max-width: 576px) {

    .industry-image {

      height: 140px;

    }

  }

}





/* Global Leaders Trust Section */

.global-trust-section {

  background: linear-gradient(180deg, #0400ff 0%, #0300cc 100%);

  padding: 5rem 0;



  .trust-title {

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 2rem;

  }



  .trust-description {

    font-size: 1.1rem;

    line-height: 1.6;

    max-width: 800px;

    margin-bottom: 3rem;

    opacity: 0.9;

  }



  .trust-card {

    background: #ffffff1a !important;

    border: 0.8px solid #ffffff33 !important;

    border-radius: 12px !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
 
    min-height: 280px;

  }



  .trust-icon {

    width: 50px;

    height: 50px;

    background: white;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

  }



  .trust-icon .icon-blue {

    color: var(--theme-blue);

    width: 28px;

    height: 28px;

  }



  .trust-card-title {

    font-size: clamp(1rem, 2vw, 1.2rem);

    font-weight: 700;

    color: white;

    margin-bottom: 1rem;

    line-height: 1.4;

  }



  .trust-card-description {

    font-size: clamp(0.9rem, 1.8vw, 1.05rem);

    color: white;

    line-height: 1.6;

    margin-bottom: 0;

  }



  /* Global Trust Section Responsive */

  @media (max-width: 992px) {

    .global-trust-section {

      padding: 3rem 0;

    }



    .trust-title {

      font-size: 1.8rem;

    }



    .trust-description {

      font-size: 1rem;

    }



    .trust-card {

      min-height: 250px;

      margin-bottom: 1.5rem;

    }

  }



  @media (max-width: 767.98px) {

    .global-trust-section {

      padding: 2rem 0;

    }



    .trust-title {

      font-size: 1.6rem;

    }



    .trust-description {

      font-size: 0.95rem;

    }



    .trust-card {

      min-height: 220px;

      margin-bottom: 1rem;

    }



    .trust-card-description {

      font-size: 0.9rem;

    }



    .trust-icon {

      width: 50px;

      height: 50px;

      margin-bottom: 1rem;

    }



    .trust-icon .icon-blue {

      width: 24px;

      height: 24px;

    }

  }



  @media (max-width: 1200px) and (min-width: 992px) {

    /* Add your styles for screens between 992px and 1200px here */

    .global-trust-section .container > :last-child {

      div {

        width: 50%;

        .trust-card {

          width: 85%;

          margin: auto;

          .trust-icon {

            width: 50px;

          }

        }

      }

    }

  }

}


          /* Tech Stack Section Styles */
.tech-stack-section {
  background: linear-gradient(180deg, rgba(4, 0, 255, 0.1) 0%, rgba(3, 0, 204, 0.1) 100%);
  position: relative;
  overflow: hidden;
}
  .tech-stack-main-title {
    font-size: var(--sub-heading);
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  /* Navigation Sidebar */
  .tech-stack-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.146);
    overflow: hidden;
  }

  .tech-nav-item {
    padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .tech-nav-item:last-child {
    margin-bottom: 0;
  }

  .tech-nav-item.active {
    border-bottom: 2px solid var(--theme-blue);
    color: var(--theme-blue);
  }

  .tech-nav-item:hover:not(.active) {
    background: var(--theme-light-blue);
    color: var(--theme-blue);
    padding-left: clamp(1.3rem, 2.8vw, 1.6rem);
  }

  .tech-nav-title {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    position: relative;
    z-index: 1;
  }

  /* Content Area */
  .tech-stack-content {
    padding: clamp(1rem, 3vw, 3rem);
    min-height: 230px;
  }

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

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

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Tech Logos Grid */
  .tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
    justify-items: center;
  }

  .tech-logo-item {
    background: #ffffff1a;
    border-radius: 8px;
    padding: clamp(0.5rem, 0vw, 0rem);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .tech-logo-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--theme-light-blue) 0%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .tech-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 0, 255, 0.15);
    border: 1px solid var(--theme-orange);
  }

  .tech-logo-item:hover::before {
    opacity: 1;
  }

  .tech-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .tech-logo-item:hover .tech-logo {
    transform: scale(1.05);
  }

  /* Responsive Design for Tech Stack Section */
  @media (max-width: 992px) {
    .tech-nav-item {
      flex: 1;
      margin-bottom: 0;
    }

    .tech-nav-item.active {
      transform: translateY(-2px);
    }

    .tech-nav-item:hover:not(.active) {
      transform: translateY(-1px);
    }
  }

  @media (max-width: 768px) {
    .tech-logos-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .tech-stack-nav {
      display: flex;
      overflow-x: auto;
      border-radius: 5px;
      gap: 0.5rem;
    }


        /* Scrollbar height */
        .tech-stack-nav::-webkit-scrollbar {
            height: 4px;
        }

        /* Track (background) */
        .tech-stack-nav::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        /* Scroll thumb (the moving progress bar) */
        .tech-stack-nav::-webkit-scrollbar-thumb {
            background: var(--theme-blue);
            border-radius: 10px;
        }

         
    .tech-nav-item {
      flex: content;
      text-align: center;
    }

    .tech-logo-item {
      min-height: 100px;
    }

    .tech-logo {
      height: 50px;
    }

    .tech-stack-main-title {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
  }

  @media (max-width: 576px) {
    .tech-nav-item {
      flex: none;
    }
    .tech-logos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
@media (max-width: 400px) {
.top-header-content {
    display: block;
  }
 
.hero-section{
    height: auto;
}
}

   @media (max-width: 575.98px) {
         .cta-section h2 , .process-title h2 , .cta-section-whitebg .cta-title {
            font-size: 1.4rem;
        }
    }

 
    @media (max-width: 767.98px) {
        .cta-section h2 , .process-title h2 , .cta-section-whitebg .cta-title {
            font-size: 1.6rem;
        }
    }


    @media (max-width: 991.98px) {
         .cta-section h2 , .process-title h2 , .cta-section-whitebg .cta-title {
            font-size: 1.8rem;
        }
    }

/* Form Section Styles */
/* Two-column form fields for desktop/tablet */
/* .form-section .form-row {
    display: flex;
    gap: 1rem;
} */
.form-section .form-col {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.form-section .form-col > * {
    width: 100%;
}
@media (max-width: 991px) {
    .form-section .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.form-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.12);
    padding: 1.5rem 1rem 0rem 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.form-section h3, .form-section h2 {
    color: #020202bf;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 24px;
}
.form-section form {
    width: 100%;
}
.form-section  label {
    display: none;
}
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea {
    width: 100%;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #dbeafe;
    
    background: #f8faff;
    transition: border 0.2s;
}
.form-section input:focus,
.form-section textarea:focus {
    border-color: var(--theme-blue, #1a1aff);
    outline: none;
}
.form-section .wpcf7-submit,
.form-section button[type="submit"] {
    background: linear-gradient(90deg, #1a1aff 0%, #3735e3 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    /* font-size: 1.1rem; */
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.form-section .wpcf7-submit:hover,
.form-section button[type="submit"]:hover {
    background: linear-gradient(90deg, #3735e3 0%, #1a1aff 100%);
    box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.13);
}
.form-section .wpcf7-response-output {
    margin-top: 1rem;
    text-align: center;
}
textarea#message {
    height: 80px;
}

@media (max-width: 991px) {
    .form-section {
        margin-top: 2.5rem;
        max-width: 100%;
        padding: 2rem 1rem;
    }
      .form-section .form-row {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 767px) {
    .form-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-radius: 14px;
        box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.10);
        padding: 1.5rem 0.5rem;
    }
}
@media (max-width: 575px) {
    .form-section {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 10px;
        padding: 1rem 0.2rem;
    }
}
