/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1e3a5f;
    --accent-color: #d4af37;
    --text-color: #2c3e50;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --alt-bg: #f5f7fa;
    --border-color: #e1e8ed;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(196, 30, 58, 0.2);
    --shadow-strong: 0 12px 40px rgba(196, 30, 58, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f5f7fa 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Navigation - Premium Design */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: var(--text-color);
    padding: 1.3rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand h1 {
    font-size: 1.9rem;
    margin-bottom: 0.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.nav-brand .subtitle {
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--light-bg);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.1);
    font-weight: 700;
}

/* Hero Section - Premium & Impressive */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(255, 255, 255, 0.98) 30%, rgba(248, 249, 250, 1) 70%, rgba(30, 58, 95, 0.1) 100%),
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.08) 0%, transparent 50%);
    color: var(--text-color);
    padding: 10rem 2rem 8rem;
    text-align: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero-section .hero-bg-circle {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #a01a2e);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both, shimmer 3s linear infinite;
    text-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
}

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

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(196, 30, 58, 0.1);
    transition: var(--transition);
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), #a01a2e);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
    transition: var(--transition);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
    background: linear-gradient(135deg, #a01a2e, var(--primary-color));
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 249, 250, 0.9) 100%);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.content-section > .container {
    position: relative;
    z-index: 1;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.9) 0%, rgba(233, 236, 239, 0.95) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Content Cards - Premium Design */
.content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(196, 30, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

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

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(196, 30, 58, 0.25);
    border-color: var(--accent-color);
}

.content-card h2,
.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-left: 1.2rem;
    border-left: 5px solid var(--accent-color);
}

.content-card h3 {
    font-size: 1.7rem;
    margin-top: 0;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.3rem;
}

.content-card ol,
.content-card ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.content-card li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
}

/* Fact Box - Premium Design */
.fact-box {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 50%,
        rgba(240, 244, 248, 0.95) 100%);
    border-left: 6px solid var(--accent-color);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.15);
    position: relative;
    overflow: hidden;
}

.fact-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.fact-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.fact-box ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.fact-box li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.fact-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Timeline - Premium Design */
.timeline {
    position: relative;
    padding: 2.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
}

.timeline-item {
    margin-bottom: 3rem;
    padding-left: 5rem;
    position: relative;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1.4rem;
    top: 0.5rem;
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    z-index: 2;
}

.timeline-year {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.timeline-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Cards Grid - Premium Design */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(196, 30, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.3);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #a01a2e 30%,
        var(--secondary-color) 70%,
        var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientMove 6s ease infinite;
    color: white;
    padding: 6rem 2rem 5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-color);
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.6);
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
    z-index: 10;
}

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

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

.gallery-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 16px;
    border: 3px dashed var(--border-color);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
}

/* Gallery Image Styles */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Content Image Styles */
.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Container */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-item {
    position: relative;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: center;
    font-style: italic;
}

.image-caption strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(196, 30, 58, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(30, 58, 95, 0.08) 100%);
    margin: 4rem 0;
    position: relative;
    border-radius: 30px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 30px 30px 0 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 50px rgba(196, 30, 58, 0.25);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-card:nth-child(2) .stat-value,
.stat-card:nth-child(3) .stat-value,
.stat-card:nth-child(4) .stat-value {
    color: var(--secondary-color);
}

.stat-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Featured Card */
.featured-card {
    text-align: center;
    position: relative;
    padding-top: 4rem;
}

.featured-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2));
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.featured-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(30, 58, 95, 0.1));
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(196, 30, 58, 0.2);
    transition: var(--transition);
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    border-color: transparent;
}

/* Intro and About Sections */
.intro-section,
.about-section {
    margin: 5rem 0;
}

.intro-section .content-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 249, 250, 0.98) 100%);
    border: 2px solid rgba(196, 30, 58, 0.15);
    position: relative;
}

.intro-section .content-card::after {
    content: '📖';
    position: absolute;
    top: -25px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.08;
    z-index: 0;
}

.quick-links {
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    border-radius: 30px;
    position: relative;
}

.quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #152a4a 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-top: 6rem;
    border-top: 4px solid var(--accent-color);
    position: relative;
}

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

.footer-contact {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        padding: 7rem 1.5rem 5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header {
        padding: 4rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline-item {
        padding-left: 3.5rem;
    }

    .timeline-item::before {
        left: 0.5rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }

    .stat-item {
        min-width: 100%;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll offset for fixed navbar */
.content-section {
    scroll-margin-top: 80px;
}
