.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(270deg, rgba(0, 0, 0, 0) 37.64%, #000000 100%);
  }

  .hero-content {
    max-width: 50%;
    margin: clamp(2rem, 5vw, 6rem) 0;
    position: relative;
    z-index: 2;
  }

  .hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
  }

  .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);
  }

  /* ONLY RESPONSIVE MEDIA QUERIES FOR YOUR EXISTING STYLES */

  /* Mobile phones (up to 575px) */
  @media (max-width: 575.98px) {
    .hero-content {
      max-width: 100%;
      margin: auto;
      text-align: center;
    }

    .hero-subtitle {
      font-size: 1.4rem;
    }

    .hero-description {
      font-size: 0.95rem;
      max-width: 100%;
    }

    .feature-badge {
      font-size: 0.75rem;
      padding: 0.35rem 0.7rem;
    }
  }

  /* Landscape phones (576px and up) */
  @media (min-width: 576px) {
    .hero-content {
      max-width: 85%;
    }

    .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-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-subtitle {
      font-size: 2.3rem;
    }

    .hero-description {
      font-size: 1.08rem;
    }
  }
}

/* Hire Steps Section */
.hire-steps-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;

  .steps-main-title {
    font-size: var(--sub-heading);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .steps-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    opacity: 0.9;
  }

  .step-card {
    background: #f9f9f9;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1.26px solid #0000000e;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .step-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-icon i {
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
  }

  .step-description {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .steps-cta-btn {
    background: var(--theme-blue);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .steps-cta-btn:hover {
    background: var(--theme-blue);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .steps-cta-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .steps-cta-btn:hover i {
    transform: translateX(5px);
  }

  /* Responsive Design for Hire Steps */
  @media (max-width: 991.98px) {
    .hire-steps-section {
      padding: 60px 0;
    }

    .step-card {
      padding: 2rem 1.5rem;
    }
  }

  @media (max-width: 767.98px) {
    .step-card {
      padding: 1.5rem;
    }

    .step-icon {
      width: 50px;
      height: 50px;
    }

    .step-icon i {
      width: 28px;
      height: 28px;
    }

    .hire-steps-section {
      padding: 50px 0;
    }
  }

  @media (max-width: 575.98px) {
    .steps-cta-btn {
      font-size: 1rem;
      padding: 12px 30px;
    }
  }
}

/* Enterprise Services Section */
.enterprise-services-section {
  background-color: #f9f9f9;
  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;
  }

  /* 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;
    }
  }

  @media (max-width: 575.98px) {
    .services-title {
      font-size: 1.4rem;
    }

    .services-description {
      font-size: 0.85rem;
    }
  }
}

/* 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;
    line-height: 1.2;
  }

  .trusted-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    small {
      display: inline-block;
      max-width: 80%;
    }
    > span {
      display: inline-flex;
      min-width: 45px;
      min-height: 45px;
      justify-content: center;
      align-items: center;
      background-color: var(--theme-light-blue);
      color: var(--theme-blue);
      padding: 0.5rem;
      border-radius: 8px;
    }

    > em {
      font-size: large;
    }
  }

  .icon-paragraph > p {
    font-size: small;
  }

  .trusted-description.text-blue {
    color: var(--theme-blue);
  }

  .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;
    }
  }
}

/* Hire Steps Section */
.gen-ai-difference-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;

  .steps-main-title {
    font-size: var(--sub-heading);
    font-weight: 600;
    position: relative;
    &::before {
      content: "";
      width: 100px;
      height: 5px;
      border-radius: 50px;
      background-color: var(--theme-blue);
      position: absolute;
      bottom: -2.5rem;
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .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;
  }

  .step-card {
    background: #f9f9f9;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1.26px solid #0000000e;
    transition: all 0.3s ease;
    text-align: center;
  }

  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .step-icon {
    margin: auto;
    width: 60px;
    height: 60px;
    background: var(--theme-light-blue);
    color: var(--theme-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-icon i {
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.3;
  }

  .step-description {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .steps-cta {
    background: var(--theme-blue);
    color: white;
    padding: 15px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;

    .partition-line {
      width: 8px;
      height: 8px;
      background-color: white;
      border-radius: 50%;
      position: relative;
      &::before {
        content: "";
        width: 60px;
        height: 3px;
        background-color: #ffffff66;
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
      }
      &::after {
        content: "";
        width: 60px;
        height: 3px;
        background-color: #ffffff66;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
      }
    }

    > :first-child {
      font-size: clamp(1.2rem, 2vw, 1.8rem);
    }

    > :last-child {
      font-size: clamp(1.3rem, 2.2vw, 2rem);
    }
  }

  /* Responsive Design for Hire Steps */
  @media (max-width: 991.98px) {
    .hire-steps-section {
      padding: 60px 0;
    }

    .step-card {
      padding: 2rem 1.5rem;
    }
  }

  @media (max-width: 767.98px) {
    .step-card {
      padding: 1.5rem;
    }

    .step-icon {
      width: 50px;
      height: 50px;
    }

    .step-icon i {
      width: 28px;
      height: 28px;
    }

    .hire-steps-section {
      padding: 50px 0;
    }
  }

  @media (max-width: 575.98px) {
    .steps-cta {
      font-size: 1rem;
      padding: 12px 30px;
    }
  }
}

/* Reframe Your Industry Section */
#reframe-your-industry {
  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);
  }

  .reframe-end-lines {
    > p {
      font-size: var(--description-para);
    }
  }

  .steps-cta-btn {
    background: var(--theme-blue);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .steps-cta-btn:hover {
    background: var(--theme-blue);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .steps-cta-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .steps-cta-btn:hover i {
    transform: translateX(5px);
  }

  /* 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;
    }
  }
  @media (max-width: 575.98px) {
    .steps-cta-btn {
      font-size: 1rem;
      padding: 12px 30px;
    }
  }
}
