/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(180deg, #000f74 20%, #ffffff 170%);
    background-attachment: fixed;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout components */
.main-container {
    padding: 40px 28px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('./assets/images/img_50df2ef6b9cc4b9fbb71dd486863f1a5_1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: flex-start;
    align-items: center;
    width: 96%;
    max-width: 1760px;
}

.inner-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.logo {
    width: 25%;
    height: auto;
    /* border-radius: 8px; */
}

.nav-menu {
    display: none;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.nav-item,.nav-link {
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-item:hover,.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Hero Section */
.service-banner {
    position: relative;
    /* width: 95%; */
    margin: 0 auto;
    height: 12rem;
    border-radius: 30px;
}

.service-banner img {
    height: inherit;
    object-fit: cover;
    width: 100%;
    border-radius: 40px;
}

.hero-section {
    width: 100%;
    /* background-image: url('./assets/images/img_everyonedoinghisjobyoungpeopleworkingcallcenternewdealsiscoming_1.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-banner:after {
    /* background-image: url('./assets/images/img_everyonedoinghisjobyoungpeopleworkingcallcenternewdealsiscoming_1.png'); */
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 40px;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 1;
}

/* Main Content */
.main-content {
    width: 100%;
    /* padding: 80px 0; */
    margin-top: -200px;
    padding-top: 250px;
}

.content-section {
    width: 100%;
    max-width: 1592px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.section-title {
    font-size: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    gap: 24px;
    align-items: center;
}

.about-image {
    width: 100%;
    /* max-width: 500px; */
    border-radius: 40px;
}

.about-content {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 32px 24px;
    width: 100%;
    /* max-width: 500px; */
    margin-left: 0px;
    box-shadow: 0px 0px 10px 0px #000000cf;
}

.about-title {
    font-size: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #000f74;
    margin-bottom: 16px;
}

.about-text {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 12px;
}

/* Services Grid */
.services-grid {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    border-radius: 34px;
    width: 100%;
    height: auto;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-connector {
    width: 0px;
    height: 0px;
    border: 0px;
    border-radius: 25px;
    background-color: #ffffff;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* CTA Section */
/* .cta-section {
    background-color: #000f74;
    padding: 40px 24px;
    border-radius: 0;
    width: 100%;
} */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 36px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 44px;
    padding: 46px 24px;
    margin-top: 0px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #ffffff;
}

.cta-text {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #ffffff;
}

.cta-button {
    background-color: #ffffff;
    color: #000f74;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Features Section */
 .features-section {
    padding: 60px 0px;
    width: 100%;
    /* //max-width: 1200px;  */
    margin: 0 auto;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.features-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-title {
    font-size: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #fff;
}

.features-description {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #fff;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
    row-gap: 5px;
}

.feature-icon {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #fff;
}

.features-image {
    width: 100%;
    border-radius: 40px;
    margin-top: 24px;
}
.health-features-image {
    width: 52.5%;
    border-radius: 40px;
    margin-top: 24px;
}


/* Services List */
.services-section {
    padding: 60px 24px;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.service-card-content{
    text-align: center;
    padding: 20px;
}
.service-card-content img{
    width: 60px;
    margin: 0 auto 20px;
}
.service-card-content h4{
    margin-bottom: 15px;
}

.services-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-title {
    font-size: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
}

.services-description {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 16px;
    row-gap: 5px;
    align-items: center;
}

.services-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.services-icon-wt {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.services-text-header-wt {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 17px;
    text-transform: capitalize;
    color: #fff;
}

.services-text-wt {
    width: 100%;
    margin-left: 40px;
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #fff;
}

.services-text-header {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
}

.services-text {
    width: 100%;
    margin-left: 40px;
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
}

.services-image {
    width: 100%;
    border-radius: 40px;
    margin-top: 24px;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    padding: 40px 24px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-description {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.footer-section-title {
    font-size: 20px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    color: #000000;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000f74;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Responsive media queries */
@media (min-width: 640px) {
    /* .content-wrapper {
          padding: 0 24px;
        } */

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    .logo {
        width: 10%;
        height: auto;
    }

    .section-title {
        font-size: 32px;
        line-height: 38px;
    }

    /* .about-section {
        flex-direction: row;
        gap: 32px;
    } */

    /* .about-image,
    .about-content {
        flex: 0 0 50%;
    } */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .cta-text-content {
        flex: 1;
    }

    .features-content {
        /* flex-direction: row; */
        gap: 48px;
    }

    .features-text-content {
        flex: 1;
    }

    .features-image {
        flex: 1;
        margin-top: 0;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
        align-items: flex-start;
        text-align: left;
    }

    .footer-services,
    .footer-social {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }
}

@media (min-width: 768px) {
    /* .content-wrapper {
          padding: 0 32px;
        } */
    /* .main-container {
            padding: 80px 32px;
        } */

    /* .header {
        flex-direction: column;
    } */

    /* .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        align-items: center;
    }

    .nav-item,.nav-link {
        font-size: 20px;
        line-height: 30px;
    } */
    .main-content{
        padding-top: 280px;
    }
    .hero-overlay {
        padding: 160px 48px;
        margin: 0 32px;
        border-radius: 40px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 52px;
    }

    .section-title {
        font-size: 36px;
        line-height: 44px;
    }

    .about-title {
        font-size: 32px;
        line-height: 38px;
    }

    .about-text {
        font-size: 16px;
        line-height: 19px;
    }

    .cta-title {
        font-size: 32px;
        line-height: 38px;
    }

    .cta-text {
        font-size: 16px;
        line-height: 19px;
    }

    .features-title {
        font-size: 32px;
        line-height: 38px;
    }

    .features-description {
        font-size: 16px;
        line-height: 19px;
    }

    .feature-text {
        font-size: 16px;
        line-height: 19px;
    }

    .footer-description {
        font-size: 18px;
        line-height: 28px;
    }

    .footer-section-title {
        font-size: 22px;
        line-height: 32px;
    }

    .footer-link {
        font-size: 18px;
        line-height: 22px;
    }

    .service-banner{
        height: 27rem;
    }

    .services-grid{
        padding: 0 24px;
    }

    .content-section{
        padding: 0 16px;
    }

    .services-text-header{
        font-size: 14px;
    }

    .service-card-content{
        padding: 50px 40px;
    }
}

@media (min-width: 1024px) {
    .header {
        flex-direction: row;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-item {
        font-size: 20px;
        line-height: 30px;
    }

    /* .logo {
        width: 100px;
        height: 100px;
    } */

    /* .header {
          padding: 0 80px;
        } */
    .service-banner{
        height: 31rem;
    }
    .hero-title {
        font-size: 50px;
        line-height: 61px;
    }

    .section-title {
        font-size: 40px;
        line-height: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 56px;
        margin-top: 40px;
    }

    /* .service-card {
        height: 200px;
    } */

    .service-connector {
        width: 70px;
        height: 70px;
        border: 12px solid #7079b2;
        border-radius: 38px;
        right: -48px;
    }

    .cta-title {
        font-size: 40px;
        line-height: 49px;
    }
    .features-content{
        flex-direction: row;
    }
    .features-title {
        font-size: 40px;
        line-height: 49px;
    }

    .footer-logo {
        width: 136px;
        height: 136px;
    }

    .footer-description {
        font-size: 16px;
        line-height: 35px;
    }

    .footer-section-title {
        font-size: 20px;
        line-height: 36px;
    }

    .footer-link {
        font-size: 18px;
        line-height: 27px;
    }

    .social-icon {
        width: 56px;
        height: 56px;
    }

    .about-section {
        flex-direction: row;
        gap: 32px;
    }

    .about-image{
        flex: 0 0 50%;
        width: 60%;
        height: 500px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    .about-content{
        margin-left: -200px;
        flex: 0 0 50%;
    }
    .features-section{
        padding: 60px 24px;
    }
}

@media (min-width: 1280px) {
    /* .content-wrapper {
          padding: 0 80px;
        } */

    .hero-overlay {
        padding: 268px 56px;
    }

    .content-section {
        gap: 0px;
    }

    .features-section {
        padding: 80px 0px;
    }

    .footer {
        /* padding: 86px 86px; */
    }
}