/* ==========================================
   Terms & Conditions CSS
   Health4U Multispeciality Clinic
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Roboto',sans-serif;
    background:#f8f9fc;
    color:#333;
}

/* ================= Hero ================= */

.hero-section{
    background:linear-gradient(180deg,#eef2ff 0%,#5a4cf3 100%);
    padding:120px 0 90px;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    left:-80px;
}

.hero-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
}

.hero-title{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-text{
    color:#f5f5f5;
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ================= Section ================= */

section h2{
    font-weight:700;
    color:#222;
}

section .text-muted{
    font-size:17px;
}

/* ================= Cards ================= */

.service-card{

    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    height:100%;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #ececec;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(90,76,243,.20);

}

.service-icon{

    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#eef1ff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    color:#5a4cf3;

}

.service-card h4{

    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
    color:#222;

}

.service-card p{

    color:#666;
    line-height:1.8;
    font-size:15px;

}

/* ================= CTA ================= */

.appointment-box{

    background:linear-gradient(135deg,#5a4cf3,#7b6cff);

    border-radius:25px;

    position:relative;

    overflow:hidden;

}

.appointment-box::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-70px;
    right:-70px;

}

.appointment-box::after{

    content:'';

    position:absolute;

    width:170px;
    height:170px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    left:-50px;
    bottom:-50px;

}

.appointment-box h3{

    font-size:34px;
    position:relative;
    z-index:2;

}

.appointment-box p{

    position:relative;
    z-index:2;

}

.appointment-box .btn{

    position:relative;
    z-index:2;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.appointment-box .btn:hover{

    transform:translateY(-3px);

}

/* ================= Responsive ================= */

@media(max-width:992px){

.hero-title{

font-size:42px;

}

}

@media(max-width:768px){

.hero-section{

padding:90px 20px;

}

.hero-title{

font-size:34px;

}

.hero-text{

font-size:16px;

}

.service-card{

padding:25px;

}

.appointment-box{

padding:40px 20px !important;

}

.appointment-box h3{

font-size:26px;

}

}