/* ===========================
   Google Font
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    overflow-x:hidden;
}

/* ===========================
   Navbar
=========================== */

.navbar{
    background:rgba(238, 241, 245, 0.9);
    backdrop-filter:blur(12px);
    transition:.4s;
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.navbar-brand{
    color:#252222 !important;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
}

.navbar-brand i{
    color:#ffc107;
}

.nav-link{
    color:#222121 !important;
    margin:0 12px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:"";
    width:0%;
    height:2px;
    background:#ffc107;
    position:absolute;
    left:0;
    bottom:-4px;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:#ffc107 !important;
}

.book-nav{
    border-radius:30px;
    padding:10px 25px;
    font-weight:600;
    transition:.3s;
}

.book-nav:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,193,7,.4);
}

/* ===========================
   Hero Carousel
=========================== */

.hero-img{
    height:60vh;
    object-fit:cover;
    filter:brightness(45%);
}

.carousel-caption{
    bottom:25%;
}

.carousel-caption h1{
    font-size:65px;
    font-weight:700;
    margin-bottom:15px;
}

.carousel-caption p{
    font-size:22px;
    margin-bottom:30px;
}

.carousel-caption .btn{
    padding:14px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
}

/* ===========================
   Statistics
=========================== */

.stats{
    padding:40px 0;
    background:#fff;
}

.stats h2{
    color:#0d6efd;
    font-size:45px;
    font-weight:700;
}

.stats p{
    color:#666;
    margin-top:10px;
}

/* ===========================
   Section Title
=========================== */

.section-title{
    font-size:42px;
    font-weight:700;
    color:#222;
}

#services p{
    color:#666;
}

/* ===========================
   Service Cards
=========================== */

.service-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.service-card img{
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.card-body{
    padding:22px;
}

.card-body h5{
    font-weight:700;
    margin-bottom:10px;
}

.rating{
    color:#ffc107;
    font-size:18px;
    margin-bottom:10px;
}

.price{
    color:#198754;
    font-size:30px;
    font-weight:700;
    margin-bottom:12px;
}

.book-btn{
    border-radius:30px;
    font-weight:600;
    padding:12px;
    transition:.3s;
}

.book-btn:hover{
    transform:scale(1.05);
}

/* ===========================
   Buttons
=========================== */

.btn-primary{
    background:#0d6efd;
    border:none;
}

.btn-primary:hover{
    background:#0b5ed7;
}

.btn-warning{
    font-weight:600;
}

/* ===========================
   Footer (For Next Part)
=========================== */

footer{
    background:#212529;
    color:#fff;
    padding:60px 0 20px;
}

footer h4{
    margin-bottom:20px;
}

footer a{
    color:#fff;
    text-decoration:none;
}

footer a:hover{
    color:#ffc107;
}

/* ===========================
   Scrollbar
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0b5ed7;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

    .navbar{
        background:#0d6efd;
    }

    .carousel-caption{
        bottom:18%;
    }

    .carousel-caption h1{
        font-size:42px;
    }

    .carousel-caption p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .hero-img{
        height:70vh;
    }

    .carousel-caption h1{
        font-size:32px;
    }

    .carousel-caption p{
        font-size:16px;
    }

    .stats{
        text-align:center;
    }

    .stats .col-md-3{
        margin-bottom:30px;
    }

    .section-title{
        font-size:32px;
    }

}

@media(max-width:576px){

    .hero-img{
        height:60vh;
    }

    .carousel-caption{
        bottom:15%;
    }

    .carousel-caption h1{
        font-size:26px;
    }

    .carousel-caption p{
        display:none;
    }

    .carousel-caption .btn{
        padding:10px 25px;
        font-size:15px;
    }

}
.happy-clients{
    background:#f8fbff;
}

.client-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    margin:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.client-card:hover{
    transform:translateY(-8px);
}

.quote{
    font-size:35px;
    color:#0d6efd;
    margin-bottom:15px;
}

.stars{
    color:#FFC107;
    font-size:20px;
    margin-bottom:15px;
}

.client-card p{
    color:#666;
    line-height:1.8;
    min-height:120px;
}

.client-info{
    display:flex;
    align-items:center;
    margin-top:20px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

.client-info h5{
    margin:0;
    font-weight:700;
}

.client-info span{
    color:#777;
    font-size:14px;
}

.owl-dots{
    margin-top:25px;
    text-align:center;
}

.owl-dot span{
    width:12px;
    height:12px;
    background:#bdbdbd !important;
}

.owl-dot.active span{
    background:#0d6efd !important;
}
/* Happy Clients */

.happy-clients{
    background:#f8f9fa;
}


.client-card{

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    min-height:300px;

}


.quote{

    color:#0d6efd;

    font-size:35px;

}


.stars{

    color:#ffc107;

    font-size:20px;

    margin:15px 0;

}


.client-card p{

    color:#666;

    line-height:1.7;

}


.client-info{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:20px;

}


.client-info img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}


.client-info h5{

    margin:0;

    font-weight:600;

}


.client-info span{

    color:#777;

    font-size:14px;

}


/* Owl Navigation */

.owl-nav button{

    background:#0d6efd !important;

    color:white !important;

    width:40px;

    height:40px;

    border-radius:50% !important;

    font-size:25px !important;

}


.owl-nav{

    text-align:center;

    margin-top:30px;

}


.owl-dots{

    text-align:center;

    margin-top:20px;

}


.owl-dot span{

    width:12px !important;

    height:12px !important;

}


.owl-dot.active span{

    background:#0d6efd !important;

}

/* ================= Footer ================= */

/* ================= Location ================= */


.location-section{

    background:#f8f9fa;

}


.map-box{

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}



.location-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.location-card h3{

    font-weight:700;

    margin-bottom:25px;

    color:#0d6efd;

}



.location-card p{

    font-size:16px;

    margin-bottom:18px;

    color:#555;

}



.location-card i{

    color:#ffc107;

    margin-right:10px;

}

.footer{

    background:#111827;

    color:white;

    padding:70px 0 20px;

}


.footer h3{

    font-size:32px;

    font-weight:700;

    margin-bottom:20px;

}


.footer h3 i{

    color:#ffc107;

}


.footer h5{

    font-size:20px;

    margin-bottom:20px;

    color:#ffc107;

}


.footer p{

    color:#cbd5e1;

    line-height:1.8;

}


.footer ul{

    padding:0;

    list-style:none;

}


.footer ul li{

    margin-bottom:12px;

    color:#cbd5e1;

}


.footer ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}


.footer ul li a:hover{

    color:#ffc107;

    padding-left:5px;

}



/* Social Icons */


.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}


.social-links a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#2563eb;

    color:white;

    font-size:20px;

    transition:.3s;

}


.social-links a:hover{

    background:#ffc107;

    color:#111;

    transform:translateY(-5px);

}



/* Contact Icons */

.footer i{

    color:#ffc107;

    margin-right:8px;

}



/* Copyright */


.footer hr{

    border-color:#374151;

    margin-top:40px;

}


.copyright{

    color:#94a3b8;

    font-size:14px;

}
.newsletter-section{
    background:#f8fbff;
}

.newsletter-box{
    background:#0d6efd;
    color:#fff;
    padding:45px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:30px;
    height:100%;
}

.newsletter-icon{
    width:90px;
    height:90px;
    background:#fff;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    flex-shrink:0;
}

.subtitle{
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    font-weight:600;
}

.newsletter-content h2{
    margin:10px 0 15px;
    font-weight:700;
}

.newsletter-form{
    display:flex;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;
}

.newsletter-form input{
    flex:1;
    min-width:220px;
    height:55px;
    border:none;
    border-radius:8px;
    padding:0 20px;
    outline:none;
}

.newsletter-form button{
    background:#ffc107;
    color:#222;
    border:none;
    border-radius:8px;
    padding:0 28px;
    font-weight:600;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#fff;
}

.call-box{
    background:#fff;
    text-align:center;
    padding:45px 30px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.call-icon{
    width:80px;
    height:80px;
    margin:auto;
    background:#f2f4f7;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.call-box span{
    color:#777;
    display:block;
}

.call-box h3{
    margin:10px 0;
    font-weight:700;
}

.call-box a{
    text-decoration:none;
}

.call-box>a:first-of-type{
    display:block;
    color:#0d6efd;
    font-size:28px;
    font-weight:700;
    margin:15px 0;
}

.btn-call{
    display:inline-block;
    background:#0d6efd;
    color:#fff !important;
    padding:12px 30px;
    border-radius:8px;
    margin-top:15px;
    transition:.3s;
}

.btn-call:hover{
    background:#084298;
}

@media(max-width:768px){

.newsletter-box{
    flex-direction:column;
    text-align:center;
    padding:30px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
}

}
.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    background:#1ebe5d;
    color:#fff;
    transform:scale(1.1);
}

