/* =================== SECTION 3 STYLES =================== */
.section-3 {
    width: 100%;

    text-align: center;
    margin: auto;
}

/* AI Services Banner */
/* .ai-banner {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.ai-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* Business Transformation Section */
.service-container {
    background: white;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.service-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
     max-width: 1000px;
    width: 100%;
    gap: 40px; /* Optional for spacing */
     align-items: stretch;
}

.service-heading,
.service-content {
    display: flex;
     flex: 1;
    flex-direction: column;
    justify-content: center; /* Vertically center inside each column */
     text-align: left;
}



.service-heading h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #07124D;
    font-family: 'Syne', sans-serif;
}

.service-content p {
    margin-top: 0; /* Previously: margin-top: -8rem; — remove this! */
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    color: #444;
    line-height: 1.6;
    font-weight: 300;
}
.learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #07124D;
    color: white;
    font-size: 0.8rem;
    font-family: 'Syne', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
     margin-top: 30px;
    width: fit-content;  /* consistent width based on content */
    min-width: 160px;    /* optional minimum width */
    text-align: center;
}


.learn-more-btn:hover {
    background: #05103A;
}

/* ============== RESPONSIVE DESIGN ============== */

/* 1440px to 768px – Keep two-column layout */
@media (max-width: 1440px) {
    .service-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-heading,
    .service-content {
        flex: 1 1 45%;
        max-width: 45%;
        text-align: left;
    }

    .service-heading h2 {
        font-size: 2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .learn-more-btn {
        font-size: 0.75rem;
        padding: 10px 16px;
    }
}

/* Below 600px – Stack layout vertically for mobile */
@media (max-width: 600px) {
  .service-wrapper {
    display: block; /* Remove flex for column behavior */
    width: 100%;
    margin-top: -3rem;
    margin-bottom: -9rem;
  }

  .service-heading,
  .service-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .service-heading h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    margin-left: 1.5rem;
      font-family: 'Syne', sans-serif;
  }

  .learn-more-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: 1.5rem;
  }

  .service-content p {
    font-size: 0.8rem;
    margin-left: 1.5rem;
     font-family: 'Roboto', sans-serif;
  }
}
