



:root{
    --announcement-height: 46px;
    --navigation-height : 83px;
    --header-height: calc(var(--announcement-height) + var(--navigation-height));
    --navigation-margin-top:var(--header-height);

    --announcement-height-lg: 30px;
    --navigation-height-lg : 100px;
    --header-height-lg: calc(var(--announcement-height-lg) + var(--navigation-height-lg));
    --navigation-margin-top-lg:var(--header-height-lg);
}


#app{
    margin-top : var(--navigation-margin-top-lg);
}

.hvD-400{
    /* font-family: 'HvDTrial Brandon Grotesque', sans-serif !important; */
    font-family: 'Mont', sans-serif !important;
    font-weight: 400 !important
}


.product-image-gallery {
    display: flex;
    flex-direction: row; /* Ensure items are in a row layout */
    align-items: flex-start; /* Align items to the top */
}
/* Default: Desktop View (Vertical Layout) */
.additional-image-wrap {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center thumbnails horizontally */
    justify-content: flex-start; /* Align thumbnails to the top */
    gap: 10px; /* Add consistent spacing between thumbnails */
    width: 80px; /* Fixed width for thumbnails */
    height: auto; /* Allow the container to grow as needed */
}

/* Thumbnail Container */
.additional-image {
    width: 80px; /* Thumbnail width */
    height: 80px; /* Thumbnail height */
    overflow: hidden; /* Ensure images don't overflow the container */
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
}

/* Thumbnail Images */
.additional-image img {
    width: 100%; /* Fill the container width */
    height: 100%; /* Fill the container height */
    object-fit: cover; /* Ensure images fill the container without distortion */
    object-position: center; /* Center the image within the container */
}



.additional-image {
    width: 80px; /* Adjust thumbnail width */
    height: 80px; /* Adjust thumbnail height */
    overflow: hidden; /* Ensures the image doesn't overflow its container */
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
    position: relative; /* Ensures child elements can use absolute positioning */
}

.additional-image-wrap img:hover {
    border-color: #333; /* Highlight on hover */
}


.base-image-wrap {
    flex: 1; /* Allow the base image to occupy remaining space */
    max-width: calc(100% - 100px); /* Adjust for the thumbnail width */
}

.base-image-slide img {
    width: 100%;
    display: block;
}

.base-image-inner {
    max-width: 100%;
}

.additional-image {
    width: 80px; /* Thumbnail width */
    height: 80px; /* Thumbnail height */
}

.banner-title-wrapper{
    align-items: center;
    justify-content: center;
}

/* Mobile View */
@media screen and (max-width: 768px) {

    /* General Card Styling */
    .custom-treatment-card {
        max-width: 400px;
        background: #d9f2ff; /* Light blue */
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 25px;
        text-align: center;
        border-radius: 0;
    }

    .product-image-gallery {
        flex-direction: column; /* Stack items vertically */
    }

    .base-image-wrap {
        order: 1; /* Ensure base image is displayed first */
        margin: 0 auto; /* Center the base image */
    }

    .additional-image {
        width: 60px; /* Smaller thumbnails on mobile */
        height: 60px;
    }


    .additional-image-wrap {
        order: 2; /* Place thumbnails below the base image */
        flex-direction: row; /* Arrange thumbnails horizontally */
        width: 100%; /* Full width for thumbnails */
        margin: 10px 0 0; /* Space above thumbnails */
        justify-content: center; /* Center thumbnails */
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .additional-image-wrap img {
        width: auto;
        height: 60px; /* Fixed height for thumbnails */
        margin: 0 5px; /* Space between thumbnails */
    }
}

.cover-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

/* .about-us-wrap .banner{
    margin-top:15%;
} */

.header-wrap-inner .header-column-left{
    min-width: 20% !important;
}

.header-wrap-inner .header-category-wrap{
    min-width: 40% !important;
}

/* ✅ Mobile only (≥768px) */
@media (max-width: 768px){
    .about-us-wrap .banner img{
        height:25vh;
        object-fit:cover;
    }

    .carousel-cell{
        background: #d9f2ff;
    }


    #app{
        margin-top : var(--navigation-margin-top);
    }
}


/* ✅ Tablet (≥768px) */
@media (min-width: 768px) {

    .header-wrap-inner .header-column-left{
        min-width: 30%;
    }

    .header-wrap-inner .header-category-wrap{
        min-width: 30% !important;
    }


}



/* ✅ Desktop (≥1024px) */
@media (min-width: 1024px) {

    /* .about-us-wrap .banner{
        margin-top:5%;
    } */



}

/* ✅ About Us Content Box */
/* ✅ Hide All Content by Default */
.aboutUsTabs_content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ✅ Show Active Content */
.aboutUsTabs_content.aboutUsTabs_active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* General Card Styling */
.custom-card {
/* min-width: 400px; */
    /* min-height: 400px; */
    width:100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0px 92.8px 0px #0000001A;
    padding: 30px;
    margin-left: 5%;
    margin-right: 5%;
}

/* Check Icon Image */
.custom-icon img {
    width: 50px;  /* Adjust size as needed */
    height: 50px;
    margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 480px) {
    .custom-card {
        padding: 20px;
        max-width: 90%;

    }

    .custom-icon img {
        width: 70px;
        height: 70px;
    }
}

/* General Styles */
body {
    /* font-family: 'HvDTrial Brandon Grotesque', sans-serif; */
    font-family: 'Mont', sans-serif;
    background: #f5f5f5;
    text-align: center;
}

/* Carousel Wrapper */
.carousel {
    margin: auto;
    width: 80%;
    max-width: 600px;
}

/* Individual Slide */
.carousel-cell {
    /* background: #d9f2ff;  */
    padding: 20px;
    text-align: center;
    width: 100%; /* Ensure full width */
    /* height: 100% !important; */
}

/* Doctor Card Styling */

/* Explore Button */
/*.explore-btn {*/
/*    background: #1E91BD;*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 10px 20px;*/
/*    font-size: 16px;*/
/*    border-radius: 5px;*/
/*    cursor: pointer;*/
/*    margin-top: 10px;*/
/*    width:100%;*/
/*    border-radius:120px;*/
/*}*/

/*.explore-btn:hover {*/
/*    background: #0056b3;*/
/*}*/

#our_doctors {
    .flickity-prev-next-button.previous {

        left:-35px;
    }

    .flickity-prev-next-button.next {
        right:-35px;
    }

    .flickity-prev-next-button svg{
        position:absolute;
        left: 25%;
        top: 25%;
        width: 45%;
        height: 45%;

    }


    /* Flickity Arrow Customization */
    .flickity-prev-next-button {
        background: #1E91BD !important;
        border-radius: 50%;
        width: 35px;
        color: white;
        height: 35px;
    }

    .flickity-prev-next-button:hover {
        background: #1E91BD !important;
    }

    .flickity-prev-next-button .arrow {
        fill:white;
    }

    /* Dots Indicator */
    .flickity-page-dots .dot {
        background: #1E91BD !important;
        width: 12px;
        height: 12px;
    }
}

.custom-treatment-wrapper,.custom-treatment-wrapper-1{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.custom-treatment-wrapper-1::before{
    content: "";
    position: absolute;
    width: 50%; /* Background covers 70% of the width */
    height: 75%; /* Full height */
    background-color: #d7efff; /* Your background color */
    left: 40%;
    top:0;
    transform: translateX(-50%);
    z-index: 0;
}

.custom-treatment-wrapper::before {
    content: "";
    position: absolute;
    width: 50%; /* Background covers 70% of the width */
    height: 75%; /* Full height */
    background-color: #d7efff; /* Your background color */
    left: 65%;
    top:0;
    transform: translateX(-50%);
    z-index: 0;

}
/* General Card Styling */
.custom-treatment-card {
    border: none;
    padding: 25px;
    text-align: center;
    border-radius: 0;
}

/*!* Title *!*/
/*.custom-card-title {*/
/*    font-family: 'HvDTrial Brandon Grotesque', sans-serif;*/
/*    font-weight: 300;*/
/*    font-size: 20px;*/
/*    line-height: 30px;*/
/*    margin-bottom: 10px;*/
/*    text-align: left !important;*/
/*}*/

/*!* Paragraph Text *!*/
/*.custom-card-text {*/
/*    font-family: 'HvDTrial Brandon Grotesque', sans-serif;*/
/*    font-weight: 300;*/
/*    font-size: 16px;*/
/*    line-height: 25.6px;*/
/*    text-align: justify;*/
/*    color: #333;*/
/*}*/

/* Explore More Button */
.custom-card-btn {
    background: #1E91BD;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.custom-card-btn:hover {
    background: #0056b3;
}

.slick-lightbox-slick-item-inner{
    margin-top:10%;
}

/* Responsive */
@media (max-width: 480px) {
    .custom-treatment-card {
        padding: 20px;
        max-width: 100%;
    }
}

/* 🌟 Desktop-Specific Styling 🌟 */
@media (min-width: 1024px) {
    .carousel{
        min-width: 1250px;
    }

    /* Image Styling */
    .custom-card-img {
        max-width: 550px;
        height: 358px;
        border-radius:0;
        margin-left:100px;
        object-fit: cover;
        object-position: center;
    }

        /* Image Styling */
        .custom-card-img-2 {
            max-width: 550px;
            width: 100%;
            height: 358px;
            border-radius:0;
            object-fit: cover;
            margin-right:100px;
            object-position: right;
        }



    /* Make carousel layout horizontal */
    .carousel-cell {
        flex-direction: row; /* Text left, image right */
        text-align: left;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
        position: relative;
        overflow: visible;
    }

    /* Image Overlapping Effect */
    .doctor-image-wrapper-1 {
        flex: 1;
        position: relative;
        /* max-width: 50%; */
        z-index: 1;
    }

    .doctor-image-wrapper {
        flex: 1;
        position: relative;
        max-width: 50%;
        z-index: 1;
    }



    .doctor-img {
        max-width: 550px;
        position: absolute;
        right: -100%; /* Moves image outside the blue box */
        top: -268px;
        min-height: 358px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-50%);
    }

    .banner-title{
        position: absolute;
        right:100px;
        bottom:170px;
        /* font-family: 'HvDTrial Brandon Grotesque'; */
        font-family: 'Mont';
    }

    .banner-title-wrapper{
        align-items: end;
        justify-content: end;
    }


}

.banner-title-wrapper{
    display:flex;
    flex-direction: column;
    height: 100%;
}

