* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Container */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.header {
    background-color: #003087;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .logo img {
    height: 40px;
}

.header .logo-text {
    font-size: 18px;
    font-weight: 500;
}

.header .logo-subtext {
    font-size: 12px;
    color: #28a745;
}

.header .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.header .contact-info .phone {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .contact-info .email {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .book-appointment {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header .book-appointment:hover {
    background-color: #218838;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 24px;
    color: #28a745;
    cursor: pointer;
}

/* Navigation menu */
.nav-menu {
    background-color: #f8f9fa;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    border-bottom: 2px solid #dee2e6;
}

.nav-menu a {
    color: #003087;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #28a745;
}

/* Mobile Menu (Hidden by default) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003087;
    z-index: 30;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu .close-btn {
    align-self: flex-end;
    font-size: 24px;
    color: #28a745;
    cursor: pointer;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #28a745;
    text-align: left;
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: #28a745;
}

/* Slider container */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgb(12, 12, 12);
    padding-top: 120px;
}

.slider {
    display: flex;
    width: 100%;
    height: 600px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    background-color: #000; /* Black background for letterboxing */
}

/* Slider overlay transparency */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
    font-family: 'Arial', sans-serif;
    z-index: 5;
}

/* Left caption transparency */
.left-caption {
    font-size: 18px;
    font-weight: 300;
    max-width: 40%;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Right links transparency */
.right-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.right-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.right-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Controls transparency */
.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.pause-btn, .next-btn, .back-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgba(51, 51, 51, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pause-btn:hover, .next-btn:hover, .back-btn:hover {
    background-color: rgba(85, 85, 85, 0.5);
    color: rgba(255, 255, 255, 1);
}

/* About Section */
.about-section {
    background-color: #e9f0f8;
    padding: 40px 20px;
    text-align: center;
    color: #003087;
}

.about-section .about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-section .about-subtitle {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 20px;
}

.about-section .about-description {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.about-section .facilities {
    font-size: 24px;
    margin-bottom: 20px;
    color: #003087;
}

.about-section .location-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-section .location-card {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: left;
    color: #333;
    transition: transform 0.3s;
}

.about-section .location-card:hover {
    transform: translateY(-5px);
}

.about-section .location-number {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Pain Conditions Section */
.pain-conditions-section {
    background-color: #e9f0f8;
    padding: 40px 20px;
    text-align: center;
}

.pain-conditions-section .conditions-subtitle {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 10px;
}

.pain-conditions-section .conditions-title {
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.pain-conditions-section .conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-conditions-section .condition-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.pain-conditions-section .condition-card:hover {
    transform: translateY(-5px);
}

.pain-conditions-section .condition-card i {
    font-size: 40px;
    color: #003087;
    margin-bottom: 15px;
    cursor: pointer;
}

.pain-conditions-section .condition-card p {
    font-size: 16px;
    color: #003087;
    font-weight: 500;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup-content i {
    font-size: 50px;
    color: #003087;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 18px;
    color: #003087;
    font-weight: 500;
    margin-bottom: 20px;
}

.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.popup-content .close-btn:hover {
    color: #28a745;
}

/* Doctors Section */
.doctors-section {
    background-color: #e9f0f8;
    padding: 40px 20px;
    text-align: center;
}

.doctors-section .doctors-title {
    font-size: 36px;
    color: #003087;
    margin-bottom: 10px;
}

.doctors-section .doctors-subtitle {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 40px;
}

.doctors-section .doctor-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.doctors-section .doctor-card .doctor-details {
    order: 1;
    max-width: 50%;
    text-align: left;
}

.doctors-section .doctor-card .doctor-image {
    order: 2;
    margin-left: 20px;
}

.doctors-section .doctor-card:nth-child(odd) .doctor-image {
    order: 2;
}

.doctors-section .doctor-card:nth-child(even) .doctor-image {
    order: 1;
    margin-left: 0;
    margin-right: 20px;
}

.doctors-section .doctor-image img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transform: rotate(1deg);
    transition: transform 0.3s;
}

.doctors-section .doctor-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

.doctors-section .doctor-name {
    font-size: 24px;
    color: #003087;
    margin-bottom: 10px;
}

.doctors-section .doctor-qualifications {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.doctors-section .doctor-experience li {
    font-size: 14px;
    color: #28a745;
    list-style-type: none;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.doctors-section .doctor-experience li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Patient Testimonials Section */
.testimonials-section {
    background-color: #e9f0f8;
    padding: 40px 20px;
    text-align: center;
}

.testimonials-section .testimonials-subtitle {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 10px;
}

.testimonials-section .testimonials-title {
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.testimonials-section .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-section .testimonials-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-section .testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    overflow: hidden;
    flex: 0 0 33.33%;
    margin-right: 20px;
}

.testimonials-section .testimonial-quote {
    background-color: #28a745;
    color: white;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

.testimonials-section .testimonial-quote::before {
    content: '“';
    font-size: 40px;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.5;
}

.testimonials-section .testimonial-name {
    padding: 15px 20px;
    font-size: 18px;
    color: #003087;
    font-weight: 500;
    text-align: center;
}

.testimonials-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.testimonials-section .carousel-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #003087;
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s;
}

.testimonials-section .carousel-dots .dot.active {
    background-color: #28a745;
    opacity: 1;
}

.testimonials-section .see-all-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonials-section .see-all-btn:hover {
    background-color: #218838;
}

/* Media Coverage Section */
.media-coverage-section {
    background-color: #e9f0f8;
    padding: 40px 20px;
    text-align: center;
}

.media-coverage-section .media-subtitle {
    font-size: 18px;
    color: #28a745;
    margin-bottom: 10px;
}

.media-coverage-section .media-title {
    font-size: 36px;
    color: #003087;
    margin-bottom: 40px;
}

.media-coverage-section .media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.media-coverage-section .media-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-coverage-section .media-card img {
    max-width: 100%;
    height: auto;
}

.media-coverage-section .media-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
.footer-section {
    background-color: #003087;
    color: white;
    padding: 40px 20px;
    position: relative;
}

.footer-section .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.footer-section .footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #28a745;
}

.footer-column .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-column .contact-info i {
    font-size: 16px;
}

.footer-column .contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-column .contact-info a:hover {
    color: #28a745;
}

.footer-column .address {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section .copyright {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-section .copyright a {
    color: white;
    text-decoration: none;
}

.footer-section .copyright a:hover {
    color: #28a745;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-btn:hover {
    background-color: #20b858;
}

html {
    scroll-behavior: smooth;
}

/* Media Queries */
@media (max-width: 768px) {
    .header-container {
        position: static;
    }

    .slider-container {
        padding-top: 0;
    }

    .slider {
        height: 300px;
    }

    .left-caption {
        font-size: 16px;
        max-width: 50%;
    }

    .right-links a {
        font-size: 18px;
        padding: 8px 15px;
    }

    .header .contact-info a {
        font-size: 12px;
    }

    .header .book-appointment {
        font-size: 12px;
        padding: 6px 12px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header .contact-info {
        display: none;
    }

    .header .book-appointment {
        display: none;
    }

    .about-section .about-title {
        font-size: 28px;
    }

    .about-section .about-description {
        font-size: 14px;
    }

    .about-section .facilities {
        font-size: 20px;
    }

    .about-section .location-card {
        width: 150px;
    }

    .pain-conditions-section .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctors-section .doctor-card {
        flex-direction: column;
        text-align: center;
    }

    .doctors-section .doctor-image img {
        width: 150px;
        height: 200px;
        margin: 0 auto 20px;
    }

    .doctors-section .doctor-details {
        max-width: 100%;
        text-align: center;
    }

    .testimonials-section .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonials-section .testimonial-card {
        width: 90%;
        flex: 0 0 90%;
    }

    .media-coverage-section .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-section .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .slider {
        height: 200px;
    }

    .left-caption {
        font-size: 14px;
        max-width: 60%;
        padding: 10px;
    }

    .right-links a {
        font-size: 16px;
        padding: 6px 12px;
    }

    .pause-btn, .next-btn, .back-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .header {
        padding: 10px;
    }

    .header .logo-text {
        font-size: 16px;
    }

    .header .logo-subtext {
        font-size: 10px;
    }

    .about-section .about-title {
        font-size: 24px;
    }

    .about-section .location-card {
        width: 100%;
        margin-bottom: 10px;
    }

    .pain-conditions-section .conditions-grid {
        grid-template-columns: 1fr;
    }

    .popup-content {
        max-width: 250px;
    }

    .doctors-section .doctor-card {
        padding: 10px;
    }

    .doctors-section .doctor-image img {
        width: 120px;
        height: 150px;
    }

    .doctors-section .doctor-name {
        font-size: 20px;
    }

    .doctors-section .doctor-experience li {
        font-size: 12px;
    }

    .testimonials-section .testimonial-card {
        width: 100%;
        flex: 0 0 100%;
    }

    .media-coverage-section .media-grid {
        grid-template-columns: 1fr;
    }

    .footer-section .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.contact-info iframe {
    max-width: 100%;
    height: auto;
}*/