/* BANNER */
.page-banner{
    height:87vh;
    /* background:url('/images/services-banner.jpg') center/cover no-repeat; */
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
}

.banner-overlay{
    background:rgba(0,0,0,0.6);
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
}

.banner-overlay h1{
    font-size:36px;
}

.banner-overlay p{
    margin-top:10px;
}

/* SERVICE SECTION */
.service-detail{
    padding:70px 0;
    position:relative;
}

/* LIGHT SHAPE BACKGROUND */
.service-detail::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:40%;
    height:100%;
    background:#e9d8c9;
    clip-path:polygon(0 0, 100% 0, 0 100%);
    z-index:0;
}

.service-detail.alt::before{
    left:auto;
    right:0;
    background:#d7ecf2;
    clip-path:polygon(100% 0, 0 0, 100% 100%);
}

.service-row{
    display:flex;
    align-items:center;
    gap:50px;
    position:relative;
    z-index:1;
}

/* TEXT */
.service-text{
    flex:1;
}

.service-text h2{
    font-size:38px;
    color:#2f7d6b;
    margin-bottom:15px;
}

.service-text p{
    font-size:15px;
    color:#444;
    line-height:1.8;
}

/* IMAGE */
.service-image{
    flex:1;
}

.service-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}



/* 3 step program css */



/* PROGRAM SECTION */
.program-section{
    padding:90px 0;
    background:linear-gradient(to bottom,#f9fbff,#ffffff);
    position:relative;
}

/* HEADER */
.program-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.program-header h2{
    font-size:34px;
    color:#2f7d6b;
    margin-bottom:15px;
}

.program-header p{
    color:#555;
    line-height:1.7;
}

/* TIMELINE LINE */
.timeline-line{
    position:absolute;
    top:50%;
    left:10%;
    width:80%;
    height:4px;
    background:#dce7e5;
    z-index:0;
}

/* FLOW */
.program-flow{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    position:relative;
    z-index:1;
}

/* STEP */
.program-step{
    width:30%;
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    position:relative;
}

/* HOVER EFFECT */
.program-step:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* ICON */
.step-icon{
    font-size:40px;
    margin-bottom:10px;
}

/* NUMBER */
.step-number{
    font-size:14px;
    color:#f28c1b;
    font-weight:600;
    margin-bottom:8px;
}

/* TITLE */
.program-step h3{
    font-size:20px;
    color:#2f7d6b;
    margin-bottom:10px;
}

/* TEXT */
.program-step p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* DURATION */
.duration{
    display:inline-block;
    margin-top:12px;
    padding:5px 12px;
    background:#eaf5f3;
    color:#2f7d6b;
    border-radius:20px;
    font-size:13px;
}








/* RESPONSIVE */
@media(max-width:992px){
    .service-row{
        flex-direction:column;
    }

    .service-detail::before,
    .service-detail.alt::before{
        display:none;
    }

    .service-text h2{
        font-size:26px;
    }
    /* 3step program responsive css */
     .timeline-line{
        display:none;
    }

    .program-flow{
        flex-direction:column;
        gap:20px;
    }

    .program-step{
        width:100%;
    }
}