/*=====================================
Google Fonts
=====================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/*=====================================
Root
=====================================*/

:root {

    --primary: #d95b8c;
    --secondary: #c7a03a;
    --light: #fff7fb;
    --white: #ffffff;
    --dark: #333333;
    --text: #666666;
    --border: #f2d8e5;

}

/*=====================================
Common
=====================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Playfair Display', serif;
    color: var(--dark);

}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.section-padding {

    padding: 90px 0;

}

.section-title {

    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.main-title {

    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;

}

p {

    line-height: 30px;

}

/*=====================================
Navbar
=====================================*/

.custom-navbar {

    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    /* padding: 12px 0; */
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

}

.navbar-brand img {
    height: 80px;
    width: 90px;
    margin-top: -5px;
}
.navbar-nav .nav-link {

    color: var(--dark);
    font-weight: 500;
    margin-left: 20px;
    transition: .4s;

}

.navbar-nav .nav-link:hover {

    color: var(--primary);

}

.book-btn {

    background: linear-gradient(45deg, var(--primary), #f48fb1);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: .4s;

}

.book-btn:hover {

    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);

}

/*==========================
Services Menu Dropdown
==========================*/

.services-dropdown{

    min-width:320px;
    border:none;
    border-radius:15px;
    padding:12px 0;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.services-dropdown .dropdown-item{

    padding:12px 22px;
    font-size:15px;
    font-weight:500;
    transition:.3s;

}

.services-dropdown .dropdown-item:hover{

    background:var(--primary);
    color:#fff;
    padding-left:28px;

}

/* Desktop Hover */

@media(min-width:992px){

.nav-item.dropdown:hover .dropdown-menu{

    display:block;
    margin-top:0;

}

}
/*=====================================
Hero Section
=====================================*/

.hero-section{
    margin-top:95px;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item{
    height:90vh;
}

.hero-slide{
    position:relative;
    width:100%;
    height:90vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgb(217 91 140 / 18%), rgba(0, 0, 0, .55));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.hero-subtitle{
    display:inline-block;
    padding:12px 28px;
    border-radius:40px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:16px;
    font-weight:500;
    margin-bottom:25px;
}

.hero-content h1{
    color:#fff;
    font-size:60px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    color:#fff;
    font-size:20px;
    line-height:34px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.hero-btn:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-4px);
}

.hero-call{
    background:transparent;
    border:2px solid #fff;
}

.hero-call:hover{
    background:#fff;
    color:var(--primary);
}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next{
    width:70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(255,255,255,.25);
    background-size:40%;
}

/* .carousel-indicators{
    bottom:30px;
} */

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 6px;
    background:#fff;
    display: none;
}

.carousel-item.active .hero-content{
    animation:heroFadeUp 1s ease;
}

@keyframes heroFadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .hero-section{
        margin-top:85px;
    }

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    .hero-slide{
        height:75vh;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:17px;
        line-height:30px;
    }

}

@media(max-width:576px){

    .hero-section{
        margin-top:80px;
    }

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    .hero-slide{
        height:70vh;
    }

    .hero-content{
        padding:0 15px;
    }

    .hero-content h1{
        font-size:30px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:15px;
        line-height:28px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-btn{
        width:100%;
        max-width:260px;
        justify-content:center;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }

}

/*=====================================
About Section
=====================================*/

.about-section{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.10);
}

.experience-box{
    position:absolute;
    bottom:-16px;
    right:-25px;
    background:var(--primary);
    color:#fff;
    width:180px;
    padding:25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-box h2{
    color:#fff;
    font-size:42px;
    margin-bottom:8px;
}

.experience-box span{
    font-size:15px;
}

.about-feature{
    display:flex;
    gap:15px;
    background:#fff7fb;
    border-radius:18px;
    padding:20px;
    transition:.3s;
    height:100%;
}

.about-feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-icon{
    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}

.about-feature h5{
    margin-bottom:8px;
}

.about-feature p{
    margin:0;
    font-size:15px;
    line-height:24px;
}

@media(max-width:991px){

    .experience-box{
        right:15px;
        bottom:15px;
    }

}

@media(max-width:576px){

    .experience-box{
        width:150px;
        padding:18px;
    }

    .experience-box h2{
        font-size:32px;
    }

}

/*=====================================
Services Section
======================================*/

.services-section{
    background:#fff7fb;
}

.service-description{
    max-width:700px;
    margin:auto;
}

.service-box{
    position:relative;
    height:380px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.service-box:hover img{
    transform:scale(1.12);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgb(217 91 140 / 35%), rgba(217, 91, 140, .15));
    padding:25px;
}

.service-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    transition:.4s;
}

.service-box:hover .service-content{
    transform:translateY(0);
}

.service-icon-box{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
}   

.service-content h4{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:0;
    min-height:60px;   /* Same height for all titles */
    display:flex;
    align-items:flex-end;
}

.service-content p{
    color:#fff;
    margin-top:15px;
    line-height:26px;
    opacity:0;
    max-height:0;
    overflow:hidden;
    transition:.4s;
}

.service-box:hover .service-content p{
    opacity:1;
    max-height:120px;
}

.service-box:hover .service-content{
    bottom:35px;
}
.service-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
    transition:.4s;
}

.service-box:hover::before{
    background:rgba(0,0,0,.35);
}

@media(max-width:991px){

.service-box{
    height:330px;
}

.service-content{
    transform:translateY(0);
}

.service-content p{
    opacity:1;
}

}

@media(max-width:576px){

.service-box{
    height:300px;
}

.service-content{
    padding-bottom:5px;
}

.service-content h4{
    font-size:20px;
}

.service-content p{
    font-size:14px;
    line-height:24px;
}

.service-icon-box{
    width:60px;
    height:60px;
    font-size:26px;
}

}

/*=====================================
Why Choose Us
======================================*/

.why-section{

    background:#ffffff;

}

.why-box{

    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:25px;
    background:#fff;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;

}

.why-box:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(217,91,140,.15);

}

.why-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#f4a5c2);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;

}

.why-box h5{

    margin-bottom:10px;
    font-size:22px;
    color:var(--dark);

}

.why-box p{

    margin:0;
    line-height:28px;

}

.why-section img{

    border-radius:25px;
}

@media(max-width:991px){

.why-section img{

    margin-top:40px;

}

}

@media(max-width:576px){

.why-box{

    padding:20px;

}

.why-icon{

    width:60px;
    height:60px;
    font-size:24px;

}

.why-box h5{

    font-size:18px;

}

}

/*=====================================
Care Process
======================================*/

.process-section{
    background:#fff7fb;
}

.process-card{

    position:relative;
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-number{

    position:absolute;
    top:20px;
    right:20px;
    font-size:60px;
    font-weight:700;
    color:rgba(217,91,140,.08);

}

.process-icon{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#f5a6c3);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
    margin-bottom:25px;

}

.process-card h4{

    margin-bottom:15px;

}

.process-card p{

    margin-bottom:0;

}

.process-card:hover .process-icon{

    background:linear-gradient(135deg,var(--secondary),#e7c56c);
    transform:rotate(360deg);
    transition:.7s;

}

@media(max-width:767px){

.process-card{

    padding:35px 20px;

}

.process-number{

    font-size:45px;

}

.process-icon{

    width:75px;
    height:75px;
    font-size:30px;

}

}

/*=====================================
Doctor Section
======================================*/

.doctor-section{

    background:#ffffff;

}

.doctor-image{

    position:relative;

}

.doctor-image img{

    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.experience-box{

    position:absolute;
    bottom:-5px;
    right:0px;
    background:linear-gradient(135deg,var(--primary),#f59dbd);
    color:#fff;
    padding:25px;
    border-radius:20px;
    width:180px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.experience-box h2{

    color:#fff;
    font-size:42px;
    margin-bottom:5px;

}

.experience-box p{

    color:#fff;
    margin:0;
    line-height:24px;

}

.doctor-designation{

    color:var(--primary);
    margin-bottom:25px;
    font-weight:600;

}

.doctor-feature{

    background:#fff7fb;
    border-left:5px solid var(--primary);
    padding:15px 18px;
    border-radius:10px;
    font-weight:500;
    transition:.4s;

}

.doctor-feature i{

    color:var(--primary);
    margin-right:10px;
    font-size:18px;

}

.doctor-feature:hover{

    background:var(--primary);
    color:#fff;

}

.doctor-feature:hover i{

    color:#fff;

}

@media(max-width:991px){

.experience-box{

    right:20px;
    bottom:20px;

}

.doctor-image{

    margin-bottom:50px;

}

}

@media(max-width:576px){

.experience-box{

    width:140px;
    padding:15px;

}

.experience-box h2{

    font-size:32px;

}

}   

/*=====================================
Our Facilities
======================================*/

.facility-section{

    background:#ffffff;

}

.facility-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:300px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.facility-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.facility-card:hover img{

    transform:scale(1.1);

}

.facility-overlay{

    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding:30px;
    background:linear-gradient(to top, rgb(217 91 140 / 27%), rgba(217, 91, 140, .10));
    transition:.4s;

}

.facility-overlay h4{

    color:#fff;
    margin:0;
    font-size:24px;
    transform:translateY(20px);
    transition:.4s;

}

.facility-card:hover .facility-overlay h4{

    transform:translateY(0);

}

@media(max-width:991px){

.facility-card{

    height:260px;

}

}

@media(max-width:576px){

.facility-card{

    height:230px;

}

.facility-overlay h4{

    font-size:20px;

}

}

/*=====================================
Testimonial Slider
======================================*/

.testimonial-section{
    background:#fff7fb;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.quote-icon{
    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin:20px 0;
}

.patient-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.patient-info img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:55px;
    height:55px;
    background:var(--primary);
    border-radius:50%;
    top:45%;
}

.carousel-control-prev{
    left:-70px;
}

.carousel-control-next{
    right:-70px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--primary);
}

@media(max-width:991px){

.carousel-control-prev,
.carousel-control-next{
    display:none;
}

.testimonial-card{
    margin-bottom:20px;
}

}

/*=====================================
FAQ Section
======================================*/

.faq-section{

    background:#ffffff;

}

.accordion-item{

    border:none;
    border-radius:15px !important;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.accordion-button{

    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    color:var(--dark);
    background:#fff;
    box-shadow:none;

}

.accordion-button:not(.collapsed){

    background:var(--primary);
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:20px 25px;
    line-height:30px;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}

.faq-section img{

    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);

}

@media(max-width:991px){

.faq-section img{

    margin-bottom:35px;

}

}

/*=====================================
Appointment CTA
======================================*/

.appointment-section{

    position:relative;
    padding:120px 0;
    background:url('../images/appointment-bg.jpg') center center/cover no-repeat;
    overflow:hidden;

}

.appointment-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(rgb(217 91 140 / 29%), rgba(75, 35, 55, .82));

}

.appointment-section .container{

    position:relative;
    z-index:2;

}

.appointment-tag{

    display:inline-block;
    background:rgba(255,255,255,.2);
    color:#fff;
    padding:10px 28px;
    border-radius:40px;
    margin-bottom:25px;
    backdrop-filter:blur(8px);
    font-weight:600;

}

.appointment-section h2{

    color:#fff;
    font-size:52px;
    margin-bottom:25px;
    line-height:1.2;

}

.appointment-section p{

    color:#fff;
    font-size:19px;
    line-height:34px;
    margin-bottom:40px;

}

.appointment-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.appointment-btn{

    background:#fff;
    color:var(--primary);
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.appointment-btn:hover{

    background:var(--secondary);
    color:#fff;

}

.appointment-btn-outline{

    border:2px solid #fff;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    transition:.4s;

}

.appointment-btn-outline:hover{

    background:#fff;
    color:var(--primary);

}

@media(max-width:768px){

.appointment-section{

    padding:80px 0;

}

.appointment-section h2{

    font-size:34px;

}

.appointment-section p{

    font-size:16px;
    line-height:28px;

}

.appointment-btn,
.appointment-btn-outline{

    width:100%;

}

}

/*=====================================
Contact Section
======================================*/

.contact-section{

    background:#fff7fb;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.info-box{

    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.info-icon{

    width:65px;
    height:65px;
    background:linear-gradient(135deg,var(--primary),#f6a4c3);
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;

}

.info-box h5{

    margin-bottom:8px;

}

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form .form-control{

    height:55px;
    border-radius:12px;
    border:1px solid #ddd;

}

.contact-form textarea.form-control{

    height:160px;
    resize:none;

}

.contact-form .form-control:focus{

    border-color:var(--primary);
    box-shadow:none;

}

.map-section iframe{

    display:block;

}

@media(max-width:768px){

.contact-form{

    padding:25px;

}

.info-box{

    padding:20px;

}

}
/*=====================================
Cards
=====================================*/

.service-card,
.about-card,
.why-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.service-card:hover,
.about-card:hover,
.why-card:hover {

    transform: translateY(-10px);

}

.service-icon {

    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: .4s;

}

.service-card:hover .service-icon {

    background: var(--primary);
    color: #fff;

}

/*=====================================
Buttons
=====================================*/

.primary-btn{
    display: table;
    margin: 30px auto 0;
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    transition: .4s;
}

.primary-btn:hover {

    background: var(--secondary);
    color: #fff;

}


/*=====================================
Counter
=====================================*/

.counter-section {

    background: linear-gradient(45deg, var(--primary), #f49ab9);
    color: #fff;

}

.counter-box {

    text-align: center;
    padding: 40px 20px;

}

.counter-box h2 {

    color: #fff;
    font-size: 50px;

}

.counter-box p {

    color: #fff;

}

/*=====================================
Gallery
=====================================*/

.gallery-item {

    overflow: hidden;
    border-radius: 20px;

}

.gallery-item img {

    transition: .5s;

}

.gallery-item:hover img {

    transform: scale(1.1);

}

/*=====================================
Contact
=====================================*/

.contact-box {

    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.form-control {

    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;

}

textarea.form-control {

    height: 150px;

}

.form-control:focus {

    box-shadow: none;
    border-color: var(--primary);

}

/*=====================================
Footer
======================================*/

.footer-section{

    background:#2d2d2d;
    color:#ddd;
    padding:80px 0 20px;

}

.footer-logo{

    width:180px;
    background:#fff;
    padding:10px;
    border-radius:12px;

}

.footer-section h4{

    color:#fff;
    margin-bottom:25px;
    position:relative;
    font-size:24px;

}

.footer-section h4::after{

    content:'';
    width:45px;
    height:3px;
    background:var(--primary);
    display:block;
    margin-top:10px;

}

.footer-section p{

    color:#bbb;
    line-height:30px;

}

.footer-section ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-section ul li{

    margin-bottom:15px;
    color:#bbb;
    transition:.3s;

}

.footer-section ul li:hover{

    color:#fff;
    padding-left:6px;

}

.footer-section ul li a{

    color:#bbb;
    transition:.3s;

}

.footer-section ul li a:hover{

    color:var(--primary);

}

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:12px;

}

.footer-contact i{

    color:var(--primary);
    font-size:18px;
    margin-top:3px;

}

.footer-social{

    display:flex;
    gap:15px;
    margin-top:30px;

}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#444;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;

}

.footer-social a:hover{

    background:var(--primary);
    transform:translateY(-5px);

}

.footer-section hr{

    border-color:rgba(255,255,255,.1);
    margin:50px 0 25px;

}

.footer-bottom p{

    margin:0;
    color:#bbb;

}

.tech{

    color:var(--primary);
    font-weight:600;

}

.tech:hover{

    color:var(--secondary);

}

@media(max-width:991px){

.footer-section{

    text-align:center;

}

.footer-contact li{

    justify-content:center;

}

.footer-social{

    justify-content:center;

}

}

@media(max-width:576px){

.footer-logo{

    width:150px;

}

.footer-section{

    padding:60px 0 20px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom .text-md-end{

    margin-top:10px;

}

}

/*=====================================
Floating Icons
======================================*/

.floating-left,
.floating-right{

    position:fixed;
    top:85%;
    transform:translateY(-50%);
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:15px;

}

.floating-left{

    left:18px;

}

.floating-right{

    right:18px;

}

.floating-icon{

    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.35s;

}

.floating-icon:hover{

    transform:translateY(-6px) scale(1.08);

}

/* WhatsApp */

.whatsapp{

    background:#25D366;

}

/* Instagram */

.instagram{

    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);

}

/* Call */

.call{

    background:var(--primary);

}

/* Google Review */

.google{

    width:58px;
    height:58px;
    background:#fff;
    border-radius:50%;
    padding:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.google img{

    width:100%;
    height:100%;
    object-fit:contain;
    display:block;

}

/* Mobile */

@media(max-width:768px){

.floating-left{

    left:10px;

}

.floating-right{

    right:10px;

}

.floating-icon{

    width:50px;
    height:50px;
    font-size:24px;

}

.google img{

    width:28px;
    height:28px;

}

}
/*=====================================
Responsive
=====================================*/

@media(max-width:991px) {

    .hero {

        padding-top: 150px;
        text-align: center;

    }

    .hero h1 {

        font-size: 42px;
        line-height: 55px;

    }

    .hero-image {

        margin-top: 50px;

    }

    .main-title {

        font-size: 35px;

    }

    .navbar-brand img {

        height: 60px;

    }
    

}

@media(max-width:576px) {

    .hero h1 {

        font-size: 34px;
        line-height: 45px;

    }

    .main-title {

        font-size: 30px;

    }

    .section-padding {

        padding: 70px 0;

    }

    .book-btn {

        display: none;

    }

   

}