/* Hero section */
.hero-section {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: right 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(270deg, rgba(0, 0, 0, 0) 37.64%, #000000 100%);
  }

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

  .hero-title {
    font-size: var(--main-heading);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.868);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 500px;
  }

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

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

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

/* Trusted Partner Section */
.trusted-partner-section {
  background-color: #ffffff;
  padding: 80px 0;

  .trusted-content {
    padding-right: 2rem;
  }

  .trusted-badge {
    background-color: var(--theme-light-blue);
    border: 1px solid #e8ebff;
    border-radius: 25px;
    padding: clamp(0.3rem, 0.8vw, 0.4rem) clamp(0.4rem, 2vw, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    color: var(--theme-blue);
    font-weight: 500;
  }

  .trusted-badge i {
    width: 16px;
    height: 16px;
  }

  .trusted-title {
    font-size: var(--sub-heading);
    font-weight: 700;
    color: var(--theme-blue);
    line-height: 1.2;
  }

  .trusted-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .trusted-content {
      padding-right: 0;
      margin-bottom: 3rem;
    }

    .trusted-partner-section {
      padding: 60px 0;
    }
  }

  @media (max-width: 767.98px) {
    .trusted-partner-section {
      padding: 50px 0;
    }
  }

  @media (max-width: 575.98px) {
    .trusted-stats .col-6 {
      margin-bottom: 2rem;
    }
  }

  /* Stats Card Styling */
  .stat-card {
    position: relative;
    background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    border: 1.26px solid #e5e5e5;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

    .stat-icon-wrapper {
      position: relative;
      width: 45px;
      height: 45px;
      border-radius: 10px;
      background-color: var(--theme-blue);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
      z-index: 1;
    }

    .stat-icon {
      width: 20px;
      height: 20px;
      stroke-width: 2.5;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(2, 5, 155, 0.05), rgba(66, 66, 245, 0.05));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    &:hover {
      transform: translateY(-8px) scale(1.03);
      border-color: rgba(2, 86, 155, 0.2);
      .stat-icon-wrapper {
        transform: scale(1.15) rotate(-15deg);
        box-shadow: 0 8px 20px rgba(2, 86, 155, 0.5);
      }
    }
  }

  .stat-value {
    position: relative;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--theme-blue);
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
    z-index: 1;
  }

  .stat-card:hover .stat-value {
    transform: scale(1.1);
  }

  .stat-label {
    position: relative;
    font-size: 0.875rem;
    color: #6c757d;
    transition: color 0.3s ease;
    z-index: 1;
  }

  .stat-card:hover .stat-label {
    color: #495057;
  }

  .stat-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(75, 66, 245, 0.2), transparent);
    border-radius: 0 12px 0 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .stat-card:hover .stat-corner-accent {
    opacity: 1;
  }

  /* Responsive Authority Section */
  @media (max-width: 768px) {
    .authority-title {
      font-size: 1.75rem;
    }

    .authority-underline {
      max-width: 24rem;
    }

    .stat-card {
      padding: 10px;
    }

    .stat-value {
      font-size: 1.2rem;
    }
    .stat-label {
      font-size: x-small;
    }
  }
}

/* Enterprise Services Section */
.enterprise-services-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 5rem 0;

  .services-title {
    max-width: 900px;
    margin: auto;
    font-size: 2.25rem;
    font-weight: 700;
    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;
    border-radius: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 15px -3px #0000001a;
  }

  .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: 55px;
    height: 55px;
    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;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .service-description {
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  /* 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%);
  color: white;
  padding: 80px 0;

  .roi-cta-title {
    font-size: var(--sub-heading);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .roi-cta-button {
    background-color: #ffffff;
    color: var(--theme-blue);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

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