body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
/*    padding-top: 115px;*/
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*-------Header Css start here---------*/

.header-top {
    background-color: #0085ca;
    color: white;
    font-size: 0.9rem;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: transform 0.3s ease;
}

    .header-top.hide {
        transform: translateY(-100%);
    }

    .header-top a {
        color: white;
        text-decoration: none;
    }

        .header-top a:hover {
            text-decoration: underline;
        }

    .header-top .contact-info i {
        margin-right: 5px;
    }

.contact-info a {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

.header-top .social-icons a {
    color: white;
    margin-left: 10px;
    font-size: 1.1rem;
}

    .header-top .social-icons a:hover {
        color: #d1d1d1;
    }

/* Header Main */
.header-main {
    position: fixed;
    top: 35px; /* initial position below header-top */
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    transition: top 0.3s ease;
}

    /* When header-top is hidden, move header-main up */
    .header-main.header-up {
        top: 0;
    }

    .header-main .navbar-nav .nav-link {
        font-weight: 600;
        color: #333;
        padding: 8px 15px;
    }

        .header-main .navbar-nav .nav-link:hover,
        .header-main .navbar-nav .nav-link.active {
            color: #28a745;
        }

    .header-main .navbar-brand img {
        max-height: 62px;
    }

/* Dropdown menus hidden by default */
.navbar-nav .dropdown-menu {
    display: none;
}

.dropdown-menu {
    background-color: #ffffff;
    padding: 5px 0;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
    border: none !important;
}

    .dropdown-menu li {
        line-height: 22px;
        letter-spacing: 1px;
        border-bottom: 1px solid #8080802b;
    }

.dropdown-item {
    font-weight: 600 !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

    .dropdown-item:hover {
        color: #6fc244 !important;
        background-color: #f4f4f4 !important;
        font-weight: 600 !important;
    }

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown > .dropdown-toggle::after {
        transition: transform 0.15s linear;
    }

    .navbar-nav .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown > .dropdown-toggle {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
   
    .header-main {
        top: 0;
    }

    body {
        padding-top: 70px;
    }
    .header-top {
        display: none !important;
                z-index: 0;
    }

}


/*-------Header Css End here---------*/



/*-------------About Css Start Here--------------------*/
.breadcrumb-banner {
    background-image: url("../image/breadcrumb/breadcrumb-about-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
    margin-top: 130px;
}

.breadcrumbHead {
    color: #05145d;
}

.btn-consultant {
    font-weight: 500 !important;
    text-transform: uppercase !important;
    background-color: #70BA41 !important;
    padding: 3% 6% 3% 6% !important;
    color:#fff !important;
    border-radius:0 !important;
}
    .btn-consultant:hover {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%) !important;
    }

@media (max-width: 768px) {
    .breadcrumb-banner {
        min-height: 150px;
        background-position-x: 73%;
        margin-top: 25px;
    }
}

.aboutHead {
    font-size: 22px;
    color: #70BA41;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1.5px;
}
.aboutHeading {
    color: #000 !important;
    font-size: 30px;
}

.leaf {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -3%;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}
.para {
    text-align: justify;
    font-size: 16px;
}

/*-------------About Css End Here--------------------*/



/* Owl Carousel custom styles for Awards Night */
.awards-night img {
    border-radius: 12px;
}

.owl-carousel .item {
    padding: 5px;
}
.awards-night .owl-carousel .item {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .awards-night .owl-carousel .item img {
        border-radius: 10px;
        width: 100%;
        height: auto;
    }

.awards-night small.text-success {
    letter-spacing: 2px;
}

.awards-night h2 {
    font-weight: 900;
}

.awards-night hr {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.owl-prev {
    position: absolute;
    top: 38%;
}
    .owl-nav button span {
        font-size: 50px;
    }
.owl-next {
    position: absolute;
    top: 38%;
    right: 0;
}

.Hero-banner .owl-carousel .owl-next {
    position: absolute;
    top: 38%;
    right: 10px;
    transform: translateY(-50%) !important;
    /*background: rgba(0,0,0,0.4) !important;*/
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.Hero-banner .owl-carousel .owl-prev {
    position: absolute;
    top: 38%;
    left: 10px;
    transform: translateY(-50%) !important;
    /*background: rgba(0,0,0,0.4) !important;*/
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/*-------------------footer css start here----------------*/
.footer-section {
    background-color: #000624;
}
.footerlogo {
    margin: 0px 0px 0px 0px;
    padding: 4% 4% 4% 4%;
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
}

.footerlogo img{
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    width: 100%;
}
.footer-section ul li {
    margin-bottom: 6px;
    color: #ccc;
}

.footer-section a:hover {
    color: #0dcaf0 !important;
}

@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }

        .footer-section .d-flex {
            justify-content: center;
        }
}

@media (max-width: 576px) {
    .facilities .d-flex {
        flex-direction: column;
    }

    .facilities ul {
        margin-right: 0 !important;
    }
}

/*-------------------footer css end here----------------*/


.tick {
    width: 50px;
    height: 50px;
    border: 2px solid #70BA41;
    border-radius: 50%;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tick2 {
    width: 36px;
    height: 36px;
    border: 2px solid #70BA41;
    border-radius: 50%;
    color: #70BA41;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.leftSec {
    background-color: #f9f5f5;
}
.rightArrow {
    color: #70BA41;
    border: 1px solid;
    border-radius: 50%;
    padding: 3px 4px;
    font-size: 12px;
}

.navbar-toggler{
    border:none !important;
}
    .navbar-toggler:focus {
        box-shadow: none !important;
    }


.hairremovalbdr {
    border-style: solid;
    border-width: 15px 15px 15px 15px;
    border-color: #FFEBE9;
    padding: 0px 20px;
}

.hairRemovCard1 {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.15);
    padding: 20px;
    height: 100%;
}


.media {
    overflow: hidden; /* prevents image from overflowing */
    border: 4px solid transparent; /* default border for smooth transition */
    transition: border 0.3s ease-in-out; /* smooth border animation */
}

    .media img {
        width: 100%;
        cursor: pointer;
        transform: scale(1);
        transition: transform 0.3s ease-in-out;
    }

        .media img:hover {
            transform: scale(1.12);
        }

    .media:hover {
        border: 8px solid #FF9494;
    }

/* Overlay preview */
.preview-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    padding-top: 60px;
    background: rgba(0,0,0,0.85);
    text-align: center;
}

.preview-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation: zoomIn .25s ease;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.close-btn {
    top: 20px;
    right: 40px;
    font-size: 40px;
    transform: none;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

@keyframes zoomIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.certiImg {
    aspect-ratio: 4/4 !important;
}

.atag{
    text-decoration:none;
    cursor:pointer;
}
.footerlist {
    gap:10px
}
.footerlist ul {
    padding-left: 5px
}
.footerlist ul li{
    list-style-type:none;
}

.footerlist ul li a{
    text-decoration:none;
    color:#fff
}


#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #555;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 18px;
}

    #scrollTopBtn:hover {
        background-color: #333;
    }




/* Floating WhatsApp button container */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

/* Button style */
.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 50px; /* collapsed width */
}

    /* WhatsApp icon */
    .whatsapp-button img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    /* Label text hidden initially */
    .whatsapp-button span {
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* On hover: expand button */
    .whatsapp-button:hover {
        width: 160px; /* expanded width */
    }

        .whatsapp-button:hover span {
            opacity: 1;
        }

.whyusCard .tick2 {
    transition: transform 0.3s ease; /* smooth animation */
}

.whyusCard:hover .tick2 {
    transform: translateX(6px); /* slide right */
}



.breadcrumb-banner-About {
    background-image: url("../image/herobanner/hero1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
    margin-top: 130px;
}

.breadcrumbHead-About {
    color: #05145d;
}

@media (max-width: 768px) {
    .breadcrumb-banner-About {
        min-height: 150px;
        background-position-x: 73%;
        margin-top: 25px;
    }
}




/*-----------------Home page-----------------------*/
.Hero-banner {
    margin-top: 75px;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.hero-text {
    font-family: "Alice", serif;
}

    .hero-text h1 {
        font-size: 55px;
        font-weight: 500;
        line-height: 1.3;
    }

        .hero-text h1 .green {
            color: #55922E;
            font-size: 70px;
        }

        .hero-text h1 .blue {
            color: #006AA0;
            font-size: 70px;
        }

    .hero-text p {
        font-family: "Nunito Sans", sans-serif;
        font-size: 14px;
        color: #555;
        margin: 15px 0;
    }

.btn-appointment {
    background: #70BA41;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    transition: 0.3s;
    text-decoration:none;
}

    .btn-appointment:hover {
        background: #1c6d28;
    }

/* Center image */
.hero-img {
    position: relative;
    display: inline-block;
}

    .hero-img img.main {
        border-radius: 12px;
        max-width: 100%;
        height: auto;
    }

    .hero-img img.leaf {
        position: absolute;
        bottom: 0;
        right: 0px;
        width: 160px;
        border: none;
    }


.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}



.dental-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #84A76E;
    padding: 36px 14px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s;
}

.aesthetic-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #55922E;
    padding: 36px 14px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s
}



.hero-buttons a i {
    transform: rotate(210deg);
    background-color: #fff;
    color: #000;
    padding: 14px;
    border-radius: 50%;
    font-size: 20px;
    margin-top: 45px;
}

.numBlue {
    color: #05356F;
    font-size: 50px !important;
    margin: 0 !important;
    cursor: pointer;
}
.numGreen {
    color: #60AE2E;
    font-size: 50px !important;
    margin: 0 !important;
    cursor: pointer;
}

@media (max-width: 991px) {

    .hero-buttons {
        flex-direction: row;
        writing-mode: horizontal-tb;
        transform: none;
    }
}

@media (max-width: 768px) {

    .hero-buttons {
        rotate: 90deg;
    }
    .dental-btn, .aesthetic-btn {
        padding: 22px 8px;
        font-size: 24px;
    }

    .Hero-banner {
        margin-top: 0px;
    }
    .hero-buttons a i {
        transform: rotate(180deg);
    }
    .numBlue {
        font-size: 42px !important;
    }
    .numGreen {
        font-size: 42px !important;
    }
    .expcard{
        padding-bottom:20px;
    }
    .hero-text h1 {
        font-size: 28px;
    }

        .hero-text h1 .green {
            font-size: 36px;
        }

        .hero-text h1 .blue {
            font-size: 36px;
        }
}


.stats-section {
    background: #fff;
}
.numBox {
    box-shadow: 0px 0px 14px 0px #00000040;
}

.stat-box {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

  



/*-----------image scroll css start-------*/
.dental-trtment {
    background: #0085CA;
}

.sliderDiv {
    overflow: hidden;
}

.slider {
    width: 100%;
    cursor: grab;
}

.slider_wrap {
    display: flex;
    align-items: center;
}

.slider_item {
    flex: 0 0 auto; /* prevent shrinking */
    margin: 0 10px; /* spacing */
    display: inline-block;
    width: 250px; /* Fixed card width */
    margin-right: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    vertical-align: top;
    text-align: center;
}

    .slider_item figure {
        padding: 16px;
        position: relative;
        width: 100%;
        height: 180px;
        margin: 0;
        overflow: hidden;
    }

        .slider_item figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 10px;
        }

    .slider_item p {
        margin: 10px 0;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

.slider_progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 20vw;
    height: 2px;
    margin: 2em;
    /* background: rgba(255, 255, 255, 0.1); */
}

/* .progress_bar {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        transform: scaleX(0);
        transform-origin: 0 0;
    } */

.awardI img {
    width: 100%;
}

/*-----------image scroll css End-------*/


/*home services*/

.services-section {
    background: #0a7cc2; /* same blue as your design */
    color: #fff;
}

.service-item {
    align-items: flex-start;
}

.service-num {
    font-size: 20px;
    min-width: 40px;
    color: #e1f1ff;
}

.service-content h5 {
    font-weight: 600;
    color: #fff;
}

.btn-success {
    background: #60AE2E;
    border: none;
}

    .btn-success:hover {
        background: #4a8d25;
    }

.service-item {
    transition: all 0.3s ease-in-out;
}

    .service-item:hover {
        padding: 0 20px;
        background: #fff;
        cursor: pointer;
    }

        .service-item:hover .service-num,
        .service-item:hover h5,
        .service-item:hover p {
            color: #000 !important;
        }


@media (max-width: 576px) {
    .service-item {
        flex-direction: column;
    }

    .service-num {
        margin-bottom: 5px;
    }
}

/*home services end*/

.bg-shape {
    background: #70BA41;
    border-radius: 20px;
}

.expert-card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    top: 30px;
    left: 30px;
}

@media (max-width: 768px) {
    .expert-card{
        left:0px;
    }
}

.technology-section h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}



.tech-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-card img {
        object-fit: contain;
        border: 1px solid #ebebeb;
        border-radius: 5px;
        cursor: pointer;
    }

    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }




.baDiv {
    display: flex;
    flex-wrap: wrap; /* allow wrapping on small screens */
    justify-content: center; /* center align */
    gap: 20px; /* spacing between items */
}

.img-comp-container {
    position: relative;
    width: 300px; /* fixed width for each item */
    height: 300px; /* match your image height */
    overflow: hidden;
    border-radius: 10px;
    flex: 1 1 250px;
}

.img-comp-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    .img-comp-img img {
        display: block;
        vertical-align: middle;
    }

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    opacity: 0.7;
    border-radius: 50%;
}

   .testimonials {
        background: #fff;
    }

    .testimonial-item {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        min-height: 220px;
    }

        .testimonial-item p {
            font-style: italic;
            color: #444;
            font-size: 15px;
        }

        .testimonial-item h5 {
            margin-top: 20px;
            font-size: 16px;
            font-weight: bold;
        }

        .testimonial-item span {
            font-weight: normal;
            color: #777;
            margin-left: 5px;
        }

    .owl-dots {
        text-align: center;
        margin-top: 20px;
    }

    .owl-dot span {
        width: 12px;
        height: 12px;
        background: #ccc;
        display: inline-block;
        border-radius: 50%;
        margin: 5px;
    }

    .owl-dot.active span {
        background: #28a745; /* green active dot */
    }

    .owl-stage-outer{
        padding:20px 0px !important;
    }


.testimonials-carousel, .owl-stage-outer {
    overflow: visible;
}

    .testimonials-carousel .owl-item {
        transition: transform 0.4s ease;
        z-index: 1;
    }

        .testimonials-carousel .owl-item.center {
            transform: scale(1.1);
            z-index: 2;
        }

.experimg{
    width:100%;
}