:root {
    --primary: #000000;
    --primary-light: #2c2c2c;
    --primary-dark: #000000;
    --accent: #D4AF37;
    --accent-dark: #b89620;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --text-main: #2c3e50;
    --text-secondary: #546e7a;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-heavy: 0 20px 50px rgba(0,0,0,0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Global Header Sticky & Blur */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#main-nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: var(--transition-smooth);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px; /* Offset for Fixed Header */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Slightly darker for better text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--accent);
    display: block; /* Subtitle on new line */
    font-size: 3rem;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* ... rest of the buttons ... */

.btn {
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}
/* ... */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block; /* Show menu for mobile */
        color: var(--primary);
    }
    .nav-links {
        display: none;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .nav-logo {
        height: 45px;
    }
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Stats Section */
.stats {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0;
    margin-top: -50px;
    z-index: 2;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h2, .stat-item .highlight {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.section-tag {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about h2 span {
    color: var(--accent-dark);
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.image-stack {
    position: relative;
}

.stack-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card i {
    color: var(--accent-dark);
    font-size: 2rem;
}

/* Wings Section */
.wings {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

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

.wing-card.highlight {
    background: var(--primary);
    color: var(--white);
}

.wing-card.highlight .wing-icon i {
    color: var(--accent);
}

.wing-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    padding: 8rem 0;
}

.grid-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.feat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.feat-card.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(212, 175, 55, 0.3)), url('hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feat-card.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.card-thumb {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.feat-card:hover .card-thumb {
    transform: scale(1.05);
}

/* Gallery Hover */
.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: 'View Details';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.feat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Gallery */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

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

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

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--bg-light);
}

.contact-details {
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Notice Board */
.notices-section {
    padding: 2rem 0;
    background: var(--white);
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.notice-board {
    background: var(--bg-light);
    border-left: 5px solid var(--accent);
    padding: 1.5rem 2rem;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    min-width: 150px;
}

.notice-slider {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.notice-item {
    display: inline-block;
    padding-right: 50px;
    animation: slide-notice 20s linear infinite;
}

@keyframes slide-notice {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Sub Pages */
.sub-page {
    padding: 10rem 0 6rem;
    background: var(--bg-light);
}

.sub-page .section-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 5rem;
}

.sub-page h1 {
    font-size: 3.5rem;
    margin-top: 1rem;
    line-height: 1.2;
}

/* About Page */
.about-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
}

.principal-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.vm-icon { font-size: 3rem; color: var(--primary); margin-bottom: 1.5rem; }

/* Wings Page */
.wing-detail-grid { display: flex; flex-direction: column; gap: 4rem; }

.wing-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.wing-detail-card.reverse { direction: rtl; }
.wing-detail-card.reverse .wing-content { direction: ltr; }

.wing-features { list-style: none; margin-top: 1.5rem; }
.wing-features li { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.wing-features i { color: var(--accent-dark); font-size: 0.9rem; }

/* Admin Dashboard */
.admin-data-section { display: flex; flex-direction: column; gap: 4rem; }

.admin-table-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.admin-table-container h2 { margin-bottom: 2rem; font-size: 1.8rem; color: var(--primary); }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admin-table th, .admin-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.admin-table th { background: var(--bg-light); font-weight: 700; color: var(--primary); }

.admin-table tr:hover { background: #fcfcfc; }

.no-data { text-align: center; padding: 3rem; color: var(--text-secondary); font-style: italic; }

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }

/* Mobile Menu Fix */
.btn-admin {
    padding: 0.5rem 1rem;
    background: var(--primary-dark);
    color: var(--white) !important;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    background: #0d1117;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    color: var(--white);
}

.footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .grid-2, .vision-mission-grid, .wing-detail-card {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        display: none;
    }

    .wing-detail-card.reverse {
        direction: ltr;
    }
}
/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Modern UI Components --- */
.admin-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.admin-card-glass:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.btn-premium {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}
.btn-premium.primary {
    background: var(--primary);
    color: var(--white);
}
.btn-premium.primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.status-badge.pending { background: #fff3e0; color: #ef6c00; }
.status-badge.completed { background: #e8f5e9; color: #2e7d32; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.fade-up, .fade-in, .slide-in { opacity: 0; transition: opacity 0.3s; }
.fade-up.animate-active { animation: fadeInUp 0.8s ease forwards; opacity: 1; }
.fade-in.animate-active { animation: scaleIn 0.8s ease forwards; opacity: 1; }
.slide-in.animate-active { animation: fadeInRight 0.8s ease forwards; opacity: 1; }
.float { animation: float 3s ease-in-out infinite; }

/* --- Premium Form Layouts --- */
.premium-form-container {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}
.form-field { margin-bottom: 2rem; position: relative; }
.form-field label { display: block; margin-bottom: 0.8rem; font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 1.2rem; border-radius: 16px; border: 2px solid #f0f0f0; background: #fafafa; transition: var(--transition-smooth);
}
.form-field input:focus { border-color: var(--accent); background: var(--white); outline: none; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1); }
