@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Mogra&display=swap');

:root {
    --theme-color: rgb(6 18 97);
    --theme-color2: rgb(127 216 88);
    --secondary-theme: rgb(49, 133, 185);
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: 'Hind', sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}

small {
    font-size: 13px;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-gray {
    background-color: #f2f4fa;
}

.bg-primary {
    background-color: var(--secondary-theme) !important;
}

.text-primary {
    color: var(--secondary-theme) !important;
}

.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.btnMan {
    display: inline-block;
    padding: 0.5rem 1.5rem 0.35rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--secondary-theme);
    transition: color 0.5s;
    z-index: 1;
    /* font-size: 1.15rem; */
    border-radius: 0.5rem;
    /* font-weight: 500; */
    color: var(--secondary-theme);
    /* background: var(--secondary-theme); */
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--secondary-theme);
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--secondary-theme);
    transition: background 0s;
}

.slick-prev:before,
.slick-next:before {
    font-family: "remixicon";
    font-size: 16px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-next:before {
    content: '\F5DB';
}

.slick-prev:before {
    content: '\F5D5';
}

.tag-title-secondary {
    font-size: 30px;
    color: var(--theme-color);
    padding-right: 50px;
    padding-left: 50px;
    position: relative;
}

.tag-title-secondary:before,
.tag-title-secondary:after {
    width: 40px;
    height: 3px;
    background: var(--secondary-theme);
    content: '';
    position: absolute;
    top: calc(50% - 3px);
}

.tag-title-secondary:before{
    left: 0;
}

.tag-title-secondary:after{
    right: 0;
}

.slick-next {
    right: calc(5% - 35px);
    z-index: 99;
    background-color: var(--secondary-theme);
    color: var(--black-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.slick-prev {
    left: calc(5% - 35px);
    z-index: 99;
    color: var(--black-color);
    background-color: var(--secondary-theme);
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.slick-prev:hover,
.slick-next:hover {
    background-color: var(--theme-color2);
    color: var(--white-color);
}

/* ===================================================== */
/* Header */
/* =================================================================== */
.topHeader {
    padding: 0.5rem 0;
    position: relative;
    background-color: #565656;
    color: var(--white-color);
}

header {
    padding: 0.5rem 0;
    position: relative;
}

/* Navbar section */

.navbar .navbar-brand>img {
    width: 100px;
}

.navbar .nav-link {
    text-decoration: none;
    color: var(--theme-color);
    padding: 10px 20px 8px !important;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0.25rem;
}


.navbar .nav-item:hover .nav-link {
    background: var(--theme-color2);
    color: var(--white-color);
}

/* .navbar .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    background-color: black;
    left: 0;
    bottom: 10px;
    transition: all 0.25s ease-in-out;
} */

.navbar .nav-link:hover::before {
    width: 100%;
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background-color: var(--secondary-theme);
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

/* .scroll-on .nav-item .nav-link {
    color: #121212;
} */



.scroll-on .dropdown-menu a,
.scroll-on .dropdown-submenu a {
    color: var(--footer-color);
    transition: all 0.25s ease-in-out;
}

.scroll-on .dropdown-menu a:hover,
.scroll-on .dropdown-submenu a:hover {
    color: var(--theme-color);
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        color: var(--white-color);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all 0.3s ease-in;
        visibility: hidden;
        /* min-height: 35vh; */
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        /* box-shadow: none; */
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 1rem;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--secondary-theme);
        background-color: var(--white-color);
    }
}

@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }

    .dropdown-menu>li:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}


/* =============================
Banner Section
=============================================== */
.hero-section {
    position: relative;
    /* min-height: 750px; */
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section:before {
    width: 65%;
    height: 100%;
    background: linear-gradient(270deg, rgba(33, 36, 49, 0) 0%, rgb(0, 0, 0, 0.8) 100%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    opacity: 1;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    z-index: 1;
}

.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}

.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.heroContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heroContent h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}

.heroContent p {
    line-height: 1.4;
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2rem;
}

.homeEnquiry {
    /* background: var(--primary-color); */
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    color: var(--bg-color2);
    font-weight: 300;
}

.homeEnquiry label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.homeEnquiry input,
.homeEnquiry select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #8b9194;
    border-radius: 0.5rem;
    outline: none;
    background: transparent;
    color: var(--black-color);
    font-size: 16px;
}

.homeEnquiry input::placeholder,
.homeEnquiry select::placeholder {
    color: #808488;
}

.homeEnquiry select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.homeEnquiry select option {
    background-color: #ffffff;
    /* White background */
    color: #000000;
    /* Black text */
}

.homeEnquiry small {
    font-size: 0.7rem;
    line-height: 1;
}

.date_pnl {
    padding: 5px;
    background-color: #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.date_pnl h4 {
    margin-bottom: 0;
    margin-top: 3px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.date_pnl:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.date-slider .slick-slide {
    margin: 0 5px;
}




/* Counter Panel */
/* ======================================== */
.counterMain {
    background-color: #e2f2ff;
    padding: 2rem 0;
    position: relative;
}

.counterPanel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.counterPanel .itemList {
    text-align: center;
    flex: 1;
    color: var(--secondary-theme)
}

.counterPanel .itemList .counting {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.counterPanel .itemList p {
    margin-bottom: 0;
    font-size: 1.15rem;
    color: var(--black-color);
}


/* About Panel */
/* ================================== */
.aboutPanel {
    padding: 3rem 0;
    position: relative;
}
.aboutPanel h2{
    font-size: 2rem;
    font-weight: 600;
}
.exprienceBox{
    background-color: var(--white-color);
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 2rem 0 1.5rem;
    bottom: 0;
    left: 0;
    color: var(--white-color);
}
.exprienceBox::before{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/curve_vec.svg) no-repeat;
    background-size: contain;
    left: 12px;
    top: -30px;
}
.exprienceBox::after{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/curve_vec.svg) no-repeat;
    background-size: contain;
    right: -30px;
    bottom: -1px;
}

.doctor {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Name */
.doctor h4 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.75rem;
    position: relative;
}

/* Decorative underline */
.doctor h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 3px;
    background: #3f51b5;
    border-radius: 2px;
}

/* Bio text */
.doctor p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Hover effect */
.doctor:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}



/* Service Panel */
/* ======================================== */
.serviceItem {
    position: relative;
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Image */
.serviceItem img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

/* Title */
.serviceItem h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.serviceItem ul{
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

/* Hover Effects */
.serviceItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.serviceItem:hover img {
    transform: scale(1.08);
}

/* Optional gradient border glow */
.serviceItem::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #3f51b5, #2196f3, #00bcd4);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, 
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.serviceItem:hover::after {
    opacity: 1;
}



.service-slider .slick-slide {
    margin: 10px;
}

.ctaOption {
    background: url(../images/cta-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 200px 0 0;
    position: relative;
    margin-bottom: 80px;
    /* min-height: 200px; */
}

.ctaOption:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    background-color: var(--white-color);
    left: 0;
    bottom: 0;
}

.ctaOptionBox {
    background: var(--theme-color);
    padding: 2rem;
    position: relative;
    min-height: 100px;
    border-radius: 1.5rem;
    color: var(--white-color);
}

.avatorBox-50 {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 1px solid var(--theme-color);
}

.testimonial-slider p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.testimonial-slider a {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
}

.testimonial-slider .slick-slide {
    margin: 0 10px;
}

.testimonial-slider .slick-prev{
    left: -40px;
}

.testimonial-slider .slick-next{
    right: -40px;
}


.ourStory{
    position: relative;
    background: url(../images/bgimg.webp) no-repeat center center;
    background-size: cover;
}

/* Blog Panel */
/* ================================ */
.blog {
    background: #f1f1f1;
}

.blog .card {
    border-radius: 15px;
    background-color: var(--white-color);
    transition: all 0.2s ease-in-out;
}

.blog .card:hover {
    background-color: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.blog .card-text {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog .card-body h6 {
    color: var(--theme-color);
}

.blog .card-body .card-text {
    color: #565656;
}


/* Footer Panel */
/* ====================================== */
footer {
    background: #ddd;
    padding-top: 3rem;
    color: #000;
}

footer ul {
    list-style: none;
}

.list-unstyled li a {
    font-weight: 500;
    color: #000;
    transition: all 0.2s ease-in-out;
}

.list-unstyled li a:hover {
    color: var(--white-color);
}

.link-widget li {
    margin-bottom: 0.75rem;
}

.link-widget li a {
    color: #000;
}

.link-widget li a:hover {
    color: var(--white-color);
}

.timing p {
    color: var(--white-color);
    margin-bottom: 0;
}

footer .copy>a:hover {
    color: var(--white-color) !important;
}



/* Page Header Section */
.page-header-section {
    position: relative;
    padding: 100px 0;
    background: url('assets/images/page-header-bg.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Optional dark overlay */
/* .page-header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

/* Container content on top of overlay */
.page-header-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.page-header-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: capitalize;
}

/* Breadcrumb */
.page-header-section ul {
    font-size: 16px;
    font-weight: 500;
    color: #ddd;
}

.page-header-section ul li {
    display: inline-block;
    color: #ddd;
}

.page-header-section ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.page-header-section ul li a:hover {
    color: #ffcc00; /* highlight color */
}

.contactDetails {
    border-radius: 0.5rem;
    background: var(--theme-color2);
    padding: 0.75rem;
    position: relative;
    margin-left: -4rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-list li {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-list li i {
    font-size: 26px;
    color: #ff6600; /* Icon color */
    margin-right: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.service-list li:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.service-list li:hover i {
    color: #e05500;
    transform: scale(1.2);
}



@media (max-width: 767px) {
    .exprienceBox{
        padding: 0.75rem;
    }
}