/* =========================
FILE: style.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.section-padding{
    padding:100px 0;
}

.top-header{
    background:#111;
    color:#fff;
    font-size:14px;
}

.social-icon{
    color:#fff;
    margin-left:10px;
}

.custom-navbar{
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand{
    color:#d63384 !important;
    font-size:28px;
}

.nav-link{
    color:#222 !important;
    margin:0 10px;
    font-weight:500;
}

.nav-link:hover{
    color:#d63384 !important;
}

.btn-main{
    background:linear-gradient(45deg,#d63384,#ff5ea8);
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    border:none;
    transition:0.4s;
}

.btn-main:hover{
    transform:translateY(-3px);
    color:#fff;
}

.btn-outline-main{
    border:2px solid #d63384;
    color:#d63384;
    padding:12px 30px;
    border-radius:50px;
    margin-left:10px;
}

.hero-section{
    min-height:100vh;
    background:linear-gradient(to right,#fff0f6,#fff);
    padding-top:120px;
}

.hero-tag{
    background:#ffe0ef;
    color:#d63384;
    padding:8px 20px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-section p{
    font-size:18px;
    color:#666;
}

.hero-image img{
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.section-title span{
    color:#d63384;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#d63384;
    margin-bottom:20px;
}

.choose-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.choose-box i{
    font-size:40px;
    color:#d63384;
    margin-bottom:15px;
}

.gallery-item{
    overflow:hidden;
    border-radius:25px;
}

.gallery-item img{
    width:100%;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.pricing-card{
    background:#fff;
    border-radius:25px;
    padding:50px 35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.pricing-card h2{
    color:#d63384;
    margin:20px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card ul li{
    margin:15px 0;
}

.active-price{
    background:linear-gradient(45deg,#d63384,#ff5ea8);
    color:#fff;
}

.active-price h2{
    color:#fff;
}

.testimonial-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.counter-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.counter-box h3{
    color:#d63384;
    font-size:40px;
}

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-box i{
    font-size:40px;
    color:#d63384;
    margin-bottom:20px;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:25px;
}

.newsletter-section{
    background:#111;
    color:#fff;
}

.newsletter-form{
    display:flex;
}

.newsletter-form input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px 0 0 50px;
}

.newsletter-form button{
    border:none;
    padding:15px 30px;
    background:#d63384;
    color:#fff;
    border-radius:0 50px 50px 0;
}

.footer{
    background:#000;
    color:#fff;
    padding:80px 0 20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d63384;
    border-radius:50%;
    color:#fff;
    margin-right:10px;
}

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:90px;
    width:60px;
    height:60px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
}

#scrollTopBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#d63384;
    color:#fff;
    display:none;
    z-index:999;
}

.appointment-form .form-control,
.appointment-form .form-select{
    padding:15px;
    border-radius:15px;
}

@media(max-width:991px){

    .hero-section{
        text-align:center;
    }

    .hero-section h1{
        font-size:42px;
    }

    .btn-outline-main{
        margin-left:0;
        margin-top:10px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form input{
        border-radius:50px;
        margin-bottom:15px;
    }

    .newsletter-form button{
        border-radius:50px;
    }
}