/* Dr. Jyothi Marry - Header Only */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    font-size: 16px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER + HERO WRAPPER with gradient */
.header-hero-wrapper {
    background-image: url('../images/banner_bg.webp');

}

.header {
    padding: 12px 0;
    position: relative;
    z-index: 1001;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: #E91E8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Header Inner Page Style */
.header-inner {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1001;
}

.logo-text .name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2D0F3A;
    line-height: 1.2;
}

.logo-text .subtitle {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #E91E8C;
    border-bottom: 2px solid #E91E8C;
}

/* Book Appointment Button */
.btn-book {
    background: #E91E8C;
    color: #ffffff !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-book:hover {
    background: #d11a7a;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2D0F3A;
    z-index: 1001;
    position: relative;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* NOTICE SECTION STYLES */
.notice-section {
    background: linear-gradient(90deg, #A91E5C 0%, #D84691 100%);
    color: #ffffff;
    height: 48px;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notice-container {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    max-width: 1200px;
    justify-content: space-between;
    /* Space out label, content, dots */
}

.notice-label {
    background: #8B1245;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px;
    font-weight: 600;
    font-size: 15px;
    height: 100%;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    min-width: 150px;
    flex-shrink: 0;
}

.notice-label .bell-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

/* Slider Wrapper */
.notice-wrapper {
    flex-grow: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.notice-slider {
    width: 100%;
    height: 100%;
    position: relative;
}


.notice-item {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    /* Let clicks pass through if needed */
    white-space: nowrap;
    overflow: hidden;
    /* Removed ellipsis to allow marquee */
    font-size: 15px;
    font-weight: 500;
}

.notice-item span {
    display: inline-block;
    padding-left: 100%;
    /* Start off-screen right */
    animation: none;
    /* Default no animation */
}

/* Only animate the active slide's span */
.notice-item.active span {
    animation: marquee 25s linear 1;
}

.notice-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Dots Pagination */
.notice-dots {
    display: flex;
    gap: 6px;
    padding: 0 15px;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    /* Dull/inactive */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    /* Bright/active */
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* CONTINUOUS NOTICE TICKER STYLES */
.notice-ticker-section {
    background: linear-gradient(90deg, #A91E5C 0%, #D84691 100%);
    color: #ffffff;
    height: 48px;
    overflow: hidden;
    position: relative;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1px;
    /* Subtle separator */
}

.ticker-wrapper {
    flex-grow: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-size: 15px;
    font-weight: 500;
    padding: 0 40px;
}

.ticker-separator {
    font-size: 18px;
    font-weight: bold;
    opacity: 0.6;
}



@media (max-width: 768px) {
    .notice-label {
        font-size: 0;
        padding: 0 25px 0 12px;
        min-width: 60px;
        clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%);
    }

    .notice-label .bell-icon {
        margin-right: 0;
    }

    .notice-item {
        font-size: 13px;
        white-space: normal;
        /* Allow wrap on mobile */
        line-height: 1.2;
    }

    .notice-dots {
        padding-right: 10px;
    }
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding-top: 60px;
    overflow: hidden;
    min-height: 550px;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left side - Content */
.hero-content {
    padding-right: 20px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 450px;
}

.btn-primary {
    display: inline-block;
    background: #E91E8C;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #d11a7a;
    transform: translateY(-2px);
}

/* Right side - Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 40px 0;
    background: #FFFFFF;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

/* Left - Image */
.about-image {
    display: flex;
    justify-content: center;
}

/* Right - Content */
/* Right - Content */
.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-content .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #E91E8C;
}

.about-content ul {
    margin-bottom: 16px;
}

.about-content ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Hide mobile image on desktop */
.about-image-mobile {
    display: none;
}

/* Reusable Grid for Inner Pages */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .about-grid .about-image {
        order: -1;
    }

    /* Hide desktop image, show mobile image */
    .about-image-desktop {
        display: none;
    }

    .about-image-mobile {
        display: block;
        margin: 20px 0;
        text-align: center;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 30px 0;
    background: #FFEEF6;
}

.services-header {
    text-align: center;
    margin-bottom: 35px;
}

.services-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-header p {
    font-size: 18px;
    /* Increased from 15px */
    color: #E91E8C;
    /* Changed to pink to match brand */
}

.services-grid {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

/* Left - Content */
.services-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-content-left {
    flex: 1;
}

.service-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.service-category ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-category li {
    font-size: 16px;
}

/* Right - Image */
.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 30px 0 50px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
    /* Reduced from 40px */
}

.testimonials-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 18px;
}

/* Services Header Subtitle */
.services-header p {
    font-size: 18px;
    color: #E91E8C;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}


/* Carousel wrapper for hidden overflow */
.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Carousel Container */
.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 1s ease-in-out;
    padding-left: 0;
}

/* Individual Testimonial Cards */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #3e3e3e;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 350px;
    min-width: 350px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: none;
}

/* EVEN Cards: PINK BACKGROUND */
.testimonial-card:nth-child(even) {
    background: #E91E8C;
    border-color: #E91E8C;
}

.testimonial-card:nth-child(even) h4,
.testimonial-card:nth-child(even) p {
    color: #fff;
}

/* ODD Cards: White Background (Default) */
.testimonial-card:nth-child(odd) {
    background: #FFFFFF;
}

/* Star Styling */
.testimonial-card .stars {
    font-size: 18px;
}

/* Default Stars (Odd/White Cards): Orange & Grey */
.testimonial-card .stars .filled {
    color: #FFC107;
}

.testimonial-card .stars .empty {
    color: #e0e0e0;
}

/* EVEN Cards (Pink): Stars White & Faded White */
.testimonial-card:nth-child(even) .stars .filled {
    color: #ffffff;
}

.testimonial-card:nth-child(even) .stars .empty {
    color: rgba(255, 255, 255, 0.4);
}

.testimonial-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.testimonial-card.featured p,
.testimonial-card.featured .stars {
    color: #FFFFFF;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.profile-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 30px 0 40px 0;
    background: #FFEEF6;
}

.gallery-hero-section {
    background: linear-gradient(180deg, #FFF7FB 0%, #FFD9EB 100%);
    padding: 0 0 50px;
    text-align: center;
}

.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    background: #E91E8C;
    color: #FFFFFF;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #d11a7a;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 40px 0;
    /* Reduced from 60px for tighter spacing */
    background: #FFFFFF;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: stretch;
    /* Changed from start to stretch for equal heights */
}

.contact-page-grid {
    padding: 40px 0;
}

/* Left - Form */
.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Match height with contact info */
}

.contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E91E8C;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #E91E8C;
    color: #FFFFFF;
    padding: 14px 50px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
    width: 180px;
    box-sizing: border-box;
}

.btn-submit:hover {
    background: #d11a7a;
}

/* Right - Contact Info Card */
.contact-info-card {
    background: #FFEEF6;
    border-radius: 16px;
    padding: 12px 20px;
    box-sizing: border-box;
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    /* Increased from 22px */
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item {
    margin-bottom: 8px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item p {
    font-size: 18px;
    /* Increased from 17px */
    margin: 0;
    padding-left: 24px;
}

.contact-item .email-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-item .email-link:hover {
    color: #E91E8C;
    text-decoration: none;
}

.contact-spacing {
    height: 30px;
}

/* Service List with Checkmarks */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #E91E8C;
    font-weight: bold;
}

.service-list-card {
    background: #FFE5F3;
    padding: 30px;
    border-radius: 16px;
}

.service-list-card h3 {
    color: #2D0F3A;
    margin-bottom: 16px;
    font-size: 20px;
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-placeholder {
    margin-top: 20px;
    background: #E0E0E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    height: 300px;
    border-radius: 8px;
    text-align: center;
}

/* ============================================
   INNER PAGES
   ============================================ */
/* Profile Page Specifics */
.profile-banner {
    background: #D84691;
    /* Darker pink for banner */
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 18px;
    max-width: 850px;
    /* Reduced width as per request */
    margin: 0 auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.profile-hero-section {
    background: linear-gradient(180deg, #FFF7FB 0%, #FFD9EB 100%);
    padding: 0 0 180px;
    text-align: center;
}

.profile-hero-title {
    color: #E91E8C;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 50px;
    /* Added margin top since section padding is gone */
}

.profile-hero-subtitle {
    font-size: 26px;
    color: #000;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
}

.gallery-hero-subtitle {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
}

.profile-image-wrapper {
    /* Pull up to overlap */
    position: relative;
    z-index: 10;
    text-align: center;
}

.profile-img-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    position: absolute;
    top: -220px;
    left: 40%;
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.05);
}

.profile-content-rounded {
    background: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -50px;
    /* Pull up to create rounded header effect */
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    /* Constrain width to create card effect */
    padding-top: 120px;
    /* Space for the image */
    position: relative;
    z-index: 1;
    /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); */
    /* Optional: adds depth if it's floating */
}

.profile-bio-img {
    width: 350px;
    height: 480px;
    /* Tall aspect ratio */
    border-top-left-radius: 175px;
    /* Half of width for full arch */
    border-top-right-radius: 175px;
    border-bottom-left-radius: 175px;
    /* Oval shape as per design reference */
    border-bottom-right-radius: 175px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Feature/Group Image - Horizontal Pill Shape */
.profile-group-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.profile-group-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15rem;
    /* Horizontal stadium/pill shape */
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    color: #E91E8C;
    margin-bottom: 16px;
    font-size: 48px;
}

.page-subtitle {
    font-size: 20px;
    color: #2D0F3A;
    font-weight: 600;
    line-height: 1.5;
}

.profile-hero-img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-pink {
    color: #E91E8C;
}

.text-purple {
    color: #2D0F3A;
}

.bg-light-pink {
    background-color: #FFE5F3;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-gray-100 {
    background-color: #F8F9FA;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #2D0F3A;
    color: #FFFFFF;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 200px;
    margin-bottom: 30px;
}

.footer-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* =========================================
   ADMIN LOGIN PAGE
   ========================================= */
.admin-login-body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side - Pink */
.login-left {
    flex: 1;
    background-color: #C04E82;
    /* Pink shade from screenshot */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles Background (Simulated) */
.login-left::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.login-left::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.login-circles-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.circle-main {
    width: 300px;
    /* Adjusted size */
    height: auto;
    z-index: 10;
}

.circle-main img {
    width: 100%;
    height: auto;
    display: block;
    /* Remove border-radius if using the half-body cutout image, strictly circular if using a framed image */
    /* Assuming bio_pic is a cutout or standard photo. If standard, needs border-radius: 50% */
}

/* Floating Small Circles */
.circle-small {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.circle-1 {
    top: 20%;
    left: -20px;
}

.circle-2 {
    bottom: 20%;
    right: -20px;
}

.circle-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-hero-text {
    position: absolute;
    bottom: 50px;
    text-align: center;
    color: white;
    z-index: 5;
    width: 100%;
}

.login-hero-text h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

/* Right Side - Form */
.login-right {
    flex: 1;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
    text-align: left;
}

.login-logo {
    margin-bottom: 30px;
    text-align: center;
}

.login-logo img {
    height: 60px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
}

/* Form Styles */
.login-form-wrapper .form-group {
    margin-bottom: 25px;
}

.login-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    transition: box-shadow 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #C04E82;
    box-shadow: 0 0 0 3px rgba(192, 78, 130, 0.1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    background: #C04E82;
    /* Pink */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(192, 78, 130, 0.3);
}

.btn-login:hover {
    background: #a93b6e;
}

.login-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.login-footer a {
    color: #007bff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        display: none;
        /* Hide fancy details on mobile or stack them */
    }

    .login-right {
        padding: 20px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-logo .icon {
    width: 50px;
    height: 50px;
    border: 1px solid #E91E8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #E91E8C;
}

.footer-logo-text .name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
}

.footer-logo-text .subtitle {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

.footer-desc {
    color: #B0A4B5;
    line-height: 1.8;
    max-width: 450px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    color: #E91E8C;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-brand-icon {
    font-size: 30px;
    color: #E91E8C;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: 20px;
        /* Add gap between logo and menu */
    }

    .header .logo img {
        height: 40px;
        width: auto;
    }

    .header .container {
        justify-content: space-between;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-bg-circle {
        display: none;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-placeholder {
        width: 280px;
        height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-image {
        order: -1;
    }

    /* Testimonials Carousel - Tablet */
    .testimonial-card {
        min-width: 280px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-copyright-text {
        justify-content: center;
        flex-direction: column-reverse;
        /* Stack on mobile if needed, or just center */
        gap: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* Services Page Specifics */

.services-hero-section {
    background: linear-gradient(180deg, #FFF7FB 0%, #FFD9EB 100%);
    padding: 0 0 100px;
    text-align: center;
}

.services-hero-subtitle {
    margin-top: 60px;
    font-weight: 400;
    font-size: 32px;
}

.services-hero-highlight {
    font-weight: 500;
    color: #E91E8C;
}

.services-hero-specialty {
    font-size: 32px;
}

/* Services Tabs Design */
.services-toggle-section {
    padding-top: 50px;
    background: #fff;
}

.services-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    border-bottom: 2px solid #CBCBCB;
    padding-left: 180px;
}

.tab-button {
    padding: 12px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #CBCBCB;
    border-bottom: none;
    background: #fff;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.tab-button:hover {
    background-color: #F3F4F6;
}

.tab-button.active {
    background: #D6428D;
    color: #fff;
    border-color: #D6428D;
}

.tab-content {
    display: none;
    padding: 40px 0 60px 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Obstetrics Section Specifics */
.section-title-pink {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.styled-service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.styled-service-list li {
    background-color: #F5F5F5;
    padding: 15px 20px;
    border-left: 4px solid #E91E8C;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
    transition: transform 0.2s ease;
}

.obs-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background-color: #010D29;
    color: #fff;
    padding: 40px 0 10px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 10px;
}

.footer-brand {
    flex: 2;
}

.footer-logo {
    width: 230px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-content-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    color: #D44189;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #D44189;
}

.footer-copyright-text {
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.footer-birds-icon {
    height: 50px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-copyright-text {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* Restored OBS Card Styles */
.obs-card {
    border: 1px solid #A2A2A2;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.obs-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    padding: 15px 15px 0 15px;
}

.obs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.obs-card-content {
    padding: 25px;
}

.obs-card-title {
    color: #E91E8C;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.obs-card-desc {
    font-size: 15px;
    line-height: 1.6;
}

.highlight-text {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-top: 10px;
}


/* Gynaecology Section Specifics */
.gyn-image-container {
    margin-top: 60px;
}

.gyn-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#gynaecology .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gyn-services-detailed {
    margin-top: 60px;
}

.gyn-services-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

/* Restored Two-Column Structure */
.gyn-services-container {
    display: flex;
    gap: 30px;
}

.gyn-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Stack */
@media (max-width: 768px) {
    .gyn-services-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* .gyn-col removed as it's no longer used */

.gyn-service-item {
    background-color: #F5F5F5;
    padding: 15px 20px;
    border-left: 4px solid #E91E8C;
    font-size: 15px;
    color: #374151;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
}

.gyn-service-item strong {
    display: block;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
}

.gyn-service-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.gyn-service-item ul li {
    font-weight: 400;
    margin-bottom: 4px;
    color: #374151;
}

@media (max-width: 768px) {
    .gyn-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* CTA Pink Section */
.cta-pink-section {
    background-color: #FFF0F8;
    padding: 30px 0;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 28%;
}

.cta-image-wrapper {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid #FFD1E8;
    background: #fff;
    padding: 5px;
}

.cta-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cta-text-content {
    flex: 1;
}

.cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
}

.text-pink {
    color: #E91E8C;
}

.btn-cta-pink {
    display: inline-block;
    background-color: #D6428D;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-cta-pink:hover {
    background-color: #AD3570;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Gallery Testimonials Override */
.gallery-testimonials {
    background-color: #FFEEF6;
    /* Light pink background */
}

/* Testimonial Avatar */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-testimonials .testimonial-card p {
    font-size: 15px;
    /* Increased font size for better readability */
}

/* Contact Page Hero */
.contact-hero-section {
    background: linear-gradient(180deg, #FFF0F8 0%, #FFD9EB 100%);
    padding-bottom: 60px;
    padding-top: 0;
}

.contact-banner {
    background-color: #D6428D;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-hero-subtitle {
    font-size: 32px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}

/* Refined Contact Page Styles */
.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.contact-card-grid>* {
    min-width: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card-refined {
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.contact-card-refined h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-card-refined p {
    font-size: 16px;
    margin-bottom: 2px;
}

.icon-pink {
    color: #D84691;
    font-size: 18px;
}

.icon-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.form-control-refined {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control-refined:focus {
    outline: none;
    border-color: #D84691;
}

.btn-submit-pink {
    background-color: #D84691;
    color: #fff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    /* Rounded pill shape */
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit-pink:hover {
    background-color: #C2185B;
}

/* Utility Classes for Refactoring */
.icon-location {
    width: 24px;
}

.rating-stars-img {
    width: 100px;
}

.map-placeholder-title {
    margin: 0;
    font-weight: 600;
}

.map-embed-text {
    font-size: 0.875rem;
}

.map-embed-subtext {
    font-size: 0.75rem;
}


.mt-60 {
    margin-top: 60px;
}

/* Margin Bottom Utilities */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

/* Margin Top Utilities */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

/* Flexbox Utilities */
.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

/* Text Utilities */
.text-black {
    color: #000 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}


.text-center {
    text-align: center !important;
}

.text-start {
    text-align: left !important;
}

.text-dark {
    color: #000 !important;
}

.contact-card-refined a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-card-refined a:hover {
    color: #D6428D;
    text-decoration: none;
}

.locations-text {
    font-size: 18px;
    text-align: center;
}

/* Locations Section */
.locations-section {
    padding: 60px 0;
    background-color: #FAFAFA;
    /* Light gray background */
}

.location-card-refined {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    overflow: hidden;
    /* Clips the map corners */
    border: none;
    transition: transform 0.3s;
}

.location-card-refined:hover {
    transform: translateY(-5px);
}

.location-content {
    min-height: 180px;
    /* Ensure consistent height before map */
}

.location-map-container {
    height: 250px;
    width: 100%;
    background-color: #fff;
    padding: 12px;
    border-radius: 20px;
}

.location-map-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: block;
}

/* Form Error Styling */
.form-control-refined.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Flash Messages */
.success-message-box,
.error-message-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.success-message-box {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message-box {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pl-5 {
    padding-left: 3rem !important;
}

/* Semantic Refactoring for Locations */
.locations-grid {
    padding: 30px 0 40px 0;
}

.locations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-main-title {
    color: #000;
    font-weight: 700;
    font-size: 32px;
}

.locations-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.location-card-item {
    height: 100%;
}

.location-content-inner {
    padding: 1.5rem;
}

.location-info-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.location-icon-wrapper {
    margin-top: 0.25rem;
    margin-right: 1rem;
    width: 16px;
}

.location-title-text {
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.location-subtitle-text {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.location-address-block {
    padding-left: 2rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .locations-grid-container {
        grid-template-columns: 1fr;
    }
}


/* Semantic Styles for Contact Form & Info */
.contact-info-wrapper {
    width: 570px;
}

.contact-section-title {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.success-message-box {
    margin-bottom: 1.5rem;
}

.contact-form-group {
    margin-bottom: 1rem;
}

.contact-form-group-large {
    margin-bottom: 1.5rem;
}

.contact-info-subtitle {
    margin-bottom: 1.5rem;
    color: #6c757d;
    font-size: 16px;
}

.card-flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-card-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.info-card-text {
    margin-bottom: 0.25rem;
    font-size: 14px;
    color: #444;
}

/* ============================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ============================================ */

/* TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid {
        gap: 40px;
        flex-direction: column;
    }

    #gynaecology .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-image {
        order: -1;
        width: 100%;
        margin-bottom: 30px;
    }

    .services-image img {
        max-height: 400px;
        border-radius: 20px;
    }

    .contact-grid {
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .gallery-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-testimonials .testimonial-card p {
        font-size: 15px;
    }

    .profile-hero-subtitle {
        font-size: 26px;
    }

    /* Services Page - Tablet */
    .services-hero-subtitle {
        font-size: 26px;
        margin-top: 40px;
    }

    .services-tabs {
        padding-left: 30px;
        gap: 15px;
    }

    .tab-button {
        min-width: 150px;
        padding: 10px 30px;
        font-size: 15px;
    }

    .obs-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gyn-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content-wrapper {
        gap: 30px;
    }
}

/* MOBILE (max-width: 768px) */
@media (max-width: 768px) {

    /* Global */
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Navigation */
    .mobile-toggle {
        display: block !important;
        font-size: 28px;
        color: #2D0F3A;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        gap: 20px;
        display: flex !important;
        visibility: visible !important;
    }

    .nav-menu.active {
        transform: translateX(0);
        right: 0;
        /* Ensure it stays pinned */
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }

    .nav-menu .btn-book {
        margin-top: 20px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    /* Sections */
    .hero,
    .about,
    .services,
    .contact,
    .gallery {
        padding: 60px 0;
    }

    .hero .container,
    .about .container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        order: 2;
        padding: 0;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-width: 80%;
    }

    /* Services & Testimonials */
    .services-grid {
        flex-direction: column;
        gap: 30px;
    }

    #gynaecology .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials Carousel - Mobile */
    .testimonial-card {
        min-width: 280px;
        width: 280px;
        padding: 15px;
        transform: scale(0.95);
        color: #FFFFFF;
        background: #E91E8C !important;
        border-color: #E91E8C !important;
    }

    .testimonial-card.featured {
        transform: scale(1);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-section-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .gallery-header h2 {
        font-size: 24px;
    }

    .gallery-hero-section {
        padding: 0 0 30px;
    }

    .gallery-testimonials .testimonials-header h2 {
        font-size: 24px;
    }

    .gallery-testimonials .testimonials-header p {
        font-size: 14px;
    }

    /* Profile Inner */
    .profile-hero-section {
        padding-bottom: 100px;
    }

    .profile-img-circle {
        width: 150px;
        height: 150px;
        top: -160px;
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-content-rounded {
        margin-top: -30px;
        padding-top: 100px;
    }



    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-bio-img {
        width: 100%;
        height: 350px;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Services Page - Mobile */
    .services-hero-section {
        padding: 0 0 60px;
    }

    .services-hero-subtitle {
        font-size: 20px;
        margin-top: 30px;
        line-height: 1.4;
    }

    .services-hero-subtitle br {
        display: none;
    }

    .services-hero-specialty {
        font-size: 1.1em;
    }

    .services-toggle-section {
        padding-top: 30px;
    }

    .services-tabs {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .tab-content {
        padding: 30px 0 40px 0;
    }

    .section-title-pink {
        font-size: 24px;
        text-align: center;
    }

    .service-description {
        font-size: 15px;
        text-align: left;
    }

    .services-list-title {
        font-size: 18px;
        text-align: center;
        margin-top: 30px;
    }

    .styled-service-list li {
        font-size: 14px;
        padding: 12px 15px;
    }

    .obs-card-title,
    .gyn-services-title {
        font-size: 18px;
    }

    .obs-card-desc {
        font-size: 14px;
    }

    .gyn-image-container {
        margin-top: 30px;
    }

    .gyn-img {
        max-height: 300px;
    }

    .gyn-services-detailed {
        margin-top: 40px;
    }

    .gyn-service-item {
        font-size: 14px;
        padding: 15px;
    }

    .gyn-service-item strong {
        font-size: 15px;
    }

    .gyn-service-item ul {
        margin-top: 10px;
    }

    .gyn-service-item li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .cta-pink-section {
        padding: 40px 0;
    }

    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-image-wrapper {
        order: 1;
    }

    .cta-text-content {
        order: 2;
    }

    .cta-heading {
        font-size: 18px;
        line-height: 1.5;
    }

    .btn-cta-pink {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery-section-title {
        font-size: 18px;
    }

    .gallery-header h2 {
        font-size: 20px;
    }

    .profile-hero-subtitle {
        font-size: 18px;
    }

    /* Services Page - Small Mobile */
    .services-hero-subtitle {
        font-size: 18px;
    }

    .tab-button {
        min-width: 140px;
        padding: 8px 15px;
        font-size: 13px;
    }

    .section-title-pink {
        font-size: 20px;
    }

    .cta-heading {
        font-size: 16px;
    }
}

/* ============================================
   LIGHTBOX COMPONENT
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #E91E8C;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Lightbox Watermark Overlay */
.lightbox-content {
    position: relative !important;
    /* Ensure context for absolute pos */
}

.lightbox-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25%;
    /* Responsive width for large image */
    min-width: 150px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 2002;
    /* Above lightbox image */
    display: block;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2005;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
}

.lightbox-nav:hover {
    color: #E91E8C;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Contact Info Wrapper - Responsive */
@media (max-width: 768px) {
    .contact-info-wrapper {
        width: 100% !important;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    /* Contact Section - Mobile Fixes */
    .contact {
        padding: 40px 0;
    }

    .contact .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form form {
        width: 90%;
    }

    .contact-item p {
        padding-left: 0;
        word-wrap: break-word;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        border-radius: 6px;
        width: 100%;
    }

    .form-group textarea {
        min-height: 100px;
        width: 100%;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .contact-form h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contact-info-card {
        padding: 16px;
        width: 100%;
    }

    .contact-item {
        width: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .contact-info-wrapper {
        width: 100%;
        max-width: 570px;
    }
}

/* ============================================
   GALLERY COMING SOON STYLES
   ============================================ */
.gallery-coming-soon {
    grid-column: 1 / -1;
    padding: 80px 20px;
    background: #fdf6f7;
    border-radius: 20px;
    border: 2px dashed #f5c5d0;
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.coming-soon-content {
    max-width: 400px;
}

.coming-soon-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.coming-soon-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #D6428D;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coming-soon-content small {
    font-size: 16px;
    color: #888;
    display: block;
    line-height: 1.5;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .gallery-coming-soon {
        padding: 50px 15px;
        min-height: 200px;
    }

    .coming-soon-content p {
        font-size: 22px;
    }

    .coming-soon-icon {
        font-size: 40px;
    }
}