/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --primary-dark: #1d1f2b;
    --primary-light: #2d2f3d;
    --secondary-color: #ffab17;
    --accent-gold: #ffab17;
    --accent-gold-dark: #e09810;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: #1d1f2b;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.4rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand img {
    height: 36px;
    width: auto;
}

.nav-brand h1 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--accent-gold);
    padding-left: 1.75rem;
}

.admin-link {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid var(--accent-gold);
}

.admin-link:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section - Banner */
.hero {
    background: #1d1f2b;
    color: white;
    padding: 3rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #ffab17;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffab17;
    opacity: 0.7;
    z-index: 2;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1d1f2b;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, filter 0.5s ease-in-out;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    filter: blur(5px);
    z-index: 1;
}

.hero-slide-fallback {
    background: #1d1f2b;
    filter: blur(5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 31, 43, 0.6);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.2;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: contentFadeIn 1.5s ease-out;
    width: 100%;
}

.hero-content::before,
.hero-content::after {
    display: none;
}

.hero-content::before {
    top: -50px;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-content::after {
    bottom: -50px;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 171, 23, 0.3);
    letter-spacing: -0.02em;
    color: #ffab17;
    animation: fadeInDown 1s ease-out;
    position: relative;
    padding-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 30px rgba(255, 171, 23, 0.4));
}

.hero-title::before {
    display: none;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: #ffab17;
    border-radius: 2px;
    animation: expandLine 1.2s ease-out 0.5s both;
    box-shadow: 0 0 12px rgba(255, 171, 23, 0.5);
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes glowLine {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 171, 23, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 171, 23, 0.9);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 1;
    }
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    position: relative;
    z-index: 1;
}

.hero-cta-buttons::before {
    display: none;
}

@keyframes buttonGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffab17;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    display: block;
    text-align: center;
    padding: 0.75rem 0 0.6rem;
    border-bottom: 2px solid rgba(255, 171, 23, 0.5);
    border-top: 1px solid rgba(255, 171, 23, 0.2);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle br {
    display: block;
    margin-top: 0.35rem;
}

.hero-subtitle:hover {
    color: #ffc040;
    border-bottom-color: rgba(255, 171, 23, 0.8);
    text-shadow: 0 0 24px rgba(255, 171, 23, 0.25);
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    50% {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 171, 23, 0.2);
    }
}

@keyframes bulletPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
    padding: 1.2rem 1.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 171, 23, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 40px rgba(255, 171, 23, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-description:hover {
    transform: translateY(-3px);
}

.hero-description::before {
    display: none;
}

.hero-description::after {
    display: none;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hero-intro {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
    position: relative;
    font-style: italic;
}

.hero-intro:hover {
    transform: translateY(-2px);
}

.hero-intro::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1rem;
    font-size: 4rem;
    color: rgba(255, 171, 23, 0.4);
    font-family: Georgia, serif;
    line-height: 1;
}

.hero-intro::after {
    display: none;
}

@keyframes pulseLine {

    0%,
    100% {
        opacity: 0.6;
        width: 60px;
    }

    50% {
        opacity: 1;
        width: 80px;
    }
}

/* Additional hero section enhancements */
.hero-content>* {
    will-change: transform, opacity;
}

/* Enhanced text animations with stagger */
.hero-title {
    animation-delay: 0s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-intro {
    animation-delay: 0.9s;
}

.hero-cta-buttons {
    animation-delay: 1.2s;
}

/* Particle effect background */
.hero::before {
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    background-position: 0 0;
}

/* Enhanced glow effects */
.hero-title::before {
    animation: pulseGlow 3s ease-in-out infinite, fadeInDown 1s ease-out 0.2s both;
}


/* Enhanced intro text styling */
.hero-intro {
    position: relative;
    z-index: 1;
}

.hero-intro::before {
    animation: quoteFadeIn 1s ease-out 1s both;
}

@keyframes quoteFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 0.3;
        transform: translateY(0);
    }
}

@keyframes quotePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Enhanced button container effects */
.hero-cta-buttons {
    position: relative;
    z-index: 2;
}

/* Additional depth with layered shadows */
.hero-content {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {

    .hero-content::before,
    .hero-content::after {
        display: none;
    }

    .hero-cta-buttons::after {
        display: none;
    }

    .hero-intro {
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }

    .hero-intro::before {
        font-size: 3rem;
        top: -8px;
    }
}

/* Print styles */
@media print {

    .hero::before,
    .hero::after,
    .hero-content::before,
    .hero-content::after,
    .hero-title::before,
    .hero-title::after,
    .hero-subtitle::before,
    .hero-subtitle::after,
    .hero-description::before,
    .hero-description::after,
    .hero-intro::before,
    .hero-intro::after,
    .hero-cta-buttons::before,
    .hero-cta-buttons::after {
        display: none;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-intro {
        animation: none;
        filter: none;
    }
}

.hero-title {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-intro {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* Enhanced gradient backgrounds for hero elements */
.hero-title {
    animation: fadeInDown 1s ease-out;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Additional decorative elements */
.hero-content::before {
    display: none;
}

.hero-content::after {
    display: none;
}

/* Enhanced button container glow */
.hero-cta-buttons::after {
    display: none;
}

@keyframes rotateCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Enhanced text shadow effects */
.hero-title {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-subtitle {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Additional hover states */
.hero-content:hover .hero-title {
    transform: scale(1.01);
}

.hero-content:hover .hero-subtitle {
    transform: translateY(-1px);
}

/* Enhanced responsive animations */
@media (prefers-reduced-motion: reduce) {

    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-intro,
    .hero-cta-buttons {
        animation: none;
    }

    .hero-title::before,
    .hero-title::after,
    .hero-subtitle::before,
    .hero-subtitle::after,
    .hero-description::before,
    .hero-description::after,
    .hero-intro::before,
    .hero-intro::after {
        animation: none;
    }
}

/* Performance optimizations */
.hero {
    contain: layout style paint;
}

.hero-content {
    contain: layout style;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 171, 23, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 171, 23, 0.5);
    background: var(--accent-gold-dark);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    border-color: var(--accent-gold);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* About Section */
.about-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.about-text {
    line-height: 1.8;
}

.about-section-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    width: 100%;
    scroll-margin-top: 100px;
}

.about-section-card.highlighted {
    background: rgba(255, 171, 23, 0.12);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 45px rgba(255, 171, 23, 0.3);
    transform: translateY(-5px) scale(1.01);
    animation: highlightPulse 2.5s ease-in-out;
}
}

.about-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.about-section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.section-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(255, 171, 23, 0.3);
}

.section-icon-wrapper i {
    font-size: 2.5rem;
    color: #ffab17;
}

.about-section-card h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.about-section-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.about-section-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-dark);
}

/* TEACH Acronym Styling */
.teach-acronym {
    background: white;
}

.acronym-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem !important;
    color: var(--text-dark);
}

.acronym-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.acronym-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.acronym-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.acronym-letter {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 171, 23, 0.3);
}

.acronym-word {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Horizontal TEACH Acronym */
.acronym-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.acronym-item-horizontal {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    min-width: 120px;
    flex: 1;
    max-width: 200px;
}

.acronym-item-horizontal:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
    background: white;
}

.acronym-letter-horizontal {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    text-shadow: 3px 3px 6px rgba(255, 171, 23, 0.4);
    line-height: 1;
}

.acronym-word-horizontal {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

/* Vision Card Styling */
.vision-card {
    background: var(--primary-color);
    color: white;
}

.vision-card .section-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.vision-card h3,
.vision-card .vision-text {
    color: white;
}

/* Vision & Mission split layout */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.vision-box,
.mission-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.vision-box::before,
.mission-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 171, 23, 0.15);
    opacity: 0.9;
    pointer-events: none;
}

.vision-box h4,
.mission-box h4 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vision-box h4::after,
.mission-box h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 0.5rem;
    background: var(--accent-gold);
    border-radius: 999px;
}

.vision-box p,
.mission-box p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    margin: 0;
}

/* Values Card Styling */
.values-card {
    background: white;
}

.value-tag i {
    margin-right: 0.5rem;
    color: #ffab17;
}

/* Team Card Styling */
.team-card {
    background: white;
    border: 2px solid var(--accent-gold);
}

.team-card p {
    font-size: 1.15rem;
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.about-text ul {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin: 1rem 0;
}

.about-text li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.vision-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-left: 5px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
}

.purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 3px solid rgba(255, 171, 23, 0.4);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 171, 23, 0.5);
}

.purpose-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #ffab17;
    filter: drop-shadow(2px 2px 4px rgba(255, 171, 23, 0.3));
    transition: transform 0.3s;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1) rotate(5deg);
}

.purpose-icon i {
    font-size: 3.5rem;
}

.purpose-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.value-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-gold);
}

.legal-info {
    display: none;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.service-card.highlighted {
    background: rgba(255, 171, 23, 0.06);
    border: 2px solid rgba(255, 171, 23, 0.4);
    box-shadow: 0 15px 35px rgba(255, 171, 23, 0.15);
    transform: scale(1.03);
    animation: highlightPulse 2.5s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 15px 35px rgba(255, 171, 23, 0.15);
        border-color: rgba(255, 171, 23, 0.4);
    }

    50% {
        box-shadow: 0 20px 45px rgba(255, 171, 23, 0.12);
        border-color: rgba(255, 171, 23, 0.5);
    }

    100% {
        box-shadow: 0 15px 35px rgba(255, 171, 23, 0.1);
        border-color: rgba(255, 171, 23, 0.4);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffab17;
    filter: drop-shadow(2px 2px 4px rgba(255, 171, 23, 0.15));
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-icon i {
    font-size: 3.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card,
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
}

.project-card::after,
.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.project-card:hover::after,
.event-card:hover::after {
    transform: scaleY(1);
}

.project-card:hover,
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-card img,
.event-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.placeholder-image i {
    opacity: 0.3;
}

.project-content,
.event-content {
    padding: 1.5rem;
}

.project-content h3,
.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.event-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.core-projects {
    margin-top: 3rem;
}

.core-projects h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.core-project-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-margin-top: 100px;
    /* Space for fixed navbar */
}

.core-project-item.highlighted {
    background: rgba(255, 171, 23, 0.12);
    border-left: 6px solid var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(255, 171, 23, 0.3);
    transform: translateX(5px) scale(1.01);
    animation: highlightPulse 2.5s ease-in-out;
}

.core-project-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-gold-dark);
}

.core-project-item:target {
    animation: highlightSection 1s ease-in-out;
    border-left-width: 6px;
}

@keyframes highlightSection {
    0% {
        background: white;
    }

    50% {
        background: rgba(255, 171, 23, 0.1);
    }

    100% {
        background: white;
    }
}

.core-project-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.core-project-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.core-project-item li {
    margin-bottom: 0.5rem;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Event image slider / carousel */
.event-image-slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

.event-slider-track {
    position: relative;
    width: 100%;
    height: 230px;
}

.event-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-slide.active {
    opacity: 1;
    position: relative;
}

.event-card:hover .event-slide img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.event-date-badge-main {
    font-weight: 700;
}

.event-date-badge-year {
    opacity: 0.9;
}

.event-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.event-slider-nav.prev {
    left: 0.75rem;
}

.event-slider-nav.next {
    right: 0.75rem;
}

.event-image-slider:hover .event-slider-nav {
    opacity: 1;
}

.event-slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.event-slider-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
}

.event-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.event-slider-dot.active {
    width: 16px;
    background: var(--accent-gold);
}

/* Events list layout for events page */
.events-list .event-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.events-list .event-card img,
.events-list .placeholder-image {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    height: 180px;
}

.events-list .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.events-list .event-content p {
    margin-top: 0.5rem;
}

.events-list .read-more-btn {
    align-self: flex-start;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* Footer */
/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: #ffab17;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffab17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffab17;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 171, 23, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Admin Styles */
.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.image-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.image-preview-item {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.admin-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.admin-table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.login-container {
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 52px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 2.5rem 0 3.5rem;
        min-height: 400px;
    }

    .hero-slide {
        filter: blur(3px);
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding-bottom: 0.7rem;
    }

    .hero-title::after {
        width: 80px;
        height: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.06em;
        padding: 0.5rem 0 0.4rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 1rem 1.3rem;
        margin-bottom: 1.8rem;
    }

    .hero-cta-buttons {
        gap: 0.75rem;
    }

    .hero-cta-buttons .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .purposes {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .about-section-card {
        padding: 2rem 1.5rem;
    }

    .about-section-card h2 {
        font-size: 2rem;
    }

    .about-section-card h3 {
        font-size: 1.5rem;
    }

    .acronym-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .acronym-letter {
        font-size: 3rem;
    }

    .acronym-horizontal {
        flex-direction: column;
        gap: 1rem;
    }

    .acronym-item-horizontal {
        max-width: 100%;
        width: 100%;
    }

    .acronym-letter-horizontal {
        font-size: 4rem;
    }

    .section-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .section-icon-wrapper i {
        font-size: 2rem;
    }
}

/* Clickable Cards */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: var(--shadow-xl);
}

/* Make the event modal full screen */
#eventModal .modal-content {
    width: 90vw;
    max-width: 1100px;
    height: 90vh;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    padding: 2rem;
    box-sizing: border-box;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
}

.modal-event-header,
.modal-project-header {
    margin-bottom: 2rem;
}

.modal-event-body,
.modal-project-body {
    line-height: 1.8;
}

.event-date i,
.read-more-btn {
    margin-right: 0.5rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    z-index: 1;
}

.featured-card:hover::before {
    transform: scaleX(1);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card-content {
    padding: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-grid .form-group:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header {
    background: #1d1f2b;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
    /* Space for fixed navbar when scrolling to sections */
}

.content-section-alt {
    background: var(--bg-light);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffab17;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #ffab17;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--accent-gold-dark);
    box-shadow: 0 4px 8px rgba(255, 171, 23, 0.4);
}

/* Admin Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}