
/* ===== GLOBAL ===== */
body{
   
    background:#f4faff;
    margin:0;
}
.service-hero{
    position: relative;
    height: 50vh;
    min-height: 200px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    overflow:hidden;
}

/* background image */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* overlay */
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.35);
}

/* text */
.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.service-title{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.service-subtitle{
    font-size:20px;
    opacity:0.9;
}

@media (max-width:576px){

.service-hero{
    height:30vh;
    min-height:200px;
    padding:0 15px;
}

.service-title{
    font-size:28px;
}

.service-subtitle{
    font-size:14px;
}

}

/* SECTION SPACING */
.root-info{
    padding:50px 0;
    background:#f4faff;
     font-family: 'Times New Roman', Times, serif;
}

/* BIG WRAPPER (Like Your Reference Design) */
.root-wrapper{
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* TITLE */
.root-title{
    font-weight:700;
    font-size:2.2rem;
    color:#0ea5e9;
    margin-bottom:20px;
     font-family: 'Times New Roman', Times, serif;
}

/* TEXT */
.root-text{
    color:#555;
    font-size:1.05rem;
    margin-bottom:30px;
     font-family: 'Times New Roman', Times, serif;
}

/* FEATURES */
.feature-box{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    padding:12px 18px;
    border-radius:12px;
    background:#eaf6ff;
    transition:0.3s ease;
     font-family: 'Times New Roman', Times, serif;
}

.feature-box i{
    font-size:18px;
    margin-right:12px;
    color:#0ea5e9;
}

.feature-box:hover{
    background:#0ea5e9;
    color:white;
    transform:translateX(6px);
}

.feature-box:hover i{
    color:white;
}

/* IMAGE */
.root-img{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.root-img:hover{
    transform:scale(1.03);
}

/* RESPONSIVE */
@media(max-width:991px){
    .root-wrapper{
        padding:35px;
    }

    .root-img{
        margin-top:30px;
        max-height:350px;
    }
}


/* ================= MOBILE (≤576px) ================= */
@media (max-width: 576px) {

    /* HERO */
    .root-hero{
         height: 35vh;
        padding: 0 15px;
        text-align: center;
    }

    .root-hero h1{
        font-size: 1.8rem;
        line-height: 1.3;
          padding-top: 15px;
    }

    .root-hero p{
        font-size: 0.9rem;
    }

    /* SECTION */
    .root-info{
        padding: 50px 0;
    }

    .root-wrapper{
        padding: 25px;
        border-radius: 20px;
    }

    /* TITLE */
    .root-title{
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* TEXT */
    .root-text{
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* FEATURE BOX */
    .feature-box{
        padding: 10px 14px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .feature-box i{
        font-size: 16px;
        margin-right: 8px;
    }

    /* IMAGE */
    .root-img{
        max-height: 250px;
        margin-top: 25px;
        border-radius: 18px;
    }
}
