/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');


:root {
    --primary-green: #008E3C;
    --dark-green: #1e5d3f;
    --light-green: #E0FFED;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #727272;
    --text-light: #666666;
}


img {
    max-width: 100%;
    height: auto;
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smotthing: antialiased;
    font-family: "Sora", sans-serif;

}

html,
body {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

section {
    overflow-x: hidden !important;
}

section.facilities-section {
    overflow-x: unset !important;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
}



/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #1C1156;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 7px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.top-bar-item i {
    font-size: 16px;
    color: var(--white);
}

.top-bar-links {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: end;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 14px;
}

.top-bar-link:hover {
    opacity: 0.8;
    color: var(--white);
    text-decoration: underline;
}

/* Navigation Bar Styles */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.logo-text {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
}

.navbar-nav .dropdown-menu {
    border: none;
}


.mega-dropdown {
    position: static;

}

.mega-menu {
    min-width: 280px;
}

@media (min-width: 992px) {
    .mega-dropdown .mega-menu.news {
        left: 70%;

    }

    .mega-dropdown .mega-menu.about {
        left: 300px;
        width: 720px;
    }

    .mega-dropdown .mega-menu {
        width: max-content;
        left: 50%;
        transform: translateX(-50%);
    }

    .mega-dropdown .mega-menu ul {
        columns: 1;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.mega-title {
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-list a:hover {
    color: var(--primary-green);
}

.mega-list .has-children {
    position: relative;
    padding-bottom: 10px;
}

.mega-sublist {
    list-style: none;
    padding-left: 15px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-sublist a {
    font-weight: 400;
    color: var(--text-light);
}

.mega-highlight {
    background: var(--light-green);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.mega-highlight .btn {
    padding: 8px 20px;
}

.btn-emergency {
    background: #dd0510 !important;
    color: var(--white) !important;
    padding: 16px 24px !important;
    margin-left: 10px;
}

.btn-emergency:hover {
    background-color: #c82333 !important;
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    overflow: hidden;
}

.hero-section .carousel-item {
    height: auto;
    position: relative;
}

.hero-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-section .card-img-overlay {
    left: 0;
    top: 56%;
    transform: translateY(-50%);
}




.btn-hero {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-green);
    border: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.5;
    border: none;
    margin: 0 5px;
    transition: all 0.3s;
}

.hero-section .carousel-indicators button.active {
    opacity: 1;
    background-color: #dc3545;
    width: 14px;
    height: 14px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles 
/* Appointment Section */
.appointment-section {
    /* background-color: #1a1a1a; */
    padding: 80px 0 !important;
}

.appointment-section .flex {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.appointment-section .flex>div {
    flex: 1;
}

.appointment-section .section-header {
    text-align: left;
}

.appointment-section .section-title {
    color: var(--primary-green);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}



.appointment-card {
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s, box-shadow 0.3s;
    /* height: 100%; */

}

/* .appointment-card-blue .card-body-content {
    min-height: 381px;
} */

/* Appointments Card - Light Green */
.appointment-card-green {
    background: var(--light-green)
}

/* .appointment-card .extra img{
    height: 300px !important;
} */

/* Physicians Card - Light Blue */
.appointment-card-blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* Wellness Card - Light Yellow/Cream */
.appointment-card-yellow {
    background: #F4FFD8;
}

.heading {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 38px;
    line-height: 120%;
    background: linear-gradient(180deg, #008e3c 0%, #8ebb20 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 40px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-dark);
}

.padding {
    padding: 80px 0;
}


.welcome-section .border_1 {
    border-right: 1px solid #bdbdbd;
}

.appointment-card .card-body-content {
    padding: 27px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.appointment-card .card-category {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.appointment-card .card-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.appointment-card-green .card-main-title {
    color: var(--primary-green);
}

.appointment-card-blue .card-main-title {
    color: #1976d2;
}

.appointment-card-yellow .card-main-title {
    color: var(--primary-green);
}

.appointment-card .card-description {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.appointment-card .card-image-wrapper {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.btn-appointment {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: var(--white);
    transition: all 0.3s;
    display: inline-block;
    width: fit-content;
}

.btn-appointment-green {
    background-color: var(--dark-green);
}

.btn-appointment-green:hover {
    background-color: #155d3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-appointment-blue {
    background-color: #1976d2;
}

.btn-appointment-blue:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-appointment-yellow {
    background-color: var(--primary-green);
}

.btn-appointment-yellow:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* Welcome Section */
.welcome-section {
    background-color: var(--white);
}

.welcome-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-images {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.main-hospital-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

.play-icon {
    width: 80px;
    height: 80px;
}

.secondary-image-wrapper img {

    width: 100%;
    height: 200px;
    object-fit: cover;
}

.stat-card {
    padding: 30px;
    background: var(--light-gray);

    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

/* Services Section */

.service-card {
    background: var(--white);
    overflow: hidden;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    object-fit: cover;

}

.service-content {
    padding: 20px;
}

.service-content h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transform: all 0.5s ease;
    opacity: 0;
}


.service-card:hover .service-link {
    opacity: 1;
}

/* Excellence Section */
.excellence-section {
    background-color: var(--white);
}

.excellence-item {
    padding: 20px;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.excellence-item:hover {
    transform: translateY(-5px);
}

.excellence-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: block;
}

.excellence-item:hover .excellence-icon {
    color: var(--white);
}

.excellence-item h6 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* Doctors Section */
/* .doctors-section {
    background-color: var(--light-gray);
} */

.doctor-card {
    background: var(--white);
    overflow: hidden;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
    border: 1px solid #e2e2e2;
}

/* #doctor .swiper-pagination {
    top: 52px !important;
} */

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--dark-green) !important;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.doctor-info {
    padding: 20px;
}

.doctor-info h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.doctor-info .specialty {
    color: var(--text-light);
    margin-bottom: 15px;
}

.doctor-buttons {
    display: flex;
    gap: 10px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--white);
}

.testimonial-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(0, 142, 60, 0.19);
    background: #f9fffb;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary-green);
    opacity: 0.3;
    display: block;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 142, 60, 0.19);
    background: #f9fffb;
}

.comma {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 50px;
    padding: 10px;
    border: 1px solid rgba(0, 142, 60, 0.19);
    background: #f9fffb;
}


.color {
    color: var(--primary-green);
}


.testimonial-section .carousel-control-next,
.carousel-control-prev {
    position: static !important;
    width: 6%;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-designation {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* News Section */


.news-card {
    background: var(--white);
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;

}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

.news-content h5 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #234C16;
    color: var(--white);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-content p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-content i {
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
    opacity: 1;
}

.footer-icon-circle {
    width: 38px;
    height: 38px;
    background-color: var(--white);
    color: #234C16;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    color: #234C16;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: #8EBB20;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #8EBB20;
    color: var(--white);
}

/* Button Styles */
.btn-primary {
    padding: 16px 24px;
    background: #008e3c;
    border-radius: 0;
    border: 0;
    font-weight: 400;
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

.btn-outline-primary {
    border: 1px solid #008e3c;
    padding: 16px 24px;
    width: 148px;
    height: 50px;
    color: #008e3c;
    border-radius: 0;
}

.btn-outline-primary:hover {
    background-color: var(--dark-green);
    border: transparent;
}

.btn-info {
    background-color: #17a2b8;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-success {
    background-color: var(--light-green);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

section.other_banner .card-img-overlay {
    background: linear-gradient(89.97deg, #000000 -62.87%, rgba(0, 0, 0, 0) 172.91%);
}

section.other_banner .card img {
    height: 57vh;
    object-fit: cover;
}

section.overview-wrap .overview__box {
    padding: 50px 30px;
}

/* Overview Overlap */
section.overview-wrap {
    margin-top: -92px;
    position: relative;
    z-index: 10;
}

section.overview-wrap  .overview-card {
    background: white;
    overflow: hidden;
    border: 1px solid #e2e2e2;
}

section.overview-wrap .overview-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

/* Key Facilities - Editorial Style */
section.facilities-showcase {
    background: #fff;
}

section.facilities-showcase .facility-title-area {
    margin-bottom: 45px;
}

section.facilities-showcase .facility-card-custom {
    padding: 39px 30px;
    background: #E2FFEE;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid transparent;
    position: relative;
}

section.facilities-showcase .key_heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

section.facilities-showcase .facility-card-custom:hover {
    background: #fff;
    transform: translateY(-15px);
    border-color: #008e3c;
    box-shadow: 0 30px 60px rgba(10, 46, 92, 0.08);
}

section.facilities-showcase .icon-accent {
    margin-bottom: 20px;
}

/* HIGHER-END COMMITMENT SECTION */
section.commitment-cinematic {
    background: #F4FFD8;
    position: relative;
    color: white;
    overflow: hidden;
}

section.commitment-cinematic .slogan-display {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
    background: linear-gradient(180deg, #008e3c 0%, #8ebb20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.commitment-cinematic .commitment-description {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}


.video-banner video {
  height: 80vh;
  object-fit: cover;
  width: 100%;
}

.video-banner .carousel-inner .carousel-item img{
  height: 81vh;
  object-fit: cover;
  width: 100%;
  object-position: 0%;
}

/* Leadership Profiles Section */
.leadership-section {
    background-color: var(--light-gray);
}

.leader-card {
    background: var(--white);
    border: 1px solid #e2e2e2;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.leader-img-wrapper {
    height: 100%;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-body {
    padding: 30px;
}

.leader-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: "Sora", sans-serif;
}

.leader-designation {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8ebb20;
    letter-spacing: 1px;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 575px) {
    .leader-img-wrapper {
        min-height: 280px;
        height: 280px;
    }
}


/* call and whatsapp */


    .callnow {
        position: fixed;
        z-index: 15;
        bottom: 30px;
        left: 30px;
    }
.whatsappnow {
        position: fixed;
        z-index: 15;
        bottom: 30px;
        right: 30px;
    }

    .pulse {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        background-color: #ED1C24;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
    }
.pulse1{
	   background-color: #075E54;
}

    .pulse i {
        color: white;
        font-size: 18px;
			/* transform: rotate(90deg); */
    }

.pulse1 i {
			transform: unset !important;
	font-size: 22px;
    }

    .pulse::before,
    .pulse::after {
        content: '';
        position: absolute;
        width: calc(100%);
        height: calc(100%);
        border-radius: 50%;
        border: 1px solid #ED1C24;
        animation: calling 2s ease-in-out infinite;
    }

    .pulse::after {
        animation: calling 2s ease-in-out .35s infinite;
    }

  .pulse1::before,
.pulse1::after{
	 border: 1px solid #075E54;;
} 

    @keyframes calling {
        0% {
            width: calc(100%);
            height: calc(100%);
            opacity: 1;
        }

        100% {
            width: calc(91% + 49px);
            height: calc(91% + 49px);
            opacity: 0;
        }
    }
