:root {
    --primary: #005A9C;
    --secondary: #003366;
    --accent: #FF9900;
    --dark-blue: #001A33;
    --black-2: #0B0F19;
    --light-gray: #F3F4F6;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-primary: rgba(0, 90, 156, 0.4);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafbfc;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

/* Utilities */
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.pb-50 { padding-bottom: 50px; }
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-black-2 { background-color: var(--black-2); }
.bg-soft-blue { background-color: #f0f7ff; }
.fw-600 { font-weight: 600; }
.mt-minus-50 { margin-top: -50px; }
.z-index-10 { z-index: 10; }
.border-top-4 { border-top: 4px solid var(--primary); }
.border-white-10 { border-color: rgba(255,255,255,0.1); }
.my-100 { margin-top: 50px; margin-bottom: 30px; }

.hover-white:hover { color: #fff !important; }

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--glow-primary);
}

.btn-outline-light {
    border-radius: 0;
    font-weight: 700;
    border-width: 2px;
}

/* Header & Nav */
.main-header {
    background: var(--white);
    position: relative;
    z-index: 1020;
}

.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.divider {
    width: 1px;
    height: 60px;
    background: #ddd;
}

.nav-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: #333 !important;
    padding: 10px 15px !important;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-item {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
}

/* Hero Slider */
.hero-slider .slide-content {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-slider .slide-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,26,51,0.8) 0%, rgba(0,90,156,0.6) 100%);
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-slider .slide-content {
    animation: slowZoom 20s infinite alternate linear;
}

.hero-slider h1 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Stats Box */
.stats-bar {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px !important;
    overflow: hidden;
    position: relative;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    opacity: 0.1;
    transform: rotate(45deg);
    pointer-events: none;
}

/* About Section */
.section-official-title {
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-official-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

/* Deadline Cards */
.official-card {
    border-radius: 0;
}

.date-badge {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;
}

/* Chair & Team Sections */
.chair-img-holder img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    border: 5px solid #fff;
}

.team-card {
    transition: var(--transition);
    border-radius: 12px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--glow-primary) !important;
    border-color: var(--accent) !important;
}

.chair-profile-card {
    transition: var(--transition);
}

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

/* Gallery */
.gallery-item {
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.hover-zoom:hover {
    transform: scale(1.08);
}

/* Footer */
.social-box {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-box:hover {
    background: var(--primary);
    color: #fff;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom p {
    letter-spacing: 0.5px;
}

/* Mission Banner */
.mission-banner {
    border-radius: 0;
    overflow: hidden;
}

.mission-inner {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 50%, #0088cc 100%);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 90, 156, 0.3);
}

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

.mission-icon {
    opacity: 0.9;
}

.mission-inner h3 {
    letter-spacing: 3px;
}

.mission-inner .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Strategic Goal Cards */
.goal-card {
    transition: var(--transition);
    border-radius: 0;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--glow-primary) !important;
    border-color: var(--accent) !important;
}

.goal-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 98, 155, 0.06);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    pointer-events: none;
}

/* Page Hero Banner */
.page-hero-inner {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 50%, #0088cc 100%);
    padding: 60px 0;
}

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

/* Chapter Cards */
.chapter-card {
    transition: var(--transition);
    border-radius: 0;
}

.chapter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--glow-primary) !important;
}

.chapter-card .chapter-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    min-width: 40px;
}

.chapter-details {
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand img { height: 35px !important; }
    .divider-vertical { height: 30px !important; margin: 0 5px !important; }
    .navbar-nav { text-align: center; padding: 20px 0; }
    .nav-item.ms-lg-2 { margin-left: 0; margin-top: 10px; display: flex; justify-content: center; }
}

@media (max-width: 768px) {
    .py-100 { padding-top: 60px; padding-bottom: 60px; }
    .hero-slider .slide-content { height: 60vh; }
    .hero-slider h1 { font-size: 2.2rem; }
    .hero-slider p { font-size: 1rem; }
    .section-official-title { font-size: 1.5rem; }
    
    .stats-bar { margin-top: 0; border-radius: 0; margin-bottom: 40px; }
    .stats-bar .border-end { border-end: none !important; border-bottom: 1px solid #eee; padding-bottom: 15px; }
    
    .chair-img-holder img { width: 100%; height: auto; max-width: 300px; }
    .team-avatar { width: 80px !important; height: 80px !important; }
    .team-avatar i { font-size: 2rem !important; }
    
    .top-meta-nav .meta-links { display: none !important; }
    .top-meta-nav .container { justify-content: center !important; }
}

@media (max-width: 576px) {
    .hero-slider h1 { font-size: 1.8rem; }
    .hero-slider .d-flex { flex-direction: column; width: 100%; }
    .hero-slider .btn { width: 100%; }
    
    .navbar-brand img { height: 28px !important; }
    .divider-vertical { display: none !important; }
    .navbar-brand { gap: 8px !important; }
}
