/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Top Bar - Yellow Background */
.top-bar {
    background: #FFD23CE6;
    color: #1a5490;
    padding: 12px 20px;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    gap: 25px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #536C32;
    font-weight: 500;
}

.contact-info i {
    font-size: 14px;
    color: #fff;
     
    padding: 4px 6px;
    border-radius: 3px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-appointment-top {
    background: #536C32;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-appointment-top:hover {
    background: #144075;
}

/* Main Header - White Background */
.main-header {
    background: #fff;
    padding: 20px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo  img {
    width: 250px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.logo-the {
    font-size: 18px;
    font-weight: 600;
    color: #1a5490;
    text-transform: uppercase;
}

.logo-hope {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    position: relative;
}

.logo-hospital {
    font-size: 18px;
    font-weight: 600;
    color: #1a5490;
    text-transform: uppercase;
    margin-left: 5px;
}

.logo-slogan {
    font-size: 12px;
    color: #1a5490;
    margin-top: 5px;
    font-weight: 500;
}

.header-middle {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.accreditation-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.accreditation-logo {
     
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-logo img {
    max-width: 75%;
    max-height: 100%;
    object-fit: contain;
}

.international-enquiry-text {
    color: #39663E;
    font-weight: 600;
    font-size: 15px;
}

.header-right {
    flex: 0 0 auto;
}

.btn-appointment-header {
    background: #39663E;
    color: #fff;
    padding: 8px 21px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
    display: inline-block;
    font-size: 15px;
}

.btn-appointment-header:hover {
    background: #144075;
}

/* Navigation Bar - Dark Green Background */
.main-nav {
    background: #536C32;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    padding: 0 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-nav ul li {
    padding: 0;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
    font-size: 15px;
}

.main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav ul li.dropdown > a {
    padding-right: 35px;
    position: relative;
}

.main-nav ul li.dropdown > a i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 300px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #1a5490;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a5490;
    padding: 10px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.breadcrumb a {
    color: #1a5490;
    text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #666;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin: 30px 0 0 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
}

/* Carousel Navigation Arrows */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Pagination Dots */
.carousel-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pagination-dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 14px;
    height: 14px;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Contact Information Overlay */
.contact-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(83, 108, 50, 0.95);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    font-weight: 500;
}

.contact-overlay i {
    font-size: 20px;
}

/* Floating Contact Buttons (Left Sidebar) */
.floating-contact-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: left 0.3s;
}

.floating-contact-buttons.collapsed {
    left: -60px;
}

.floating-btn-toggle {
    background: #536C32;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0 8px 8px 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.floating-btn-toggle:hover {
    background: #3d5024;
    transform: translateX(5px);
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 0 8px 8px 0;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateX(5px);
}

.phone-btn {
    background: #25D366;
}

.phone-btn:hover {
    background: #20ba5a;
    transform: translateX(5px);
}

/* Introduction Section */
.intro-section {
    padding: 40px 0;
    background: #fff;
}

.intro-section h1 {
    text-align: center;
    color: #6ec1e4;
    font-weight: 600;
    padding: 0 0 10px 0;
}

.intro-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    padding-bottom: 15px;
}

/* Doctor Section */
.doctor-section {
    padding: 0px 0 60px 0;
    background: #fff;
}

.doctor-section h2 {
    text-align: left;
    color: #6ec1e4;
    font-weight: 600;
    padding: 0 0 10px 0;
    font-size: 34px;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.doctor-image img {
    width: 70%;
    border-radius: 10px;
    margin: auto;
    display: block;
}

.doctor-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-book-appointment {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 20px 0;
    transition: background 0.3s;
}

.btn-book-appointment:hover {
    background: #e55a2b;
}

.cta-box {
    background: #1a5490;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-book-now {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-book-now:hover {
    background: #e55a2b;
}

/* Book Appointment Banner Section */
.appointment-banner-section {
    padding: 60px 0;
    background: #fff;
}

.appointment-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.appointment-banner-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.appointment-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.05);
    transition: transform 0.5s;
}

.appointment-banner:hover .appointment-banner-image img {
    transform: scale(1.1);
}

.appointment-banner-content {
    background: #f9fafa;
    padding: 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.appointment-banner-content h2 {
    font-size: 21px;
    font-weight: 700;
    color: #3f444b;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: block;
}

.appointment-question {
    font-size: 15px;
    color: #333;
    margin-bottom: 35px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.btn-book-now-banner {
    background: #536C32;
    color: #fff;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-book-now-banner:hover {
    background: #3d5024;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 108, 50, 0.3);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-section h2 {
    font-size: 27px;
    font-weight: 500;
    color: #6ec1e4;
    margin-bottom: 0px;
    text-align: left;
}

.services-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.services-section ul {
    margin: 0 0 0px 20px;
}

.services-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 30px 3px;
    border-radius: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: #6c6c6c 0px 0px 9px;
    justify-content: center;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
}

.service-image img {
    width: 70px;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    width: 100%;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #6ec1e4;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* Treatment Section */
.treatment-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.treatment-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 30px;
    text-align: center;
}

.treatment-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.treatment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a5490;
}

/* Diagnostic Section */
.diagnostic-section {
    padding: 60px 0;
    background: #fff;
}

.diagnostic-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 30px;
    text-align: center;
}

.diagnostic-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.diagnostic-list li {
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 4px solid #1a5490;
    font-size: 16px;
    color: #555;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.why-choose-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 30px;
    text-align: center;
}

.why-choose-section > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.main-footer {
    background: #f5f5f5;
    color: #333;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 200px;
    margin: 0 0 19px 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.footer-logo-the {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-logo-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.footer-logo-hope {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-hospital {
    font-size: 24px;
    font-weight: 700;
    color: #536C32;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-slogan {
    font-size: 14px;
    color: #536C32;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 3px;
}

.footer-social .social-icon:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer-social .social-icon i {
    font-size: 16px;
}

/* Footer Links Section */
.footer-links h4,
.footer-quick-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.footer-links ul,
.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-quick-links ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-quick-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover,
.footer-quick-links a:hover {
    color: #333;
}

.footer-quick-links a.highlighted-link {
    background: #8B4C9F;
    color: #0066CC;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

.footer-quick-links a.highlighted-link:hover {
    background: #7a3f8a;
    color: #0052a3;
}

/* Contact Banner Section */
.contact-banner-section {
    width: 100%;
    overflow: hidden;
}

.contact-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
     
}

.contact-banner-left {
    background: #2A371A;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 10px 0px;
}

.doctor-portrait {
    width: 100%;
    
}

.doctor-portrait img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.doctor-credentials {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #536C32;
    color: #fff;
    padding: 20px 25px;
    border-radius: 5px;
    max-width: 280px;
}

.doctor-credentials h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.doctor-credentials p {
    font-size: 14px;
    margin: 5px 0;
    color: #fff;
    line-height: 1.5;
}

.contact-banner-middle {
    position: relative;
    overflow: hidden;
}

.contact-banner-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-banner-right {
    background: #2A371A;
    color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 17px;
    font-weight: 500;
    color: #FECC5D;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-slogan {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}
.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.contact-details i {
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-get-directions {
    background: #8b4c9f00;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 78px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
    align-self: flex-start;
    border: #8B4C9F solid 1px;
}

.btn-get-directions:hover {
    background: #8b4c9f00;
    border: #8B4C9F solid 1px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 76, 159, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    width: 100%;
}

.footer-stripes {
    display: flex;
    flex-direction: column;
}

.stripe {
    width: 100%;
}

.stripe-yellow {
    background: #FFD700;
    height: 5px;
}

.stripe-green {
    background: #536C32;
    height: 5px;
}

.stripe-yellow-wide {
    background: #fecc5d;
    padding: 25px 0px;
    text-align: center;
    border: #fff solid 15px;
}

.stripe-yellow-wide p {
    color: #fff;
    font-size: 17px;
    margin: 0;
    font-weight: 500;
    background: #2a371a;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a5490;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #ff6b35;
    transform: translateY(-5px);
}

/* WhatsApp Float (Hidden - using new floating buttons) */
.whatsapp-float {
    display: none;
}

/* Phone Float (Hidden - using new floating buttons) */
.phone-float {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .logo-section {
        flex: 1 1 auto;
    }

    .header-middle {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a5490;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s;
        z-index: 1001;
        overflow-y: auto;
        padding: 80px 0 20px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .container {
        padding: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        color: #fff;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        padding: 0;
        min-width: 100%;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 14px;
        color: #fff;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }




    .contact-info span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #536C32;
        font-weight: 500;
        display: none;
    }

    .top-bar {
        background: #ffffffe6;
        color: #1a5490;
        padding: 10px 0px 0 0;
        font-size: 11px;
    }
    .logo  img {
        width: 200px;
    }

    .main-header {
        background: #fff;
        padding: 6px 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }





}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .logo-text {
        flex-wrap: wrap;
    }

    .logo-the {
        font-size: 14px;
    }

    .logo-hope {
        font-size: 28px;
    }

    .logo-hospital {
        font-size: 14px;
    }

    .logo-slogan {
        font-size: 10px;
    }

    .hero-section {
        height: 220px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-pagination {
        bottom: 20px;
    }

    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .pagination-dot.active {
        width: 12px;
        height: 12px;
    }

    .contact-overlay {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .contact-overlay i {
        font-size: 18px;
    }

    .floating-contact-buttons {
        left: -50px;
    }

    .floating-contact-buttons:not(.collapsed) {
        left: 0;
    }

    .floating-btn-toggle,
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .appointment-banner {
        grid-template-columns: 1fr;
    }

    .appointment-banner-image {
        height: 300px;
        order: 1;
    }

    .appointment-banner-content {
        padding: 40px 30px;
        order: 2;
        text-align: center;
        align-items: center;
    }

    .appointment-banner-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .appointment-question {
        font-size: 18px;
        text-align: center;
    }

    .btn-book-now-banner {
        padding: 12px 30px;
        font-size: 16px;
    }

    .doctor-content {
        grid-template-columns: 1fr;
    }

    .services-section h2 {
        font-size: 28px;
        text-align: center;
    }

    .services-intro {
        font-size: 15px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 25px 20px;
    }

    .service-image {
        margin-bottom: 15px;
    }

    .service-image img {
        max-height: 200px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .treatment-features {
        grid-template-columns: 1fr;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-hope {
        font-size: 32px;
    }

    .footer-logo-hospital {
        font-size: 18px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .contact-banner-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-banner-left {
        padding: 30px 20px 0 0px;
    }
     
    .doctor-credentials {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .contact-banner-middle {
        min-height: 300px;
    }

    .contact-banner-right {
        padding: 40px 30px;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-slogan {
        font-size: 28px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .phone-float {
        bottom: 100px;
    }

    .scroll-to-top {
        bottom: 180px;
    }
}

/* About Us Page Styles */
.about-hero-section {
    padding: 60px 0;
    background: #fff;
}

.about-hero-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

.about-hero-section > .container > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}

.about-hero-image {
    text-align: center;
    margin-top: 40px;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-vision-section {
    padding: 60px 0;
    background: #f0f5fa;
    position: relative;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-vision-image {
    position: relative;
    overflow: hidden;
}

.mission-vision-image img {
    width: 100%;
     
}

.mission-vision-text {
    padding: 0px 10px 10px 30px;
     
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mission-list li {
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 5px;
    padding-left: 30px;
    position: relative;
}

.mission-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6ec1e4;
    font-size: 24px;
    line-height: 1;
}

.mission-conclusion {
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    text-align: left;
    margin: 0;
}

.mission-social-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    background: #fff;
}

.social-icon-vertical {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.social-icon-vertical:hover {
    color: #6ec1e4;
    border-color: #6ec1e4;
    transform: translateY(-3px);
}

.admission-section {
    padding: 20px 0;
    background: #f0f5fa;
    margin: 40px 0 0 0;
}
.admission-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    text-align: center;
}

.admission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admission-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
    padding: 20px 0;
}

.admission-icon {
    width: 40px;
    height: 30px;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.admission-icon i {
    font-size: 15px;
    font-weight: 300;
}

.admission-text-item {
    flex: 1;
}

.admission-text-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
}

.admission-divider {
    height: 1px;
    background: #000000;
    margin: 0;
    padding: 0 !important;
    min-height: 1px;
}

.admission-divider .admission-icon,
.admission-divider .admission-text-item {
    display: none;
}

.infrastructure-section {
    padding: 20px 0;
    background: #d1d5db;
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.infrastructure-image {
    position: relative;
}

.infrastructure-image img {
    width: 100%;
    height: auto;
     
    display: block;
}

.infrastructure-text {
    padding: 0 20px;
}

.infrastructure-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.infrastructure-text p {
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    text-align: justify;
    margin: 0;
}

.visitor-policy-section {
    padding: 20px 0;
    background: #f0f5fa;
    margin: 40px 0 0 0;
}

.visitor-policy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    text-align: center;
}

.visitor-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visitor-policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
    padding: 20px 0;
}

.visitor-policy-icon {
    width: 40px;
    height: 29px;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.visitor-policy-icon i {
    font-size: 16px;
}
.visitor-policy-text-item {
    flex: 1;
}

.visitor-policy-text-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
}

.visitor-policy-divider {
    height: 1px;
    background: #cbd5e1;
    margin: 0;
    padding: 0 !important;
    min-height: 1px;
}

.visitor-policy-divider .visitor-policy-icon,
.visitor-policy-divider .visitor-policy-text-item {
    display: none;
}

.doctors-team-section {
    padding: 20px 0;
    background: #f0f5fa;
    margin: 40px 0 0 0;
}

.doctors-team-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    text-align: center;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.doctor-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 0px 10px 5px rgba(166.65479760119942, 170.00000000000003, 162.23913043478265, 0.88);
    overflow: visible;
     
    transition: transform 0.3s;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-card:hover {
    transform: translateY(-3px);
}

.doctor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 20px;
    border: 4px solid #536c32;
}
.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 0;
    width: 100%;
}

.doctor-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: #031D3C;
    margin-bottom: 4px;
}
.doctor-qualification {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.doctor-specialization {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.doctors-team-section .doctor-info p {
    font-size: 13px;
    line-height: 1.8;
    color: #536C32;
    margin-bottom: 4px;
}

.cta-section {
    padding: 60px 0;
    background: #6ec1e4 url('../images/bggg.png') center center no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.cta-section h2 strong {
    color: #fff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #fff;
}

.btn-appointment-cta {
    background: #fff;
    color: #6ec1e4;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-appointment-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonials-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 50px;
    font-weight: 500;
    color: #18232F;
    margin-bottom: 15px;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-carousel {
    position: relative;
    
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #e0e0e0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #6ec1e4;
    width: 14px;
    height: 14px;
}

.testimonial-dot:hover {
    background: #6ec1e4;
    transform: scale(1.2);
}

.testimonials-decorative-circle {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 3px solid #6ec1e4;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

/* Responsive Styles for About Us */
@media (max-width: 768px) {


    .testimonials-section h2 {
        font-size: 30px;
        font-weight: 500;
        color: #18232F;
        margin-bottom: 15px;
        text-align: center;
        line-height: 32px;
    }

    .about-hero-section h1 {
        font-size: 28px;
    }

    .mission-vision-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-image {
        min-height: 400px;
    }

    .mission-vision-image img {
        min-height: 400px;
    }

    .mission-vision-text {
        padding: 40px 30px;
    }

    .mission-vision-text h2 {
        text-align: center;
        font-size: 28px;
    }

    .mission-social-icons {
        flex-direction: row;
        justify-content: center;
        padding: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .admission-section h2 {
        font-size: 28px;
        text-align: center;
    }

    .admission-list li {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
    }

    .admission-icon {
        align-self: flex-start;
    }

    .infrastructure-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .infrastructure-text {
        padding: 0;
    }

    .infrastructure-text h2 {
        text-align: center;
        font-size: 28px;
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .doctor-image {
        width: 100px;
        height: 100px;
    }

    .doctor-info h3 {
        font-size: 16px;
    }

    .doctor-qualification,
    .doctor-specialization {
        font-size: 12px;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .testimonial-image {
        margin-bottom: 20px;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonials-decorative-circle {
        display: none;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .visitor-policy-section h2 {
        font-size: 28px;
    }

    .visitor-policy-list li {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
    }

    .visitor-policy-icon {
        align-self: flex-start;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .testimonial-image {
        margin-bottom: 20px;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonials-decorative-circle {
        display: none;
    }
}

/* Additional responsive for smaller screens */
@media (max-width: 480px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}
