/* Hero section */
.hero-section {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 2rem 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: 50%;
    margin: clamp(2rem, 4vw, 6rem) 0;
    position: relative;
    z-index: 2;
  }

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

  .hero-description {
    font-size: 1.1rem;
    color: #b8b8b8;
    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: white;
    padding: 0.4rem 1rem;
    margin: 0.25rem;
    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);
  }

  @media (max-width: 992px) {
    .hero-content {
      max-width: 80%;
    }
    .feature-badge {
      font-size: 0.85rem;
    }
  }

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

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

    .feature-badge {
      font-size: 0.75rem;
      padding: 0.35rem 0.7rem;
    }
  }
}

/* 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: black;
    line-height: 1.2;
  }

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

  .trusted-image {
    text-align: center;
  }

  .trusted-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }

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

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

  .section-badge {
    background-image: var(--theme-light-orange);
    color: var(--theme-orange);
    border-color: var(--theme-orange);
  }

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

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

  .icon-blue {
    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;
  }

  .core-need-container {
    background: linear-gradient(90deg, #fef2f2 0%, #fff7ed 50%, #fefce8 100%);
    border: 1.26px solid #ffe2e2;
    border-radius: 0.5rem;
    padding: clamp(1rem, 3.5vw, 2.5rem);
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
  }

  .core-need-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ea1a1a;
    border-radius: 50%;
    color: white;
  }

  .core-need-icon i {
    width: 50%;
    height: 50%;
    stroke-width: 2;
  }

  .core-need-title {
    font-size: var(--text-subheading);
    font-weight: 600;
    color: #1a1a1a;
  }

  .core-need-description {
    font-size: var(--card-para);
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
  }

  .highlight-blue {
    color: var(--theme-blue);
    font-weight: 500;
  }

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

/* Implementation Section */
.implementation-section {
  background: var(--theme-blue);
  padding: clamp(3rem, 6vw, 5rem) 0;

  .main-title {
    font-size: var(--main-sub-heading);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: var(--text-subheading);
    color: white;
    max-width: min(800px, 90%);
    margin: 0 auto;
    line-height: 1.6;
  }

  .implementation-card {
    background-color: #cdccfd;
    border-radius: clamp(12px, 2vw, 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2vw, 3rem);
  }

  .implementation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.2rem);
  }

  .icon-wrapper {
    background: var(--theme-blue);
    color: white;
    border-radius: clamp(8px, 1.5vw, 12px);
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .icon-wrapper i {
    width: clamp(24px, 4vw, 32px);
    height: clamp(24px, 4vw, 32px);
    stroke-width: 2;
  }

  .card-title {
    font-size: var(--text-subheading);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
  }

  .points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1.1rem);
  }

  .point-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.6rem, 1.5vw, 1rem);
    font-size: var(--card-para);
    color: #4a4a4a;
    line-height: 1.6;
  }

  .point-check-icon {
    width: clamp(18px, 3vw, 24px);
    height: clamp(18px, 3vw, 24px);
    color: var(--theme-blue);
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 2;
  }
}

/* Results Section */
.impact-section,
.outcomes-section,
.global-results-section {
  background: white;
  padding: 5rem 0;

  .outcomes-title,
  .result-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
  }

  .result-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 3rem;
    opacity: 0.9;
  }

  .impact-card,
  .outcomes-card,
  .result-card {
    position: relative;
    background: #ffffff1a;
    box-shadow: 0px 1px 3px 0px #0000001a;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
    &:hover {
      transform: translateY(-5px);
    }
  }

  .result-badge {
    background-color: var(--theme-blue);
    font-size: var(--card-para);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    position: absolute;
    top: -15px;
    left: 15px;
  }

  .impact-card-title,
  .outcomes-card-title,
  .result-card-title {
    font-size: var(--description-para);
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .impact-card-description,
  .outcomes-card-description,
  .result-card-description {
    font-size: var(--card-para);
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Global Trust Section Responsive */
  @media (max-width: 992px) {
    padding: 3rem 0;

    .impact-title,
    .outcomes-title,
    .result-title {
      font-size: 1.8rem;
    }

    .result-description {
      font-size: 1rem;
    }

    .impact-card,
    .outcomes-card,
    .result-card {
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 767.98px) {
    padding: 2rem 0;

    .impact-title,
    .outcomes-title,
    .result-title {
      font-size: 1.6rem;
    }

    .result-description {
      font-size: 0.95rem;
    }

    .outcomes-card,
    .result-card {
      margin-bottom: 1rem;
    }

    .impact-card-description,
    .outcomes-card-description,
    .result-card-description {
      font-size: 0.9rem;
    }
  }
}

/* Outcomes Section */
.impact-section,
.outcomes-section {
  background: #fafafa;
  text-align: center;

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

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

    > p {
      font-size: var(--sub-heading);
      color: #00a63e;
    }
  }

  /* Outcomes Grid - 5 Cards per row on Large screens */
  .impact-card-wrapper,
  .outcomes-card-wrapper {
    flex: 0 0 20%;
    max-width: 20%;
  }

  /* Small screens (sm) - 3 columns */
  @media (max-width: 1200px) {
    .impact-card-wrapper,
    .outcomes-card-wrapper {
      flex: 0 0 calc(33.333% - 0.75rem);
      max-width: calc(33.333% - 0.75rem);
    }
  }

  /* Extra small screens (xs) - 2 columns */
  @media (max-width: 768px) {
    .impact-card-wrapper,
    .outcomes-card-wrapper {
      flex: 0 0 calc(50% - 0.75rem);
      max-width: calc(50% - 0.75rem);
    }
  }

  /* Mobile portrait - 1 column */
  @media (max-width: 480px) {
    .impact-card-wrapper,
    .outcomes-card-wrapper {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
}

/* Impact Section */
.impact-section {
  background-color: white;
  .impact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  }

  .card-header {
    > p {
      color: var(--theme-blue);
    }
  }
}

/* Metrics Section */
.metrics-section {
  background: linear-gradient(180deg, #0400ff 0%, #0300d1 100%);
  position: relative;
  overflow: hidden;
  text-align: center;

  .steps-main-title {
    font-size: var(--sub-heading);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-badge {
    color: white;
  }

  .metrics-cards-container {
    max-width: 900px;
    margin-inline: auto;
  }

  .step-card {
    background: #ffffff5c;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    border: 1px solid #ffffff33;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .step-metrics {
    font-size: clamp(1.8rem, 5vw, 4rem);
    color: white;
    font-weight: 600;
  }

  .step-title {
    font-size: var(--text-subheading);
    font-weight: 400 !important;
    color: #ffffff;
    line-height: 1.3;
  }

  .step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.4;
  }

  /* Responsive Design for Hire Steps */
  @media (max-width: 991.98px) {
    .hire-steps-section {
      padding: 60px 0;
    }
  }

  @media (max-width: 767.98px) {
    .step-card {
      padding: 1rem;
    }

    .hire-steps-section {
      padding: 50px 0;
    }
  }
}

/* Enterprise Services Section */
.conclusion-section,
.key-factors-section,
.enterprise-services-section {
  background-color: #ffffff;
  padding: 5rem 0;

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

  .services-title {
    max-width: 900px;
    margin: auto;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    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 {
    flex-shrink: 0;
    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;
  }

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

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

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

    .service-card {
      padding: 1rem !important;
    }
  }
}

.key-factors-section {
  .service-card {
    flex-direction: row;
    gap: 1rem;
  }
}

.conclusion-section {
  .section-badge {
    background: #f0fdf4;
    color: #00a63e;
    border: none;
  }
  .conclusion-card,
  .conclusion-img {
    background: linear-gradient(90deg, #fef2f2 0%, #fff7ed 50%, #fefce8 100%);
    border-radius: 20px;
    overflow: hidden;
    height: clamp(180px, 30vw, 300px);
    > img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }
  .conclusion-card {
    background: linear-gradient(180deg, #0400ff 0%, #0300d1 100%);
    height: 100%;
    padding: 2rem;
    color: white;
    font-size: var(--description-para);
  }

  .service-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    box-shadow: 0px 1px 3px 0px #0000001a;
  }

  .service-icon {
    background: linear-gradient(135deg, #00c950 0%, #008236 100%);
  }
}
