/* ========================================
   Dr. Swaranjeet Kaur - Nephrologist Website
   Premium Medical Theme Stylesheet
   ======================================== */

:root {
    /* Primary Brand Colors */
    --primary-navy: #0a2e5c;
    --secondary-blue: #1e4d8c;
    --accent-teal: #00b4a6;
    --teal-hover: #009688;
    
    /* Background & Glass */
    --light-bg: #f4f8fb;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Text Colors */
    --text-dark: #1a2a3a;
    --text-light: #5a6a7a;
    --text-muted: #8a9aaa;
    --white: #ffffff;
    
    /* Accent Colors */
    --gold-accent: #d4af37;
    --soft-gold: #f4e4a6;
    
    /* Effects */
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --soft-shadow: 0 10px 25px rgba(10, 46, 92, 0.08);
    --hover-shadow: 0 25px 50px rgba(10, 46, 92, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a2e5c 0%, #1e4d8c 100%);
    --gradient-accent: linear-gradient(135deg, #00b4a6 0%, #009688 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    --gradient-light: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Depth Blobs */
    --blob-1: radial-gradient(circle, rgba(0, 180, 166, 0.05) 0%, transparent 70%);
    --blob-2: radial-gradient(circle, rgba(10, 46, 92, 0.05) 0%, transparent 70%);
}

body {
    background-image: var(--blob-1), var(--blob-2);
    background-position: top -200px right -200px, bottom -200px left -200px;
    background-repeat: no-repeat;
    background-size: 800px 800px;
}

.top-bar {
    position: relative;
    z-index: 1100;
    background: var(--primary-navy);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

/* Adjust header spacer */
header.glass-header {
    top: auto;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--primary-navy);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 46, 92, 0.2) 0%, rgba(10, 46, 92, 0.1) 100%);
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(10deg); }
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    max-width: 650px;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
}

/* 3D Card Effects */
.department-card, .why-card, .service-card, .technology-card {
    transform: perspective(1000px);
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.department-card:hover, .why-card:hover, .service-card:hover, .technology-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(10, 46, 92, 0.15) !important;
}

/* Section Title Enhancement */
.section-header h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: rgba(0, 180, 166, 0.2);
}

.section-header h2::after {
    width: 40px;
    background: var(--gradient-accent);
    height: 4px;
    border-radius: 2px;
    animation: underlineAnim 3s infinite ease-in-out;
}

@keyframes underlineAnim {
    0%, 100% { width: 40px; }
    50% { width: 80px; }
}

/* Layered Transitions */
section {
    position: relative;
    padding: 100px 0;
}

.section-padding:nth-child(even) {
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.section-padding:nth-child(odd) {
    background: #ffffff;
}

/* Medical Background Pattern Overlay */
.section-medical-bg {
    position: relative;
}

.section-medical-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(10, 46, 92, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

 .highlight-name {
  background: linear-gradient(135deg, #0a2e5c, #00b4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.highlight-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #00b4a6, #009688);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
}

.highlight-name:hover::after {
  transform: scaleX(1);
}

.top-bar {
  background: var(--primary-navy);
  color: white;
  padding: 6px 0;
  font-size: 14px;
}

.top-bar a {
  color: var(--accent-teal);
  margin-right: 20px;
  text-decoration: none;
}

.top-bar span {
  margin-left: 20px;
}

.hero-content p {
    max-width: 650px;
}

.department-card:hover, .why-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

section {
    padding: 40px 0;
}

/* ========================================
   Base Styles & Reset
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--teal-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Custom Scrollbar
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}

/* ========================================
   Glassmorphism Header
   ======================================== */

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--soft-shadow);
}

.header-top {
    background: var(--gradient-primary);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top a,
.header-top span {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 20px;
}

.header-top i {
    margin-right: 5px;
    color: var(--accent-teal);
}

.navbar {
    padding: 9px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-text h1 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-navy);
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal) !important;
    background: rgba(0, 180, 166, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-teal);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: rgba(0, 180, 166, 0.1);
    color: var(--accent-teal);
}

.btn-appointment {
    background: var(--gradient-accent);
    color: white !important;
    padding: 12px 25px !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 180, 166, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 166, 0.4);
    color: white !important;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 20px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(135deg, rgba(10, 46, 92, 0.9) 0%, rgba(10, 46, 92, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    color: white;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-teal);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin: 0;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Kidney Animation */
.floating-kidney {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateY(-50%) translateY(-20px) rotate(5deg); }
}

/* Appointment Form */
.appointment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
}

.appointment-card h3 {
    color: var(--primary-navy);
    margin-bottom: 25px;
    text-align: center;
}

.form-control {
    border: 2px solid rgba(10, 46, 92, 0.1);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: white;
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.1);
}

.btn-primary-custom {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 180, 166, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 166, 0.4);
    color: white;
}

/* ========================================
   Section Styles
   ======================================== */

.section-padding {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background: var(--gradient-light);
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-accent);
    color: white;
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.experience-badge h3 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
}

.experience-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.about-content h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-size: 1.1rem;
}

/* ========================================
   Department Cards
   ======================================== */

.department-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.dept-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: var(--transition-normal);
}

.department-card:hover .dept-icon {
    background: var(--gradient-accent);
    transform: rotateY(360deg);
}

.department-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.dept-link {
    color: var(--accent-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dept-link:hover {
    gap: 12px;
}

/* ========================================
   Service Cards
   ======================================== */

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-normal);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-image {
    height: 220px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

/* ========================================
   Why Choose Us
   ======================================== */

.why-choose-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: white;
}

.why-choose-section .section-header h2::after {
    background: var(--accent-teal);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.why-card h4 {
    color: white;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--soft-shadow);
    margin: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2rem;
    color: var(--accent-teal);
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-info h5 {
    color: var(--primary-navy);
    margin: 0;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating {
    color: var(--gold-accent);
    margin-top: 5px;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1199px) {
    .nav-link {
        padding: 10px 12px !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    .glass-header {
        position: fixed !important;
    }
    
    .navbar-collapse {
        background: white;
        margin: 0 -15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
        
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        padding-left: 20px;
        border-left: 2px solid var(--accent-teal);
        border-radius: 0;
        margin-top: 0;
    }

    .btn-appointment {
        margin-top: 15px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-kidney {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .brand-text h1 {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        gap: 10px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
.nav-link {
    font-size:0.89rem;
}
@media (max-width: 575px) {
    .appointment-card {
        padding: 25px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    background: white;
    border: none;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 600;
    color: var(--primary-navy);
    background: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 180, 166, 0.05);
    color: var(--accent-teal);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 180, 166, 0.2);
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 0 30px 25px;
    color: var(--text-light);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: var(--gradient-accent);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: white;
    color: var(--accent-teal);
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-normal);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--teal-hover);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--primary-navy);
    color: white;
    padding: 80px 0 0;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-teal);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   Page Banner
   ======================================== */

.page-banner {
    background: var(--gradient-primary);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner-content h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--accent-teal);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Blog Styles
   ======================================== */

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.blog-image {
    height: 220px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--accent-teal);
    margin-right: 5px;
}

.blog-content h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: inherit;
}

.blog-content h4 a:hover {
    color: var(--accent-teal);
}

/* ========================================
   Gallery Styles
   ======================================== */

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 46, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--soft-shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   Admin Panel Styles
   ======================================== */

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}

.admin-login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--card-shadow);
}

.admin-login-card h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-navy);
}

.admin-sidebar {
    background: var(--primary-navy);
    min-height: 100vh;
    padding: 30px 0;
    position: fixed;
    width: 260px;
}

.admin-logo {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.admin-logo h4 {
    color: white;
    margin: 0;
}

.admin-nav {
    list-style: none;
    padding: 0;
}

.admin-nav li a {
    display: block;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(0, 180, 166, 0.2);
    color: var(--accent-teal);
    border-left: 3px solid var(--accent-teal);
}

.admin-nav li a i {
    margin-right: 10px;
    width: 20px;
}

.admin-main {
    margin-left: 260px;
    padding: 30px;
    background: var(--light-bg);
    min-height: 100vh;
}

.admin-header {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--soft-shadow);
}

.stats-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--soft-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.stats-icon.primary {
    background: rgba(10, 46, 92, 0.1);
    color: var(--primary-navy);
}

.stats-icon.success {
    background: rgba(0, 180, 166, 0.1);
    color: var(--accent-teal);
}

.stats-info h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--primary-navy);
}

.stats-info p {
    margin: 0;
    color: var(--text-muted);
}

.admin-table {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.admin-table table {
    width: 100%;
    margin: 0;
}

.admin-table th {
    background: var(--light-bg);
    color: var(--primary-navy);
    font-weight: 600;
    padding: 20px;
    border: none;
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(0, 180, 166, 0.03);
}

.btn-action {
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
}

.btn-export {
    background: var(--accent-teal);
    color: white;
}

.btn-export:hover {
    background: var(--teal-hover);
    color: white;
}

/* ========================================
   Alert Messages
   ======================================== */

.alert {
    border-radius: var(--radius-md);
    padding: 15px 20px;
    border: none;
}

.alert-success {
    background: rgba(0, 180, 166, 0.1);
    color: var(--teal-hover);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* ========================================
   Modal Styles
   ======================================== */

.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1199px) {
    .floating-kidney {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--card-shadow);
        margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto;
    }
    
    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .appointment-card {
        padding: 25px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-banner {
        padding: 140px 0 60px;
    }
    
    .page-banner-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-primary-navy { color: var(--primary-navy) !important; }
.text-accent-teal { color: var(--accent-teal) !important; }
.bg-light { background-color: var(--light-bg) !important; }
.bg-primary-navy { background-color: var(--primary-navy) !important; }

.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }

/* RE-DESIGNED CSS: 
   Higher contrast and unique class prefixes (pmi-) 
*/

.pmi-advantages-area {
    background: #0a2e5c; /* Deep Navy base */
    background: linear-gradient(150deg, #0a2e5c 0%, #163d7a 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Orbs for visual separation */
.pmi-light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}
.pmi-orb-1 {
    width: 300px;
    height: 300px;
    background: #00b4a6;
    top: -100px;
    left: -100px;
}
.pmi-orb-2 {
    width: 400px;
    height: 400px;
    background: #1e4d8c;
    bottom: -150px;
    right: -100px;
}

.pmi-mini-label {
    background: rgba(0, 180, 166, 0.2);
    color: #00b4a6;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.pmi-main-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
}

.pmi-accent-divider {
    width: 80px;
    height: 4px;
    background: #00b4a6;
    margin: 20px 0;
    border-radius: 10px;
}

.pmi-sub-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* THE CARD - Improved contrast */
.pmi-feature-card {
    background: rgba(255, 255, 255, 0.08); /* Increased Opacity */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Brighter Border */
    padding: 40px 30px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pmi-feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00b4a6;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pmi-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b4a6 0%, #009688 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 180, 166, 0.3);
}

.pmi-index-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #0a2e5c;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pmi-feature-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pmi-feature-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .pmi-main-heading { font-size: 1.8rem; }
    .pmi-feature-card { padding: 30px 20px; }
}

/* PMI HERO SPECIFIC STYLES 
   Prefix: pmi-
*/

.pmi-hero-wrap {
    position: relative;
    background: #0a2e5c; /* Fallback Navy */
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.pmi-hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.pmi-hero-mask {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 46, 92, 0.4) 0%, rgba(10, 46, 92, 0.2) 100%);
    z-index: 1;
}

/* Moving Glow Orbs */
.pmi-hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 2;
    animation: pmiGlowFloat 15s infinite alternate;
}
.pmi-glow-1 { background: #00b4a6; top: -150px; right: -150px; }
.pmi-glow-2 { background: #1e4d8c; bottom: -150px; left: -150px; animation-delay: -7s; }

@keyframes pmiGlowFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 60px); }
}

/* Floating Kidney Asset */
.pmi-organ-container {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 300px;
    z-index: 2;
    opacity: 0.15;
}
.pmi-floating-organ {
    animation: pmiOrganBreath 7s ease-in-out infinite;
}

@keyframes pmiOrganBreath {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(4deg) scale(1.05); }
}

.pmi-hero-inner { position: relative; z-index: 5; }

/* Content Typography */
.pmi-hero-badge {
    background: rgba(0, 180, 166, 0.2);
    color: #00b4a6;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 180, 166, 0.3);
}

.pmi-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: white;
}

.pmi-text-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #00b4a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.pmi-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Row */
.pmi-hero-stats-row {
    display: flex;
    gap: 45px;
}

.pmi-stat-box h3 {
    font-size: 2.5rem;
    color: #00b4a6;
    font-weight: 800;
    margin-bottom: 0;
}

.pmi-stat-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 500;
}

/* Premium Form Card */
.pmi-hero-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.pmi-form-header h3 { font-weight: 800; font-size: 1.6rem; margin-bottom: 8px; }
.pmi-form-header p { color: rgba(255,255,255,0.65); margin-bottom: 30px; font-size: 0.95rem; }

.pmi-form-control {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 14px 20px;
    color: white;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.pmi-form-control::placeholder { color: rgba(255,255,255,0.4); }

.pmi-form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: #00b4a6;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 180, 166, 0.25);
}

.pmi-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00b4a6 0%, #009688 100%);
    border: none;
    padding: 16px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 180, 166, 0.3);
}

.pmi-btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 180, 166, 0.5);
    filter: brightness(1.1);
}

/* Alert State */
.pmi-alert {
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    border: 1px solid;
}
.pmi-alert-success { background: rgba(0, 180, 166, 0.15); color: #00b4a6; border-color: #00b4a6; }

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .pmi-organ-container { width: 220px; top: 10%; }
}

@media (max-width: 991px) {
    .pmi-hero-title { font-size: 2.8rem; }
    .pmi-hero-form-card { margin-top: 60px; padding: 35px; }
}

@media (max-width: 767px) {
    .pmi-hero-title { font-size: 2.2rem; }
    .pmi-hero-stats-row { gap: 30px; }
    .pmi-stat-box h3 { font-size: 2rem; }
}
    .pmi-btn-submit {
        transition: all 0.3s ease;
    }
    /* Button Loader */
    .btn-loader {
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255,255,255,0.3);
        border-top: 3px solid #fff;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        display: inline-block;
    }

    @keyframes spin {
        100% { transform: rotate(360deg); }
    }

    /* Success state */
    .pmi-btn-submit.success {
        background: linear-gradient(135deg, #00c896 0%, #00b4a6 100%);
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 180, 166, 0.5);
    }

/* ==============================
     MOBILE HEADER FIX – FINAL
     ============================== */

  html, body {
      overflow-x: hidden !important;
  }

  /* Fix glass header width */
  .glass-header {
      width: 100%;
  }

  /* Remove any negative margins causing overflow */
  @media (max-width: 991px) {

      .navbar {
          padding: 10px 0;
      }

      .navbar-collapse {
          background: #ffffff;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          padding: 20px;
          margin: 0 !important;
          border-radius: 0 0 20px 20px;
          box-shadow: 0 20px 40px rgba(0,0,0,0.1);
          max-height: 85vh;
          overflow-y: auto;
      }

      .navbar-nav {
          width: 100%;
          align-items: flex-start !important;
      }

      .nav-item {
          width: 100%;
      }

      .nav-link {
          width: 100%;
          padding: 12px 0 !important;
          border-bottom: 1px solid rgba(0,0,0,0.05);
      }

      /* IMPORTANT: Dropdown Fix */
      .dropdown-menu {
          position: relative !important;
          transform: none !important;
          box-shadow: none;
          border-left: 3px solid var(--accent-teal);
          border-radius: 0;
          margin-top: 10px;
      }

      .dropdown-item {
          padding-left: 15px;
      }

      .btn-appointment {
          width: 100%;
          margin-top: 15px;
          text-align: center;
      }

      /* Toggler icon visible */
      .navbar-toggler {
          border: none;
      }

      .navbar-toggler:focus {
          box-shadow: none;
      }

      .navbar-toggler-icon {
          background-image: none;
      }

      .navbar-toggler::before {
          content: "\f0c9";
          font-family: "Font Awesome 6 Free";
          font-weight: 900;
          font-size: 22px;
          color: var(--primary-navy);
      }

  }


@media (max-width: 991px) {
    .pmi-hero-video {
        display: none;
    }
}
