.hero-section {

  height: 580px;


  background-image: url('/wp-content/uploads/2026/02/generaiveai-image.webp');
  /* 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: 0.0rem;

}



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

  }

}



/* Transform Enterprise Section */

.transform-enterprise-section {

  background-color: #f8f9fa;

  padding: 5rem 0;

}



.section-subtitle {

  font-size: clamp(1.1rem, 2.5vw, 1.5rem);

  font-weight: 600;

  color: var(--theme-blue);

  margin-bottom: 1rem;

}



.section-title {

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

  font-weight: 700;

  color: #2c3e50;

  line-height: 1.2;

  margin-bottom: 2rem;

}



.content-paragraphs p {

      max-width: 85%;
    font-weight: 400;
    font-size: 18px;
    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;

  }



  .section-subtitle {

    font-size: 1rem;

  }



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

  }

}



/* 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: 1px solid #e9ecef !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;

    background: var(--theme-blue);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1rem;

  }



  .icon-blue {

    color: #ffffff;

    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;

    }

  }

}


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

  }



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

    min-height: 120px;

    padding: 1rem 2rem;

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

    position: relative;

    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;

    }

  }

}



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

      display: none;

      color: white;

      backdrop-filter: blur(40px);

      padding: 10px;

      > p {

        margin-bottom: 5px;

      }

      > :nth-child(2) {

        font-size: clamp(10px, 1vw, 0.7rem);

      }

      > a {

        font-size: small;

        color: white;

        cursor: pointer;

        &:hover {

          text-decoration: underline;

          padding-left: 10px;

          transition: padding-left 0.3s ease-in-out;

        }

      }

    }

  }



  .industry-card:hover {

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

    .industry-label {

      opacity: 0;

    }

    .industry-card-description {

      display: block;

      position: absolute;

      bottom: 0;

      transition: display 0.3s ease-in-out;

      animation: fadeInUp 0.5s ease;

    }

  }



  .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-card-description {

      max-height: calc(100% - 20%);

      overflow-y: auto;

      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;

    }

  }

}



/* AI Models Showcase Section */

.ai-models-showcase-section {

  background: #f8f9fa;

  padding: 5rem 0;

}



.models-title {

  font-size: 2.25rem;

  font-weight: 700;

  line-height: 1.3;

  color: #1a1a1a;

  margin-bottom: 3rem;

}



.model-card {

  position: relative;

  background: #ffffff;

  border: 1px solid #e9ecef;

  border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;

  cursor: pointer;

  height: 260px;

  padding: 2rem 1.5rem;

  flex-direction: column;

  .model-card-content {

    display: none;

  }

}



.model-card:hover {

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

  border-color: #3366ff;



  .model-icon,

  .model-icon > img {

    transform: translateX(-18%) translateY(-40%) scale(0.9);

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

  }

  .model-card-content {

    display: flex;

    justify-content: center;

    align-items: end;

    position: absolute;

    inset: 0;

    text-align: center;

    padding: 3rem 2rem;

    font-size: small;

    font-weight: 500;

    transition: display ease-in-out;

  }

}



.model-icon {

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 100%;

  max-width: 220px;

  max-height: 150px;

}



.model-logo {

  width: 100%;

  height: auto;

  max-width: 220px;

  max-height: 150px;

  object-fit: contain;

  border-radius: 8px;

  transition: transform 0.3s ease;

}



.model-name {

  font-size: 1.5rem;

  font-weight: 600;

  color: #1a1a1a;

  margin: 0 !important;

}



.model-name .text-primary {

  color: #3366ff !important;

}



/* AI Models Responsive */

@media (max-width: 991.98px) {

  .ai-models-showcase-section {

    padding: 3rem 0;

  }



  .models-title {

    font-size: 1.8rem;

  }



  .model-card {

    padding: 1.5rem 1rem !important;

  }



  .model-name {

    font-size: 1.3rem;

  }



  .model-icon {

    max-width: 180px;

    max-height: 100px;

  }



  .model-logo {

    max-width: 180px;

    max-height: 100px;

  }

  .model-card:hover {

    .model-icon,

    .model-icon > img {

      transform: translateX(-20%) translateY(-55%) scale(0.9);

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

    }

  }

}



@media (max-width: 767.98px) {

  .ai-models-showcase-section {

    padding: 2rem 0;

  }



  .models-title {

    font-size: 1.6rem;

  }



  .model-name {

    font-size: 1.2rem;

  }

}



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

  .model-card:hover {

    .model-icon,

    .model-icon > img {

      transform: translateX(-10%) translateY(-35%) scale(0.9);

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

    }

  }

  .model-card-content {

    padding: 1.5rem 1rem !important;

  }

}



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

          }

        }

      }

    }

  }

}



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

    width: 120px;

    height: 120px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 50%;

  }



  .client-photo {

    width: 100%;

    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;

    }



    .client-photo-container {

      width: 100px;

      height: 100px;

    }



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

    }



    .client-photo-container {

      width: 80px;

      height: 80px;

    }



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

    }

  }

}

.trusted-brands-section {
    position: relative;
    padding: 60px 0;
}

.trusted-brands-section h2 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    user-select: auto;
    color: #0400ff;
}

.brand-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    max-height: 60px;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .brand-logo {
        max-height: 40px !important;
    }
    
    .trusted-brands-section {
        padding: 40px 0;
    }
}

.stats-section {
      background-color: #f8f9fa;
    width: 90%;
    margin: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 50px;
}
 
.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-divider {
    width: 80px;
    height: 3px;
    background-color: #333;
}

.stat-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.btn-consultation {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-consultation:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-consultation i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-consultation:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-description {
        font-size: 0.95rem;
    }
    
    .stat-divider {
        width: 60px;
    }
    
    .btn-consultation {
        padding: 12px 30px;
        font-size: 1rem;
    }
}