@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Mogra&display=swap');

:root {
    --theme-color: rgb(74 186 74);
    --secondary-theme: rgb(8, 8, 8);
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    line-height: 22px;
}

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.65rem 1.5rem 0.5rem;
    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-color);
    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 {
    background-color: var(--theme-color);
}

.navbar .navbar-brand>img {
    width: 100px;
}

.navbar .nav-link {
    text-decoration: none;
    color: #fff;
    padding: 1.3rem 0 !important;
    margin-right: 3rem;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}


.navbar .nav-item:hover .nav-link {
    color: yellow;
}

.navbar .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--black-color);
    left: 0;
    bottom: 0px;
    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: 0.9rem;
        font-weight: var(--fw-500);
    }

    .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: 3rem;
    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{
    display: flex;
    align-items: flex-start;
    position: relative;
    background: var(--white-color);
    border-radius: 1rem;
    padding: 1rem;
}
.doctor img{
    width: 150px;
    border-radius: 0.5rem;
}
.doctor .content{
    width: calc(100% - 150px);
    margin-left: 20px;
    position: relative;
}
.doctor .content h5{
    /* white-space: nowrap; */
    font-size: 20px;
    color: #060606;
    margin: 5px 0 10px;
    font-weight: 500;
}
.doctor .content h5 small{
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: var(--secondary-theme);
}
.doctor .content p{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.doctor .content a{
    color: var(--theme-color);
    /* text-decoration: underline; */
    font-weight: 500;
}


/* Service Panel */
/* ======================================== */
.serviceItem{
    position: relative;
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}
.serviceItem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.service-slider .slick-slide {
    margin: 10px;
}

.ctaOption {
    background: url(../images/cta-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 100px 0 0;
    position: relative;
    margin-bottom: 50px;
    /* 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: calc(5% - 55px);
}

.testimonial-slider .slick-next{
    right: calc(5% - 55px);
}


/* 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: #11161b;
    padding-top: 3rem;
    color: #fff;
}

footer ul {
    list-style: none;
}

footer h4 {
    color: var(--white-color);
}

footer .logo {
    color: var(--theme-color);
}

.list-unstyled li a {
    font-weight: 500;
    color: #b1b1b1;
    transition: all 0.2s ease-in-out;
}

.list-unstyled li a:hover {
    color: var(--theme-color);
}

.link-widget li {
    margin-bottom: 0.75rem;
}

.link-widget li a {
    color: #b1b1b1;
}

.link-widget li a:hover {
    color: var(--theme-color);
}

.timing p {
    color: var(--white-color);
    margin-bottom: 0;
}

footer .copy>a:hover {
    color: var(--theme-color) !important;
}


.inner-banner {
	 width: 100%;
	 width: 100%;
	 height: 200px;
	 align-content: center;
}
 .inner-banner h1 {
	 font-size: 36px;
	 font-weight: 700;
	 margin-bottom: 6px;
}
 .inner-banner h2 {
	 font-size: 36px;
	 font-weight: 700;
	 margin-bottom: 6px;
}

.contactDetails{
    border-radius: 0.5rem;
    background: #ddd;
    padding: 0.75rem;
    position: relative;
    margin-left: -4rem;
}

.department-section {
    margin: 40px 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.department-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9f7fe;
}

.department-icon {
    width: 70px;
    height: 70px;
    background-color: #e9f7fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.department-icon i {
    font-size: 2rem;
    color: #138496;
}

.urology .department-icon i {
    color: #0a5c75;
}

.gynaecology .department-icon i {
    color: #c53d82;
}

.department-title {
    font-size: 1.8rem;
    color: #0a5c75;
    margin-bottom: 5px;
    font-weight: 700;
}

.doctor-info {
    font-style: italic;
    color: #666;
}

.department-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.department-description {
    line-height: 1.8;
    color: #444;
}

.services-list {
    list-style-type: none;
}

.services-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.services-list li:before {
    content: "•";
    color: #138496;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.urology .services-list li:before {
    color: #0a5c75;
}

.gynaecology .services-list li:before {
    color: #c53d82;
}

.service-title {
    font-weight: 600;
    color: #0a5c75;
    display: block;
}

.urology .service-title {
    color: #0a5c75;
}

.gynaecology .service-title {
    color: #c53d82;
}

.department-footer {
    margin-top: 25px;
    padding: 15px;
    background-color: #e9f7fe;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

.gynaecology {
    border-top: 5px solid #c53d82;
}

.urology {
    border-top: 5px solid #0a5c75;
}

.gynaecology .department-title {
    color: #c53d82;
    font-weight: 700;
}

.gynaecology .department-footer {
    background-color: #fde8f2;
}

@media (max-width: 900px) {
    .department-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .navbar .nav-link {
        color: #313131;
        padding: 0.75rem 0 !important;
        margin-right: 0;
        text-align: center;
    }
    .navbar .nav-item:hover .nav-link {
        color: #4aba4a;
    }
    .service-slider .slick-prev{
        left: 5%;
    }
    .service-slider .slick-next{
        right: 5%;
    }
    .hero-section .row{
        flex-direction: column-reverse;
    }
    .heroContent h1{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .heroContent p{
        font-size: 0.9rem;
    }
    .counterMain{
        padding: 1rem 0;
    }
    .counterPanel .itemList {
        flex: auto;
        margin: 5px 0;
    }
    .counterPanel .itemList .counting{
        font-size: 2rem;
    }
    .counterPanel .itemList p{
        font-size: 1rem;
    }
    .aboutPanel h2{
        font-size: 1.5rem;
    }
    .department-header {
        flex-direction: column;
        text-align: center;
    }
    .department-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .contactDetails{
        margin-left: 0;
        margin-top: 1rem;
    }
}

 