/* ===== COMPLETE style.css for St. Crispin Hospital ===== */
/* All styles for homepage, about page, and future pages */

/* ============================================
   1. BASE STYLES & VARIABLES
   ============================================ */
:root {
    --primary-dark: #0d2b4f;
    --primary-accent: #28a5d8;
    --primary-light: #e8f4fc;
    --neutral-light: #f8f9fa;
    --neutral-dark: #333333;
    --neutral-white: #ffffff;
    --footer-dark: #091c33;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--neutral-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    flex: 1;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */
.site-header {
    background-color: var(--primary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: var(--neutral-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.3rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-list a {
    color: var(--neutral-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.nav-list a:hover {
    color: var(--primary-accent);
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--neutral-white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1001;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--neutral-dark);
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid var(--neutral-light);
    font-size: 0.8rem;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--neutral-light);
    color: var(--primary-dark);
}

.appointment-btn {
    background-color: var(--primary-accent);
    color: var(--neutral-white);
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.appointment-btn:hover {
    background-color: #1e8cb7;
}

.staff-portal a {
    color: #ffcc00 !important;
}

.staff-portal .dropdown-content {
    min-width: 180px;
}

.staff-portal .fa-lock {
    font-size: 0.7rem;
    margin-left: 3px;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero-section,
.page-hero {
    background: linear-gradient(rgba(13, 43, 79, 0.8), rgba(13, 43, 79, 0.9));
    color: var(--neutral-white);
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-section {
    padding: 50px 0;
    min-height: 50vh;
    background: linear-gradient(rgba(13, 43, 79, 0.8), rgba(13, 43, 79, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
}

.page-hero {
    position: relative;
    padding: 4rem 0 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(13, 43, 79, 0.85), rgba(13, 43, 79, 0.9)), 
                url('../images/about-banner.jpg') center/cover;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 43, 79, 0.9) 0%, rgba(40, 165, 216, 0.7) 100%);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--neutral-white));
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

.page-hero h1,
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    background: linear-gradient(45deg, #fff, #e8f4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-hero p,
.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons,
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--neutral-white);
    border: 2px solid var(--primary-accent);
}

.btn-primary:hover {
    background-color: #1e8cb7;
    border-color: #1e8cb7;
}

.btn-secondary {
    background-color: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn-secondary:hover {
    background-color: var(--neutral-white);
    color: var(--primary-dark);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #28a5d8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   5. SECTION STYLES
   ============================================ */
.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--primary-dark));
    border-radius: 2px;
}

.section-title::before {
    content: '✚';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-accent);
    font-size: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--neutral-dark);
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   6. CONTENT SECTIONS
   ============================================ */

/* Quick Info */
.quick-info {
    background-color: var(--neutral-light);
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--neutral-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.info-card p {
    margin-bottom: 15px;
    color: var(--neutral-dark);
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-card a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 10px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.welcome-content p {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* ============================================
   UPDATED STORY SECTION WITH FIXES
   ============================================ */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--neutral-white) 0%, #f5f9ff 100%);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    min-height: 500px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.story-text p::before {
    content: '❝';
    position: absolute;
    left: 0;
    top: -10px;
    color: var(--primary-accent);
    font-size: 2rem;
    opacity: 0.5;
}

.story-image {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 8px solid var(--neutral-white);
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Stats moved below story section */
.stats-container {
    width: 100%;
    margin: 4rem auto 0;
    text-align: center;
}

.stats-container .achievement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--neutral-white) 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-accent);
    box-shadow: 0 10px 30px rgba(13, 43, 79, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(13, 43, 79, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #e8f4fc 100%);
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card, .vision-card, .values-preview {
    position: relative;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    overflow: hidden;
}

.mission-card::before, .vision-card::before, .values-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mission-card:hover::before, .vision-card:hover::before, .values-preview:hover::before {
    transform: translateX(100%);
}

.mission-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(232, 244, 252, 0.95) 100%);
    border-left: 8px solid var(--primary-accent);
}

.vision-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(232, 252, 248, 0.95) 100%);
    border-left: 8px solid #2ecc71;
}

.values-preview {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(252, 248, 255, 0.95) 100%);
    border-left: 8px solid #9b59b6;
}

.mv-icon {
    font-size: 3.5rem;
    color: var(--primary-accent);
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(13, 43, 79, 0.1);
}

.vision-card .mv-icon {
    color: #2ecc71;
}

.values-preview .mv-icon {
    color: #9b59b6;
}

.mission-card h3, .vision-card h3, .values-preview h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-card h3::after, .vision-card h3::after, .values-preview h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
}

.vision-card h3::after {
    background: #2ecc71;
}

.values-preview h3::after {
    background: #9b59b6;
}

.mission-card p, .vision-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.mission-highlight, .vision-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-accent);
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(40, 165, 216, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-accent);
}

.vision-highlight {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    border-left-color: #2ecc71;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.value-tag {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(13, 43, 79, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-tag:hover {
    transform: translateY(-3px);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 20px rgba(13, 43, 79, 0.15);
}

.view-values-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #9b59b6;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(155, 89, 182, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.view-values-btn:hover {
    background: rgba(155, 89, 182, 0.2);
    transform: translateX(10px);
}

/* ============================================
   UPDATED DIRECTORS SECTION (MATCHES HMT)
   ============================================ */
.directors-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #e8f4fc 0%, var(--neutral-white) 100%);
    position: relative;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.director-card {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 43, 79, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(13, 43, 79, 0.2);
    border-color: var(--primary-accent);
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.director-card:hover::before {
    opacity: 0.05;
}

/* Director image matches HMT style */
.director-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-light);
}

.director-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    z-index: 1;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.director-card:hover .director-image img {
    transform: scale(1.1);
}

.director-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.director-card:hover .director-overlay {
    opacity: 1;
    transform: translateY(0);
}

.director-overlay a {
    color: white;
    background: rgba(40, 165, 216, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.director-overlay a:hover {
    background: var(--primary-accent);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 165, 216, 0.4);
}

.director-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.director-info h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.director-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
}

.director-title {
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 165, 216, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.director-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.director-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.director-expertise span {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary-light);
    transition: all 0.3s ease;
}

.director-expertise span:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 165, 216, 0.3);
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.core-values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--neutral-white) 0%, #f5f9ff 100%);
    position: relative;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(13, 43, 79, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-accent), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(13, 43, 79, 0.2);
    border-color: var(--primary-accent);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-accent);
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(13, 43, 79, 0.1);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-accent);
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.value-quote {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(40, 165, 216, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-accent);
}

.value-quote i {
    color: var(--primary-accent);
}

/* ============================================
   HOSPITAL MANAGEMENT TEAM (HMT)
   ============================================ */
.management-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #e8f4fc 100%);
    position: relative;
}

.management-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.management-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(13, 43, 79, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.management-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(13, 43, 79, 0.2);
    border-color: var(--primary-accent);
}

.mgmt-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.mgmt-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    z-index: 1;
}

.mgmt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.management-card:hover .mgmt-image img {
    transform: scale(1.1);
}

.mgmt-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.mgmt-info h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.mgmt-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
}

.mgmt-title {
    color: var(--primary-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 165, 216, 0.1);
    border-radius: 20px;
    display: inline-block;
    font-size: 1.1rem;
}

.mgmt-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.mgmt-contact {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(40, 165, 216, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-accent);
}

.mgmt-contact i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

/* ============================================
   ACCREDITATION SECTION
   ============================================ */
.accreditation-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #e8f4fc 0%, var(--neutral-white) 100%);
    position: relative;
}

.accreditation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.accreditation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.accreditation-cards {
    display: grid;
    gap: 2rem;
}

.accreditation-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-left: 6px solid var(--primary-accent);
    padding: 2.5rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(13, 43, 79, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.accreditation-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(13, 43, 79, 0.15);
}

.accreditation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.accreditation-card:hover::before {
    transform: translateX(100%);
}

.accred-icon {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(13, 43, 79, 0.1);
}

.accreditation-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 1rem;
}

.accreditation-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-accent);
}

.accreditation-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.compliance-info h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.compliance-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
}

.compliance-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.compliance-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 12px;
    border-left: 4px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(13, 43, 79, 0.05);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(13, 43, 79, 0.1);
}

.compliance-item i {
    color: #2ecc71;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-item span {
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d2b4f 0%, #1a4a7a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.community-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #e8f4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.community-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.community-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.community-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.community-stat .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.community-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.community-text .btn-primary {
    background: linear-gradient(45deg, var(--primary-accent), #1e8cb7);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(40, 165, 216, 0.3);
    border: 2px solid transparent;
}

.community-text .btn-primary:hover {
    background: linear-gradient(45deg, #1e8cb7, var(--primary-accent));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 165, 216, 0.4);
    border-color: white;
}

.community-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.community-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.community-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ============================================
   SERVICES & OTHER SECTIONS (Existing)
   ============================================ */
.services-preview {
    padding: 60px 0;
    background-color: var(--neutral-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--neutral-white);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--neutral-dark);
    line-height: 1.6;
    font-size: 0.85rem;
}

.service-card a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card a:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-accent);
    color: var(--neutral-white);
    padding: 80px 0;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.values-section {
    background-color: var(--neutral-light);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--neutral-white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.team-card {
    background-color: var(--neutral-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1rem;
}

.specialization {
    color: var(--primary-accent);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.content-section {
    padding: 80px 0;
}

.content-two-column {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
}

.left-column h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.left-column p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-box {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.mission-box h3 {
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box h3:first-child {
    margin-top: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--neutral-white);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-accent);
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--neutral-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-accent);
    transform: translateY(-3px);
}

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

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

.footer-links a, .footer-links li {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}

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

.footer-bottom {
    background-color: var(--footer-dark);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.7rem;
}

.footer-bottom a {
    color: var(--primary-accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .story-content,
    .community-content,
    .accreditation-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-list {
        gap: 12px;
    }
    
    .nav-list a {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .info-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-facts {
        position: static;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-container .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        min-height: 300px;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .stat-item::after {
        display: none;
    }
    
    .directors-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list {
        order: 1;
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }
    
    .appointment-btn {
        order: 2;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .appointment-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .car-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-mission-section {
        padding: 60px 0;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-content {
        padding-left: 0;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto 15px;
    }
    
    .mission-card::after,
    .vision-card::after {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    body {
        font-size: 0.7rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero-content h1,
    .page-banner h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: 1px solid var(--neutral-light);
        margin-top: 5px;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .staff-portal {
        grid-column: span 3;
        text-align: center;
    }
    
    .achievement-stats,
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .directors-grid,
    .management-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .director-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .info-grid,
    .team-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section,
    .page-banner {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .hero-content h1,
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .info-card {
        padding: 30px 20px;
    }
    
    .story-card,
    .mission-card,
    .vision-card {
        padding: 25px 20px;
    }
    
    .story-card h2 {
        font-size: 1.6rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .stats-container .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .achievement-stats,
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card,
    .values-preview,
    .director-card,
    .management-card,
    .accreditation-card {
        padding: 1.5rem;
    }
}

/* Under development styles - Remove once ready */
/* ============================================
   DEVELOPMENT BANNER
   ============================================ */

/* Development Banner */
.dev-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #e74c3c 0%, #2ecc71 100%);
    background-size: 200% 100%;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    z-index: 9999;
    animation: banner-pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dev-banner::before {
    content: '🚧';
    font-size: 14px;
    animation: construction-spin 3s infinite linear;
}

.dev-banner::after {
    content: '🚧';
    font-size: 14px;
    animation: construction-spin 3s infinite linear reverse;
}

@keyframes banner-pulse {
    0% {
        background-position: 0% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.9;
    }
    100% {
        background-position: 0% 50%;
        opacity: 1;
    }
}

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

/* Blinking text effect */
.blinking-text {
    animation: blink 1.5s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 49% {
        color: #ffeb3b;
        text-shadow: 0 0 5px #ffeb3b;
    }
    50%, 100% {
        color: white;
        text-shadow: 0 0 10px white;
    }
}

/* For mobile - make banner smaller */
@media (max-width: 768px) {
    .dev-banner {
        font-size: 10px;
        padding: 6px 0;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .dev-banner::before,
    .dev-banner::after {
        font-size: 12px;
    }
}

/* Adjust body padding so content doesn't hide under banner */
body {
    padding-top: 35px;
}

@media (max-width: 768px) {
    body {
        padding-top: 30px;
    }
}

/* End of development banner styles */
