/* ===== Variables & Reset ===== */
:root {
    --crimson: #8B0000;
    --crimson-dark: #5c0000;
    --crimson-light: #b22222;
    --gold: #d4a843;
    --gold-light: #f0d68a;
    --orange: #e8620a;
    --bg: #fdfbf7;
    --bg-dark: #0f0505;
    --text: #1a1a2e;
    --text-light: #e8e0d8;
    --glass: rgba(255, 255, 255, 0.07);
    --shadow: 0 8px 32px rgba(139, 0, 0, 0.10);
    --radius: 16px;
    --tr: 0.35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth
}

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

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
    color: #fff;
    padding: 6px 0;
    font-size: .78rem;
    position: relative;
    z-index: 110
}

.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.top-link {
    color: rgba(255, 255, 255, .85);
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 5px
}

.top-link:hover {
    color: var(--gold-light)
}

.top-link i {
    font-size: .7rem
}

.top-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .2)
}

.marquee-wrapper {
    flex: 1;
    overflow: hidden;
    margin: 0 20px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap
}

.marquee-content span {
    color: var(--gold-light);
    font-weight: 500
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.top-bar-right span {
    opacity: .7;
    font-size: .72rem
}

.top-bar-right a {
    color: rgba(255, 255, 255, .7);
    transition: var(--tr);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .75rem
}

.top-bar-right a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .15)
}

/* ===== Header ===== */
.header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    z-index: 100
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px
}

.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 67, .25);
    transition: var(--tr)
}

.brand-logo:hover {
    transform: scale(1.05)
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #0a1a4a;
    text-transform: uppercase;
    letter-spacing: .5px
}

.brand-accreditation {
    color: var(--crimson);
    font-weight: 600;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 5px
}

.brand-accreditation i {
    color: var(--gold)
}

.brand-tagline {
    color: #666;
    font-style: italic;
    font-size: .75rem;
    letter-spacing: 1px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.quick-link {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: #fff;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 6px
}

.quick-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, .25)
}

.quick-link i {
    font-size: .65rem
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.cta-primary {
    position: relative;
    background: linear-gradient(135deg, var(--orange), var(--crimson));
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 24px rgba(232, 98, 10, .3);
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(232, 98, 10, .4)
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaPulse 2s infinite
}

@keyframes ctaPulse {
    0% {
        width: 0;
        height: 0;
        opacity: .5
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0
    }
}

.cta-secondary {
    background: linear-gradient(135deg, #f59e0b, var(--orange));
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: .85rem;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, .3)
}

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.nav-link {
    color: rgba(255, 255, 255, .85);
    padding: 16px 20px;
    font-size: .88rem;
    font-weight: 500;
    transition: var(--tr);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px
}

.nav-link i {
    font-size: .6rem;
    transition: var(--tr)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    transition: var(--tr);
    transform: translateX(-50%)
}

.nav-link:hover,
.nav-link.active {
    color: #fff
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 90%
}

.has-dropdown {
    position: relative
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--tr);
    padding: 8px 0;
    z-index: 100
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg)
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: .85rem;
    transition: var(--tr)
}

.dropdown a:hover {
    background: var(--crimson);
    color: #fff;
    padding-left: 28px
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--tr)
}

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden
}

.hero-slider {
    height: 100%;
    position: relative
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    transform: scale(1.05)
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 0, 0, .75), rgba(139, 0, 0, .5), rgba(212, 168, 67, .15))
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 24px;
    z-index: 2
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 67, .2);
    border: 1px solid rgba(212, 168, 67, .4);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: .85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px)
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px
}

.hero-title span {
    color: var(--gold-light);
    display: block
}

.hero-desc {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), #c4952e);
    color: #1a0a0a;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 168, 67, .5)
}

.hero-btn-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--tr)
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold)
}

.hero-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    background: rgba(0, 0, 0, .2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    backdrop-filter: blur(4px)
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a0a0a
}

.hero-dots {
    display: flex;
    gap: 8px
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: var(--tr);
    border: none
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3)
}

.animate-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease, transform .6s ease
}

.hero-slide.active .animate-in {
    opacity: 1;
    transform: translateY(0)
}

.hero-slide.active .animate-in:nth-child(1) {
    transition-delay: .2s
}

.hero-slide.active .animate-in:nth-child(2) {
    transition-delay: .4s
}

.hero-slide.active .animate-in:nth-child(3) {
    transition-delay: .6s
}

.hero-slide.active .animate-in:nth-child(4) {
    transition-delay: .8s
}

/* ===== Stats Bar ===== */
.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 2, 2, .7);
    backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 20px 24px;
    z-index: 5;
    border-top: 1px solid rgba(212, 168, 67, .2)
}

.stat-item {
    text-align: center;
    color: #fff
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-light);
    display: inline
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light)
}

.stat-label {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .6;
    margin-top: 2px
}

/* ===== Ticker Bar ===== */
.ticker-bar {
    display: flex;
    align-items: center;
    height: 42px;
    background: #0a1a4a;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

.ticker-label {
    background: var(--gold);
    color: #0a1a4a;
    font-weight: 800;
    font-size: .82rem;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    border-left: 20px solid var(--gold);
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    padding: 0 36px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent)
}

.ticker-scroll {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: tickerSlide 20s linear infinite
}

.ticker-scroll span {
    color: #fff;
    font-weight: 600;
    font-style: italic;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.ticker-scroll span::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem
}

@keyframes tickerSlide {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ===== Quick Links Grid ===== */
.quick-grid-section {
    padding: 36px 20px;
    background: #fff
}

.quick-grid-inner {
    max-width: 1300px;
    margin: 0 auto
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px
}

.quick-grid-mb {
    margin-bottom: 12px
}

.qlink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    background: linear-gradient(135deg, #eef3fb, #f4f7fc);
    border-radius: 12px;
    border: 1px solid #dce6f5;
    transition: var(--tr);
    text-decoration: none
}

.qlink-card:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(10, 26, 74, .12);
    border-color: transparent
}

.qlink-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    margin-bottom: 8px;
    transition: var(--tr)
}

.qlink-icon i {
    font-size: 1.1rem;
    color: #0a1a4a;
    transition: var(--tr)
}

.qlink-icon-text {
    font-size: .7rem;
    font-weight: 900;
    color: #0a1a4a;
    letter-spacing: .5px
}

.qlink-card:hover .qlink-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(10, 26, 74, .15)
}

.qlink-card:hover .qlink-icon i,
.qlink-card:hover .qlink-icon-text {
    color: var(--crimson)
}

.qlink-label {
    font-size: .62rem;
    font-weight: 700;
    color: #0a1a4a;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    letter-spacing: .3px
}

/* Quick Links Responsive */
@media(max-width:1200px) {
    .quick-grid {
        grid-template-columns: repeat(6, 1fr)
    }
}

@media(max-width:768px) {
    .quick-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:480px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }
}

/* ===== Events & Leadership ===== */
.events-leadership {
    padding: 48px 20px;
    background: var(--bg)
}

.el-inner {
    max-width: 1300px;
    margin: 0 auto
}

.el-layout {
    display: flex;
    gap: 24px;
    align-items: stretch
}

/* — Event Slider — */
.el-slider-wrap {
    flex: 3;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    min-height: 420px;
    background: #1a1a2e
}

.el-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px
}

.el-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none
}

.el-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1
}

.el-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.el-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .05) 55%);
    display: flex;
    align-items: flex-end;
    padding: 36px 32px
}

.el-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

.el-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--tr);
    backdrop-filter: blur(6px)
}

.el-arrow:hover {
    background: var(--crimson);
    box-shadow: 0 4px 18px rgba(139, 0, 0, .4)
}

.el-prev {
    left: 16px
}

.el-next {
    right: 16px
}

.el-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5
}

.el-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: var(--tr)
}

.el-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 168, 67, .5)
}

/* — Leader Cards — */
.el-leaders {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 240px
}

.leader-card {
    background: linear-gradient(135deg, #eef3fb, #f4f7fc);
    border-bottom: 4px solid var(--crimson-dark);
    padding: 24px 20px;
    text-align: center;
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    transform: scaleX(0);
    transition: var(--tr);
    transform-origin: left
}

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

.leader-card:hover {
    background: linear-gradient(135deg, #e6edfa, #edf2fc);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 26, 74, .1)
}

.leader-card-first {
    border-radius: var(--radius) var(--radius) 0 0
}

.leader-card-last {
    border-radius: 0 0 var(--radius) var(--radius)
}

.leader-img-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    transition: var(--tr)
}

.leader-card:hover .leader-img-wrap {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 168, 67, .25)
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.leader-name {
    color: #0a1a4a;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 4px;
    line-height: 1.3
}

.leader-role {
    color: #666;
    font-size: .72rem;
    line-height: 1.35;
    margin-bottom: 12px
}

.leader-link {
    display: inline-block;
    color: #0a1a4a;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid #0a1a4a;
    padding-bottom: 2px;
    transition: var(--tr)
}

.leader-link:hover {
    color: var(--orange);
    border-color: var(--orange)
}

.leader-links-row {
    display: flex;
    justify-content: center;
    gap: 16px
}

/* — Responsive Events — */
@media(max-width:1024px) {
    .el-layout {
        flex-direction: column
    }

    .el-leaders {
        flex-direction: row;
        gap: 0
    }

    .leader-card {
        flex: 1
    }

    .leader-card-first {
        border-radius: var(--radius) 0 0 var(--radius)
    }

    .leader-card-last {
        border-radius: 0 var(--radius) var(--radius) 0
    }
}

@media(max-width:768px) {
    .el-leaders {
        flex-direction: column
    }

    .leader-card-first,
    .leader-card-last {
        border-radius: 0
    }

    .leader-card:first-child {
        border-radius: var(--radius) var(--radius) 0 0
    }

    .leader-card:last-child {
        border-radius: 0 0 var(--radius) var(--radius)
    }

    .el-slider,
    .el-slider-wrap {
        min-height: 300px
    }

    .el-slide-title {
        font-size: 1rem
    }

    .el-arrow {
        width: 36px;
        height: 36px;
        font-size: .8rem
    }
}

/* ===== Section Base ===== */
.section {
    padding: 90px 20px;
    position: relative
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light)
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 0, 0, .1), rgba(212, 168, 67, .1));
    color: var(--crimson);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.tag-light {
    background: rgba(212, 168, 67, .15);
    color: var(--gold-light)
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px
}

.section-title span {
    color: var(--crimson)
}

.title-light span {
    color: var(--gold)
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    opacity: .65;
    font-size: 1rem
}

.desc-light {
    color: var(--text-light)
}

/* ===== About Grid ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px
}

.about-card {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--crimson), var(--gold));
    transition: var(--tr)
}

.about-card:hover::before {
    height: 100%
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 0, 0, .08), rgba(212, 168, 67, .08));
    color: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: var(--tr)
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
    color: #fff
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.about-card p {
    font-size: .9rem;
    opacity: .6;
    line-height: 1.6
}

/* ===== Courses ===== */
.course-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, .12);
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr)
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #1a0a0a;
    border-color: var(--gold)
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px
}

.course-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.course-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 168, 67, .08);
    border-color: var(--gold)
}

.course-card.hidden {
    display: none
}

.course-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--crimson);
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700
}

.badge-pg {
    background: var(--gold);
    color: #1a0a0a
}

.badge-phd {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #1a0a0a
}

.course-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px
}

.course-card p {
    font-size: .82rem;
    opacity: .65;
    margin-bottom: 10px
}

.course-dur {
    font-size: .73rem;
    background: rgba(255, 255, 255, .07);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2
}

.gallery-wide2 {
    grid-column: span 4
}

.gallery-wide {
    grid-column: span 2
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--tr)
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0)
}

/* ===== Placement ===== */
.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px
}

.pl-stat {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    transition: var(--tr)
}

.pl-stat:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, .06);
    transform: translateY(-4px)
}

.pl-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-light);
    display: inline
}

.pl-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light)
}

.pl-stat p {
    font-size: .85rem;
    opacity: .6;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* ===== Notices ===== */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.notice-card {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--tr);
    position: relative
}

.notice-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.notice-date {
    font-size: .78rem;
    color: var(--crimson);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px
}

.notice-new {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: .62rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    animation: pulse 2s infinite;
    margin-bottom: 8px
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.notice-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.4
}

.notice-card p {
    font-size: .85rem;
    opacity: .55;
    margin-bottom: 14px
}

.notice-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--crimson);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--tr)
}

.notice-link:hover {
    color: var(--gold);
    gap: 10px
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 168, 67, .15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.contact-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text-light)
}

.contact-item p {
    font-size: .88rem;
    opacity: .6
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-light);
    font-family: inherit;
    font-size: .92rem;
    transition: var(--tr)
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, .12)
}

.contact-form textarea {
    resize: vertical
}

.form-submit {
    background: linear-gradient(135deg, var(--gold), #c4952e);
    color: #1a0a0a;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    font-family: inherit;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, .35)
}

/* ===== Social Media Section ===== */
.social-section {
    background: linear-gradient(135deg, #0a1a4a, #0c1f5e);
    padding: 70px 20px;
    margin-top: 0
}

.social-inner {
    max-width: 1200px;
    margin: 0 auto
}

.social-heading {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px
}

.social-heading-accent {
    width: 5px;
    height: 36px;
    background: var(--orange);
    border-radius: 3px;
    flex-shrink: 0
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px
}

/* Card Base */
.social-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    transition: var(--tr);
    border-top: 4px solid transparent
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2)
}

.social-card-fb {
    border-top-color: #1877f2
}

.social-card-ig {
    border-top-color: #e4405f
}

.social-card-yt {
    border-top-color: #ff0000
}

/* Card Header */
.social-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #f0e8e0
}

.social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
    object-fit: cover;
    flex-shrink: 0
}

.social-card-info h4 {
    font-size: .82rem;
    font-weight: 700;
    color: #0a1a4a;
    line-height: 1.3
}

.social-card-info p {
    font-size: .68rem;
    color: #888
}

.social-brand-icon {
    font-size: 1.6rem;
    margin-left: auto;
    flex-shrink: 0
}

.social-icon-fb {
    color: #1877f2
}

.social-icon-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.social-icon-yt {
    color: #ff0000
}

/* Card Body */
.social-card-body {
    padding: 16px 18px;
    background: #fafafa
}

.social-post {
    margin-bottom: 14px
}

.social-post-text {
    font-size: .82rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px
}

.social-post-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px
}

.social-post-stats {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    font-size: .72rem;
    color: #888
}

.social-post-stats i {
    color: var(--crimson);
    margin-right: 3px
}

/* Instagram Grid */
.ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 4px
}

.ig-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--tr);
    cursor: pointer
}

.ig-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

/* YouTube Thumb */
.yt-thumb-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--tr);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.yt-thumb-wrap:hover .yt-play-btn {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1)
}

.yt-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px
}

.yt-video-title {
    font-size: .82rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 4px
}

/* Follow/Subscribe Buttons */
.social-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 0;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 700;
    transition: var(--tr);
    text-transform: uppercase;
    letter-spacing: .5px
}

.social-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
}

.social-btn-fb {
    background: #e8f0fe;
    color: #1877f2
}

.social-btn-fb:hover {
    background: #1877f2;
    color: #fff
}

.social-btn-ig {
    background: linear-gradient(135deg, #fce4ec, #f3e5f5);
    color: #c2185b
}

.social-btn-ig:hover {
    background: linear-gradient(135deg, #e4405f, #c2185b);
    color: #fff
}

.social-btn-yt {
    background: #ffeaea;
    color: #cc0000
}

.social-btn-yt:hover {
    background: #ff0000;
    color: #fff
}

/* Responsive Social */
@media(max-width:768px) {
    .social-grid {
        grid-template-columns: 1fr
    }

    .social-heading {
        font-size: 1.1rem;
        letter-spacing: 1.5px
    }
}

/* ===== Footer ===== */
.footer {
    background: #0a0303;
    color: var(--text-light);
    padding: 60px 20px 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-logo {
    width: 56px;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 2px solid var(--gold)
}

.footer-brand h3 {
    font-size: 1.15rem;
    margin-bottom: 4px
}

.footer-brand p {
    opacity: .5;
    font-size: .85rem;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--gold);
    color: #1a0a0a;
    transform: translateY(-2px)
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer-links a {
    display: block;
    color: var(--text-light);
    opacity: .55;
    margin-bottom: 10px;
    font-size: .88rem;
    transition: var(--tr)
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 6px
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: .78rem;
    opacity: .35;
    display: flex;
    flex-direction: column;
    gap: 4px
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 80;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--tr);
    box-shadow: 0 4px 16px rgba(139, 0, 0, .3)
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, .4)
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

/* ===== Responsive ===== */
@media(max-width:1024px) {
    .header-inner {
        flex-direction: column;
        text-align: center
    }

    .brand {
        flex-direction: column
    }

    .header-actions {
        flex-direction: column;
        align-items: center
    }

    .quick-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {

    .top-bar-left,
    .marquee-wrapper {
        display: none
    }

    .top-bar-inner {
        justify-content: center
    }

    .nav-inner {
        justify-content: space-between
    }

    .mobile-toggle {
        display: flex
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background: var(--crimson-dark);
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
    }

    .nav-menu.open {
        display: flex
    }

    .nav-link {
        padding: 14px 24px;
        justify-content: space-between
    }

    .nav-link::after {
        display: none
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, .2);
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none
    }

    .has-dropdown:hover .dropdown {
        display: block
    }

    .dropdown a {
        color: rgba(255, 255, 255, .7);
        padding-left: 40px
    }

    .dropdown a:hover {
        color: #fff
    }

    .hero {
        height: 70vh
    }

    .stats-bar {
        gap: 24px;
        padding: 14px 16px
    }

    .stat-num {
        font-size: 1.5rem
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

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

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .hero-controls {
        bottom: 80px
    }
}