@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{
    overflow-x:hidden;
    background:#f7f9fc;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}



/* ===============================
   TOP HEADER
================================= */

.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#005bea;
    color:#fff;
    padding:8px 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:15px;
    font-weight:500;
    z-index:99999;
}

.topbar i{
    margin-right:8px;
}









/* ===============================
   NAVBAR
================================= */

header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

nav{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:18px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}


.logo-area{
    display:flex;
    align-items:start;
    gap:22px;
}

.logo-area img{
    height:50px;
    width:auto;
    object-fit:contain;
}


.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    position:relative;
    color:#222;
    font-size:17px;
    font-weight:600;

    transition:0.3s ease;
}

.nav-links a:hover{
    color:#005bea;
}


.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-7px;
    width:0%;
    height:2px;
    background:#005bea;
    border-radius:30px;
    transition:0.4s ease;
}

.nav-links a:hover::after{
    width:100%;
}


.appoint-btn{
    padding:14px 20px !important;
    background:linear-gradient(
      135deg,
      #005bea,
      #0040b3
    );

    color:#fff !important;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    box-shadow:
    0 10px 25px rgba(0,91,234,0.25);
    transition:0.4s ease;
}

.appoint-btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(
      135deg,
      #006eff,
      #003ea5
    );
    box-shadow:
    0 14px 30px rgba(0,91,234,0.35);
}

.appoint-btn::after{
    display:none;
}


.menu-btn{
    display:none;
    font-size:28px;
    color:#111;
    cursor:pointer;
}













/* ===============================
   HERO SECTION
================================= */

.hero{
    margin-top:125px;
    position:relative;
    width:100%;
    height:82vh;
    overflow:hidden;
    background:#000;
}

/* Each slide is stacked absolutely, full size */
.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 0.9s ease;
    pointer-events:none;
    z-index:0;
}

.slide.active{
    opacity:1;
    pointer-events:auto;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.40);
    z-index:2;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    max-width:1000px;
    text-align:center;
    z-index:10;
}

.hero-content h1{
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:22px;
    text-shadow:0 4px 18px rgba(0,0,0,0.5);
}

.hero-content h1 span{
    color:#59b2ff;
    position:relative;
}

.hero-content h1 span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:6px;
    width:100%;
    height:12px;
    background:rgba(89,178,255,0.20);
    border-radius:30px;
    z-index:-1;
}

.hero-content p{
    font-size:16px;
    line-height:1.85;
    color:#eee;
    max-width:820px;
    margin:0 auto 32px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    background:linear-gradient(135deg,#005bea,#0040b3);
    color:#fff;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:0 10px 28px rgba(0,91,234,0.35);
}

.hero-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,#006eff,#0039a1);
}


/* ===============================
   SLIDER ARROWS
================================= */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:100;
    transition:0.3s ease;
    user-select:none;
}

.arrow:hover{
    background:#005bea;
    transform:translateY(-50%) scale(1.1);
    border-color:#005bea;
}

.prev{ left:25px; }
.next{ right:25px; }


/* ===============================
   DOTS
================================= */

.dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:100;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.45);
    cursor:pointer;
    transition:0.4s ease;
    border:none;
}

.dot.active{
    width:36px;
    border-radius:20px;
    background:#005bea;
}


/* ===============================
   ANIMATION
================================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:991px){

    .topbar{
        padding:12px 5%;
        font-size:13px;
    }

    header{
        top:45px;
    }

    nav{
        padding:16px 5%;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;

        top:100%;
        left:-100%;

        width:100%;

        background:#fff;

        flex-direction:column;

        gap:28px;

        padding:40px 0;

        box-shadow:0 10px 25px rgba(0,0,0,0.08);

        transition:0.5s ease;
    }

    .nav-links.active{
        left:0;
    }

    .hero{
        height:80vh;
    }

/* responsive hero */
    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-btn{
        padding:14px 30px;
        font-size:15px;
    }

    .arrow{
        width:50px;
        height:50px;

        font-size:18px;
    }

}

@media(max-width:768px){

    .topbar{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    header{
        top:70px;
    }

    .hero-content{
        width:92%;
    }

    .hero-content h1{
        font-size:30px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:13px;
    }

}

@media(max-width:576px){

    .topbar{
        display:none;
    }

    header{
        top:0;
    }

    nav{
        padding:15px 5%;
    }

    .logo-area img{
        height:40px;
    }

    .hero{
        height:70vh;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.25;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:12px;
        line-height:1.7;
        margin-bottom:28px;
    }

    .hero-btn{
        padding:13px 24px;

        font-size:14px;
    }

    .arrow{
      display: none;
    }

    .dots{
        bottom:25px;
    }

}








/* ===============================
   SERVICES SECTION
================================= */

.services-box{
    margin:70px 40px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.service-card{

    position:relative;
    padding:45px 35px;
    border-radius:28px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(14px);
    overflow:hidden;
    z-index:1;
    transition:0.5s ease;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
}


.service-card::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:220px;
    height:220px;
    background:rgba(0,91,234,0.08);
    border-radius:50%;
    transition:0.5s ease;
}


.service-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
      135deg,
      #005bea,
      #003b8f
    );
    z-index:-1;
    transition:0.5s ease;
}

.service-card:hover::after{
    bottom:0;
}

.service-card:hover::before{
    transform:scale(1.3);
}

.service-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 25px 45px rgba(0,91,234,0.20);
}


.service-card .icon-box{
    width:78px;
    height:78px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    background:rgba(0,91,234,0.08);

    transition:0.4s ease;
}


.service-card i{
    font-size:34px;

    color:#005bea;

    transition:0.4s ease;
}

.service-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    color:#8c1b8f;
    margin-bottom:18px;
    transition:0.4s ease;
}

.service-card p{
    font-size:14px;
    line-height:1.9;
    color:#18407c;
    transition:0.4s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i{
    color:#fff;
}

.service-card:hover .icon-box{
    background:rgba(255,255,255,0.12);
}


@media(max-width:1200px){

    .services-box{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-box{
        grid-template-columns:1fr;

        margin:48px 18px;
    }

    .service-card{
        padding:38px 28px;
    }

    .service-card h3{
        font-size:22px;
    }

}






/* ===============================
   PARALLAX CTA
================================= */

.cta-parallax{
    position:relative;

    height:420px;

    margin:60px 40px;

    border-radius:35px;

    overflow:hidden;

    background:
    url('assets/cta.jpeg')
    center/cover fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 25px 60px rgba(255, 255, 255, 0.12);
}


.cta-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
      rgba(0,0,0,0.40),
      rgba(0,0,0,0.40)
    );
}


.cta-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:850px;

    text-align:center;
}


.cta-mini{
    display:inline-block;
    padding:10px 24px;
    margin-bottom:24px;
    border-radius:50px;
    background:
    rgba(255,255,255,0.12);
    border:
    1px solid rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}


.cta-content h2{
    font-size:44px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:22px;
    text-shadow:0 10px 30px rgba(0,0,0,0.30);
}

.cta-content h2 span{
    color:#69b8ff;
}

.cta-content p{
    font-size:16px;
    line-height:1.8;
    color:#f1f1f1;
    max-width:700px;
    margin:auto;
    margin-bottom:34px;
}


.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 38px;
    border-radius:60px;
    background:
    linear-gradient(
      135deg,
      #005bea,
      #0040b3
    );

    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:
    0 15px 35px rgba(0,91,234,0.35);
}

.cta-btn:hover{
    transform:translateY(-5px);
    background:
    linear-gradient(
      135deg,
      #0072ff,
      #0048cc
    );
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:991px){

    .cta-parallax{
        height:360px;
    }

    .cta-content h2{
        font-size:44px;
    }

}

@media(max-width:768px){

    .cta-parallax{
        margin:40px 20px;
        height:360px;
        border-radius:24px;
        background-attachment:scroll;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:15px;
    }

}

@media(max-width:576px){

    .cta-parallax{
        height:340px;
    }

    .cta-mini{
        font-size:11px;

        padding:8px 18px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-btn{
        padding:14px 28px;

        font-size:14px;
    }

}







/* ===============================
   ABOUT SECTION
================================= */

.about{
    padding:8px 4%;

    background:#f8fbff;

    overflow:hidden;
}


.section-title{
    text-align:center;

    margin-bottom:60px;
}


.mini-title{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 24px;

    border-radius:50px;

    background:
    rgba(0,91,234,0.08);

    color:#005bea;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:24px;
}


.section-title h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:#111;
    margin-bottom:20px;
}


.section-title h2 span{
    color:#005bea;

    position:relative;
}

.section-title h2 span::after{
    content:'';

    position:absolute;

    left:0;
    bottom:8px;

    width:100%;
    height:14px;

    background:
    rgba(0,91,234,0.12);

    border-radius:30px;

    z-index:-1;
}

.section-title p{
    max-width:700px;
    margin:auto;
    font-size:15px;
    line-height:1.9;
    color:#67748e;
}


.about-wrapper{
    display:grid;

    grid-template-columns:
    0.95fr 1.05fr;

    gap:80px;

    align-items:center;
}
.about-image{
    position:relative;
}


.about-image img{
    width:100%;

    height:720px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);

    transition:0.5s ease;
}

.about-image:hover img{
    transform:scale(1.02);
}

.experience-box{
    position:absolute;

    bottom:28px;
    left:28px;

    padding:24px 30px;

    border-radius:24px;

    background:
    rgba(255,255,255,0.14);

    border:
    1px solid rgba(255,255,255,0.18);

    backdrop-filter:blur(14px);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.12);
}

.experience-box h3{
    font-size:42px;

    font-weight:800;

    color:#fff;

    margin-bottom:5px;
}


.experience-box span{
    color:#fff;

    font-size:15px;

    font-weight:500;
}


.about-content{
    position:relative;
}

.doctor-tag{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    background:
    rgba(0,91,234,0.08);

    color:#005bea;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:24px;
}



.about-content h3{
    font-size:40px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.about-content h3 span{
    color:#005bea;

    position:relative;
}

.about-content h3 span::after{
    content:'';

    position:absolute;

    left:0;
    bottom:8px;

    width:100%;
    height:14px;

    background:
    rgba(0,91,234,0.12);

    border-radius:30px;

    z-index:-1;
}

.about-content h4{
    font-size:18px;
    font-weight:700;
    color:#8c1b8f;
    margin-bottom:28px;
}

.about-content p{
    font-size:15px;
    line-height:1.95;
    color:#67748e;
    margin-bottom:22px;
}

.about-features{
    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:35px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 22px;
    border-radius:18px;
    background:#fff;
    border:
    1px solid rgba(0,0,0,0.04);
    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

.feature-box i{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    rgba(0,91,234,0.08);
    color:#005bea;
    font-size:18px;
    transition:0.4s ease;
}

.feature-box span{
    font-size:15px;
    font-weight:600;
    color:#222;
}



.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:
    0 18px 35px rgba(0,91,234,0.12);
}

.feature-box:hover i{
    background:#005bea;

    color:#fff;
}

/* ===============================
   LARGE DEVICES
================================= */

@media(max-width:1200px){

    .about-wrapper{
        grid-template-columns:1fr 1fr;

        gap:40px;
    }

    .about-image img{
        height:550px;
    }

    .section-title h2{
        font-size:48px;
    }

    .about-content h3{
        font-size:42px;
    }

}

/* ===============================
   TABLET
================================= */

@media(max-width:991px){

    .about{
        padding:70px 5%;
    }

    .about-wrapper{
        grid-template-columns:1fr;

        gap:35px;
    }

    .section-title{
        margin-bottom:35px;
    }

    .section-title h2{
        font-size:40px;

        line-height:1.3;
    }

    .section-title p{
        font-size:16px;
    }

    .about-image img{
        height:500px;
    }

    .about-content h3{
        font-size:36px;

        line-height:1.35;
    }

    .about-content h4{
        font-size:22px;
    }

    .about-content p{
        font-size:15px;
    }

}

/* ===============================
   MOBILE
================================= */

@media(max-width:768px){

    .about{
        padding:55px 5%;
    }

    .section-title{
        margin-bottom:25px;
    }

    .section-title span{
        padding:9px 20px;

        font-size:13px;

        margin-bottom:18px;
    }

    .section-title h2{
        font-size:32px;

        line-height:1.35;

        margin-bottom:14px;
    }

    .section-title p{
        font-size:14px;

        line-height:1.7;
    }

    .about-wrapper{
        gap:22px;
    }

    .about-image{
        margin-top:0;
    }

    .about-image img{
        height:380px;

        border-radius:22px;
    }

    .experience-box{
        left:14px;
        bottom:14px;

        padding:14px 18px;
    }

    .experience-box h3{
        font-size:24px;
    }

    .about-content h3{
        font-size:28px;

        line-height:1.4;

        margin-bottom:14px;
    }

    .about-content h4{
        font-size:18px;
    }

    .about-content p{
        font-size:14px;

        line-height:1.8;

        margin-bottom:16px;
    }

    .about-features{
        flex-direction:column;

        gap:14px;
    }

    .feature-box{
        width:100%;

        padding:16px;

        border-radius:18px;
    }

}

/* ===============================
   SMALL MOBILE
================================= */

@media(max-width:576px){

    .about{
        padding:45px 5%;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:13px;
    }

    .about-wrapper{
        gap:18px;
    }

    .about-image img{
        height:320px;

        border-radius:18px;

    }

    .about-content h3{
        font-size:24px;
    }

    .about-content h4{
        font-size:17px;
    }

    .about-content p{
        font-size:13px;
    }

    .feature-box i{
        width:50px;
        height:50px;

        font-size:18px;
    }

    .feature-box h5{
        font-size:15px;
    }

}







/* ===============================
   DENTAL SERVICES
================================= */

.dental-services{
    padding:80px 7%;

    background:
    linear-gradient(
      to bottom,
      #f8fbff,
      #ffffff
    );

    overflow:hidden;
}


.dental-services-title{
    text-align:center;

    margin-bottom:80px;
}

.dental-services-title span{
    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:
    rgba(0,91,234,0.08);

    color:#005bea;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.dental-services-title h2{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:18px;
}

.dental-services-title h2 span{
    color:#8c1b8f;
}

.dental-services-title p{
    max-width:700px;
    margin:auto;
    font-size:15px;
    line-height:1.9;
    color:#67748e;
}

.dental-services-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}

.dental-service-card{
    position:relative;
    padding:24px 18px;
    border-radius:30px;
    background:#fff;
    overflow:hidden;
    z-index:1;
    transition:box-shadow 0.5s ease, transform 0.5s ease;
    border:1px solid rgba(0,0,0,0.04);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.dental-service-card.visible{
    opacity:1;
    transform:translateY(0);
}

.dental-service-card::before{
    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
      135deg,
      #005bea,
      #003b9f
    );

    clip-path:circle(0% at 50% 100%);

    transition:0.6s ease;

    z-index:-1;
}


.dental-service-card::after{
    content:'';

    position:absolute;

    top:-100px;
    right:-100px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    rgba(0,91,234,0.06);
}


.dental-service-card:hover::before{
    clip-path:circle(140% at 50% 100%);
}

.dental-service-card:hover{
    transform:translateY(-14px);

    box-shadow:
    0 25px 55px rgba(0,91,234,0.18);
}

.dental-service-icon{
    width:78px;
    height:78px;

    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
      135deg,
      rgba(0,91,234,0.10),
      rgba(140,27,143,0.10)
    );

    margin:auto;

    margin-bottom:30px;

    transition:0.5s ease;
}

.dental-service-icon i{
    font-size:38px;

    color:#005bea;

    transition:0.5s ease;
}


.dental-service-card h3{
    font-size:18px;
    font-weight:800;
    line-height:1.3;
    text-align:center;
    color:#111;
    margin-bottom:18px;
    transition:0.5s ease;
}

.dental-service-card p{
    font-size:14px;
    line-height:1.9;
    text-align:center;
    color:#67748e;
    transition:0.5s ease;
}

.dental-line{
    width:70px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(135deg,#005bea,#8c1b8f);
    margin:16px auto;
}

.dental-service-card:hover h3,
.dental-service-card:hover p{
    color:#fff;
}

.dental-service-card:hover .dental-service-icon{
    background:
    rgba(255,255,255,0.14);

    transform:
    rotate(-6deg)
    scale(1.05);
}

.dental-service-card:hover .dental-service-icon i{
    color:#fff;
}

.dental-service-card:hover .dental-line{
    background:#fff;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:1200px){

    .dental-services-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .dental-services{
        padding:20px 5%;
    }

    .dental-services-title h2{
        font-size:40px;
    }

    .dental-services-title p{
        font-size:15px;
    }

    .dental-services-grid{
        grid-template-columns:1fr;
    }

    .dental-service-card{
        padding:42px 28px;
    }

    .dental-service-card h3{
        font-size:28px;
    }

    .dental-service-card p{
        font-size:15px;
    }

}

@media(max-width:576px){

    .dental-services-title h2{
        font-size:32px;
    }

    .dental-service-icon{
        width:82px;
        height:82px;
    }

    .dental-service-icon i{
        font-size:32px;
    }

}







/* ===============================
   APPOINTMENT SECTION
================================= */

.appointment-section{
    padding:80px 7%;

    background:
    linear-gradient(
      135deg,
      #f8fbff,
      #ffffff
    );
}


.appointment-container{
    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}


.appointment-left h2{
    font-size:56px;

    line-height:1.2;

    font-weight:800;

    color:#111;

    margin-bottom:22px;
}

.appointment-left h2 span{
    color:#005bea;
}

.appointment-left p{
    font-size:17px;

    line-height:1.9;

    color:#67748e;

    margin-bottom:35px;
}


.appointment-tag{
    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:
    rgba(0,91,234,0.08);

    color:#005bea;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:24px;
}

.appoint-feature{
    display:flex;

    gap:18px;

    align-items:flex-start;

    margin-bottom:25px;
}


.appoint-icon{
    width:65px;
    height:65px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
      135deg,
      #005bea,
      #0040b3
    );

    color:#fff;

    font-size:24px;

    flex-shrink:0;
}


.appoint-feature h4{
    font-size:20px;

    color:#111;

    margin-bottom:6px;
}

.appoint-feature p{
    margin:0;

    font-size:15px;
}

/* ===============================
   FORM BOX
================================= */

.appointment-form-box{
    background:#fff;

    padding:45px;

    border-radius:35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}



.input-box{
    margin-bottom:22px;
}


.input-box input,
.input-box select,
.input-box textarea{
    width:100%;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:18px;

    background:#f4f8ff;

    font-size:15px;

    color:#222;

    transition:0.4s ease;
}

.input-box textarea{
    height:140px;

    resize:none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    background:#fff;

    box-shadow:
    0 0 0 3px rgba(0,91,234,0.10);
}

.appointment-btn{
    width:100%;

    border:none;

    padding:18px;

    border-radius:18px;

    background:linear-gradient(
      135deg,
      #005bea,
      #0040b3
    );

    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    transition:0.4s ease;
}

.appointment-btn i{
    font-size:22px;
}

.appointment-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(37,211,102,0.25);
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:991px){

    .appointment-container{
        grid-template-columns:1fr;
    }

    .appointment-left h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .appointment-section{
        padding:50px 5%;
    }

    .appointment-left h2{
        font-size:34px;
    }

    .appointment-form-box{
        padding:24px 18px;
    }

}

@media(max-width:576px){

    .appointment-left h2{
        font-size:28px;
    }

    .appointment-left p{
        font-size:15px;
    }

    .appoint-feature{
        align-items:flex-start;
    }

}












/* ===============================
   FOOTER SECTION
================================= */

.footer{
    position:relative;

    padding:70px 6% 25px;

    background:
    linear-gradient(
      135deg,
      #04152d,
      #07244b
    );

    overflow:hidden;
}

.footer::before{
    content:'';

    position:absolute;

    top:-120px;
    left:-120px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:
    rgba(0,91,234,0.14);

    filter:blur(80px);
}


.footer-wrapper{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    1.2fr 1fr 1fr 1fr;

    gap:35px;

    padding-bottom:35px;

    border-bottom:
    1px solid rgba(255,255,255,0.10);
}


.footer-text{
    font-size:15px;

    line-height:1.9;

    color:
    rgba(255,255,255,0.72);

    margin-bottom:22px;
}


.footer-contact{
    display:flex;

    flex-direction:column;

    gap:12px;

    margin-bottom:22px;
}

.footer-contact a{
    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    transition:0.4s ease;
}

.footer-contact a i{
    width:38px;
    height:38px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,0.08);

    color:#4da6ff;

    transition:0.4s ease;
}

.footer-contact a:hover{
    color:#4da6ff;
}

.footer-contact a:hover i{
    background:#005bea;

    color:#fff;
}



.footer-col h3{
    position:relative;

    font-size:21px;

    font-weight:700;

    color:#fff;

    margin-bottom:22px;
}


.footer-col h3::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:45px;
    height:3px;

    border-radius:20px;

    background:
    linear-gradient(
      135deg,
      #4da6ff,
      #8c1b8f
    );
}


.footer-col ul{
    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-col ul li{
    list-style:none;
}

.footer-col ul li a{
    position:relative;

    color:
    rgba(255,255,255,0.72);

    font-size:15px;

    transition:0.4s ease;
}

.footer-col ul li a:hover{
    color:#4da6ff;

    padding-left:8px;
}


.footer-bottom{
    width:100%;

    padding:22px 0 0;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    border-top:
    1px solid rgba(255,255,255,0.10);
}


.footer-bottom p{
    color:
    rgba(255,255,255,0.75);

    font-size:15px;

    font-weight:400;
}

.footer-credit{
    display:flex;

    align-items:center;

    gap:12px;
}

.footer-credit span{
    color:
    rgba(255,255,255,0.75);

    font-size:15px;
}

.footer-credit img{
    height:34px;

    width:auto;

    object-fit:contain;
}


.footer-logo{
    display:inline-block;

    margin-bottom:20px;
}

.footer-logo img{
    height:75px;

    width:auto;

    object-fit:contain;
}

/* ===============================
   RESPONSIVE
================================= */


@media(max-width:1200px){

    .footer-wrapper{
        grid-template-columns:
        repeat(2,1fr);

        gap:35px;
    }

}


@media(max-width:768px){

    .footer{
        padding:60px 5% 25px;

        text-align:center;
    }


    .footer-wrapper{
        grid-template-columns:1fr;

        gap:30px;

        justify-items:center;
    }


    .footer-col{
        width:100%;

        display:flex;

        flex-direction:column;

        align-items:center;
    }


    .footer-logo{
        display:flex;

        align-items:center;
        justify-content:center;

        margin:auto;

        margin-bottom:18px;
    }

    .footer-logo img{
        height:65px;
    }

    .footer-col h3{
        position:relative;

        display:inline-block;

        margin-bottom:22px;
    }

    .footer-col h3::after{
        content:'';

        position:absolute;

        left:50%;
        bottom:-8px;

        transform:translateX(-50%);

        width:50px;
        height:3px;

        border-radius:20px;

        background:#005bea;
    }


    .footer-links{
        align-items:center;
    }

    .footer-contact{
        align-items:center;
    }

    .footer-contact a{
        justify-content:center;

        text-align:center;

        font-size:14px;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:12px;

        text-align:center;
    }

    .footer-bottom p{
        line-height:1.7;
    }

}



@media(max-width:576px){

    .footer{
        padding:50px 5% 20px;
    }

    .footer-wrapper{
        gap:24px;
    }

    .footer-logo img{
        height:58px;
    }

    .footer-contact a{
        font-size:13px;
    }

    .footer-bottom p{
        font-size:13px;

        line-height:1.7;
    }

}


/* ===============================
   CONTACT SECTION
================================= */

.contact-section{
    width:100%;

    padding:10px 0 0;

    background:#f7f9fc;
}


.contact-title{
    text-align:center;

    margin-bottom:50px;
}

.contact-title h2{
    position:relative;

    display:inline-block;

    font-size:56px;

    font-weight:800;

    color:#8c1b8f;

    margin-bottom:22px;
}

.contact-title h2::after{
    content:'';

    position:absolute;

    left:50%;
    bottom:-12px;

    transform:translateX(-50%);

    width:60px;
    height:4px;

    border-radius:20px;

    background:
    linear-gradient(
      135deg,
      #005bea,
      #8c1b8f
    );
}

.contact-title p{
    font-size:18px;

    color:#003b8f;

    line-height:1.8;
}

.map-box{
    width:100%;

    height:400px;

    overflow:hidden;

    position:relative;
    margin-bottom: 10px;
}

.map-box iframe{
    width:100%;
    height:100%;

    border:none;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:768px){

    .contact-section{
        padding:10px 0 0;
    }

    .contact-title h2{
        font-size:40px;
    }

    .contact-title p{
        font-size:15px;

        padding:0 20px;
    }

    .map-box{
        height:320px;
    }

}

@media(max-width:576px){

    .contact-title h2{
        font-size:32px;
    }

    .map-box{
        height:280px;
    }

}






/* ===============================
   TESTIMONIAL SECTION
================================= */

.testimonial-section{
    padding:60px 7%;
    background:#f7f9fc;
    overflow:hidden;
}

.testimonial-title{
    text-align:center;
    margin-bottom:70px;
}

.testimonial-title h2{
    position:relative;
    display:inline-block;
    font-size:42px;
    font-weight:800;
    color:#8c1b8f;
    margin-bottom:20px;
}

.testimonial-title h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-12px;
    transform:translateX(-50%);
    width:65px;
    height:4px;
    border-radius:20px;
    background:#005bea;
}

.testimonial-title p{
    font-size:15px;
    color:#003b8f;
}

.testimonial-slider{
    width:100%;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;

    animation:testimonialSlide 25s linear infinite;
}

.testimonial-card{
    width:380px;

    background:#fff;

    padding:35px;

    border-radius:28px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

    transition:0.4s ease;

    border:
    1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}


.quote-icon{
    font-size:34px;
    color:#7d9bcf;
    margin-bottom:20px;
}

.testimonial-card p{
    font-size:15px;
    line-height:1.9;
    color:#003b8f;
    margin-bottom:30px;
    font-style:italic;
}

.testimonial-user h4{
    font-size:17px;
    color:#8c1b8f;
    margin-bottom:5px;
}

.testimonial-user span{
    color:#666;
    font-size:14px;
}

@keyframes testimonialSlide{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* ===============================
   TESTIMONIAL RESPONSIVE
================================= */

/* LAPTOP */

@media(max-width:1200px){

    .testimonial-card{
        width:320px;
    }

}


@media(max-width:991px){

    .testimonial-section{
        padding:70px 5%;
    }

    .testimonial-title{
        margin-bottom:40px;
    }

    .testimonial-title h2{
        font-size:42px;
    }

    .testimonial-title p{
        font-size:16px;
    }

    .testimonial-card{
        width:300px;

        padding:22px;
    }

    .testimonial-card p{
        font-size:15px;

        line-height:1.8;
    }

}


@media(max-width:768px){

    .testimonial-section{
        padding:80px 5%;
    }

    .testimonial-title{
        margin-bottom:28px;
    }

    .testimonial-title h2{
        font-size:34px;

        line-height:1.3;

        margin-bottom:12px;
    }

    .testimonial-title p{
        font-size:14px;

        line-height:1.7;
    }

    .testimonial-slider{
        margin-top:10px;
    }

    .testimonial-track{
        gap:18px;
    }

    .testimonial-card{
        width:270px;

        padding:18px;

        border-radius:22px;
    }

    .testimonial-card p{
        font-size:14px;

        line-height:1.8;
    }

    .testimonial-user h3{
        font-size:18px;
    }

}


@media(max-width:576px){

    .testimonial-section{
        padding:30px 5%;
    }

    .testimonial-title{
        margin-bottom:22px;
    }

    .testimonial-title h2{
        font-size:28px;
    }

    .testimonial-title p{
        font-size:13px;
    }

    .testimonial-track{
        gap:15px;
    }

    .testimonial-card{
        width:240px;

        padding:16px;
    }

    .testimonial-card p{
        font-size:13px;
    }

    .testimonial-user h3{
        font-size:16px;
    }

}





/* ===============================
   GALLERY SECTION
================================= */

.gallery-section{
    padding:40px 0;

    background:#ffffff;

    overflow:hidden;
}

.gallery-title{
    text-align:center;

    margin-bottom:70px;
}

.gallery-title h2{
    position:relative;

    display:inline-block;

    font-size:58px;
    font-weight:800;

    color:#8c1b8f;

    margin-bottom:18px;
}

.gallery-title h2::after{
    content:'';

    position:absolute;

    left:50%;
    bottom:-12px;

    transform:translateX(-50%);

    width:70px;
    height:4px;

    border-radius:20px;

    background:
    linear-gradient(
      135deg,
      #005bea,
      #8c1b8f
    );
}

.gallery-title p{
    font-size:18px;

    color:#003b8f;
}

.gallery-slider{
    width:100%;

    overflow:hidden;

    position:relative;
}

.gallery-track{
    display:flex;

    gap:28px;

    width:max-content;

    animation:
    galleryScroll 120s linear infinite;
}

.gallery-card{
    width:320px;
    height:430px;

    border-radius:28px;

    overflow:hidden;

    flex-shrink:0;

    position:relative;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.08);

    transition:0.5s ease;
}
.gallery-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.6s ease;
}

.gallery-card:hover{
    transform:translateY(-12px);
}

.gallery-card:hover img{
    transform:scale(1.08);
}

@keyframes galleryScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .gallery-section{
        padding:10px 0;
    }

    .gallery-title h2{
        font-size:40px;
    }

    .gallery-title p{
        font-size:15px;
    }

    .gallery-track{
        gap:18px;
    }

    .gallery-card{
        width:240px;
        height:330px;
    }

}








/* ===============================
   FLOATING BUTTONS
================================= */

.floating-buttons{
    position:fixed;

    left:22px;
    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:16px;

    z-index:99999;
}

.float-btn{
    position:relative;

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:26px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.18);

    transition:0.4s ease;
}

.float-btn:hover{
    transform:
    translateY(-6px)
    scale(1.08);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.25);
}

.float-btn i{
    position:relative;

    z-index:2;

    line-height:1;
}

.float-btn.whatsapp{
    background:
    linear-gradient(
      135deg,
      #25d366,
      #128c7e
    );
}

.float-btn.call{
    background:
    linear-gradient(
      135deg,
      #005bea,
      #003b8f
    );
}

.float-btn.location{
    background:
    linear-gradient(
      135deg,
      #ff512f,
      #dd2476
    );
}

.float-btn::before{
    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    background:inherit;

    z-index:1;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:0.7;
    }

    70%{
        transform:scale(1.6);
        opacity:0;
    }

    100%{
        opacity:0;
    }

}
.float-btn::after{
    position:absolute;

    left:75px;

    background:#111;

    color:#fff;

    padding:8px 14px;

    border-radius:10px;

    font-size:14px;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:0.4s ease;
}

.whatsapp::after{
    content:'Chat on WhatsApp';
}

.call::after{
    content:'Call Now';
}

.location::after{
    content:'Get Location';
}

.float-btn:hover::after{
    opacity:1;
    visibility:visible;

    left:82px;
}

@media(max-width:768px){

    .floating-buttons{
        left:15px;
        bottom:20px;

        gap:12px;
    }

    .float-btn{
        width:52px;
        height:52px;

        font-size:22px;
    }

    .float-btn::after{
        display:none;
    }

}








/* ===============================
   FAQ SECTION
================================= */

.faq-section{
    padding:40px 7%;

    background:
    linear-gradient(
      180deg,
      #fffcfc,
      #eef5ff
    );
}


.faq-heading{
    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:70px;
}

.faq-heading span{
    display:inline-block;

    padding:10px 24px;

    background:
    rgba(0,91,234,0.1);

    color:#005bea;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;
}

.faq-heading h2{
    font-size:40px;

    line-height:1.3;

    font-weight:700;

    color:#8c1b8f;

    margin-bottom:20px;
}


.faq-heading p{
    font-size:16px;

    line-height:1.6;

    color:#555;
}

.faq-container{
    max-width:1000px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:24px;
}

.faq-item{
    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:
    1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.05);

    transition:0.4s ease;
}

.faq-item:hover{
    transform:translateY(-5px);

    box-shadow:
    0 18px 45px rgba(0,0,0,0.08);
}


.faq-item.active{
    border-color:#005bea;
}

.faq-question{
    padding:18px 24px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    gap:20px;
}

.faq-question h3{
    font-size:24px;

    line-height:1.5;

    font-weight:600;

    color:#111;
}

.faq-question i{
    min-width:52px;
    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(0,91,234,0.08);

    color:#005bea;

    font-size:18px;

    transition:0.4s ease;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);

    background:#005bea;

    color:#fff;
}

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:0.5s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-answer p{
    padding:
    0 35px 35px;

    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* ===============================
   MOBILE
================================= */

@media(max-width:768px){

    .faq-section{
        padding:40px 5%;
    }

    .faq-heading h2{
        font-size:38px;
    }

    .faq-heading p{
        font-size:15px;
    }

    .faq-question{
        padding:24px 20px;
    }

    .faq-question h3{
        font-size:17px;
    }

    .faq-question i{
        min-width:42px;
        height:42px;

        font-size:15px;
    }

    .faq-answer p{
        padding:
        0 20px 25px;

        font-size:15px;
    }

}