:root {
    --primary: #1d4ed8;
    --primary-dark: #1e3a8a;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --font: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; }
body { font-family: var(--font); color: var(--dark); overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

/* Top Bar */
.top-bar { position: relative; z-index: 2; background: var(--dark); color: #94a3b8; font-size: 13px; padding: 8px 0; }
.top-bar .row { row-gap: 6px; }
.top-bar-item i { color: var(--secondary); margin-right: 5px; }
.top-bar-btn { margin-left: 8px; border-radius: 20px; font-size: 12px; font-weight: 600; padding: 3px 14px; border-color: rgba(255,255,255,0.2); color: #e2e8f0; transition: all 0.3s; }
.top-bar-btn:hover { background: var(--secondary); border-color: var(--secondary); color: var(--dark); }
.top-bar-social { color: #94a3b8; transition: color 0.3s; display: inline-flex; align-items: center; }
.top-bar-social:hover { color: var(--secondary); }

/* Header */
.main-header { position: relative; z-index: 2; background: #fff; }
.sticky-nav {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky; top: 0; z-index: 1000;
    animation: navBgShift 12s linear infinite;
}
@keyframes navBgShift {
    0% { background: #0a0a0a; }
    14% { background: #0f1f3a; }
    28% { background: #0f2a5a; }
    42% { background: #080e1f; }
    57% { background: #0f1f3a; }
    71% { background: #0d0820; }
    85% { background: #06060f; }
    100% { background: #0a0a0a; }
}
@keyframes navTextShift {
    0% { color: #bbb; }
    14% { color: #7aa9f0; }
    28% { color: #5b9cf5; }
    42% { color: #6a8fc0; }
    57% { color: #7aa9f0; }
    71% { color: #8b6fc8; }
    85% { color: #5a5a8a; }
    100% { color: #bbb; }
}
.sticky-nav::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; pointer-events: none;
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9, #f59e0b);
}
.sticky-nav::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; pointer-events: none;
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9, #f59e0b);
}
.header-logo { padding: 16px 0; }
.header-logo img { height: auto; width: auto; max-height: 90px; max-width: 100%; object-fit: contain; }
@media (max-width: 767px) { .header-logo img { max-height: 65px; } }
@media (max-width: 480px) { .header-logo img { max-height: 50px; } }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-text { line-height: 1.2; }
.brand-name { display: block; font-size: 18px; font-weight: 800; color: var(--dark); }
.brand-tagline { display: block; font-size: 11px; color: var(--gray); letter-spacing: 0.5px; }
.nav-link {
    font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 24px 14px !important; color: #ccc !important;
    position: relative; transition: color 0.3s;
    animation: navTextShift 12s linear infinite;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 17px; left: 50%; width: 0; height: 2.5px;
    background: var(--primary); border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link:hover, .nav-link.active { color: #fff !important; animation: none; }
.dropdown-menu {
    border: none; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.4); padding: 8px;
    display: block; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); pointer-events: none;
    background: #1a1a2e;
}
.dropdown:hover > .dropdown-menu, .dropdown-menu.show {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dropdown-item {
    border-radius: 8px; font-size: 13px; padding: 8px 16px; font-weight: 500;
    transition: all 0.25s; position: relative;
    border-bottom: 1px solid #2d2d4a; color: #ccc;
}
.dropdown-item:last-child { border-bottom: none }
.dropdown-menu .dropdown-item:first-child { border-top: 1px solid #2d2d4a }
.dropdown-item::after {
    content: ''; position: absolute; bottom: 4px; left: 16px; width: 0; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.dropdown-item:hover::after { width: calc(100% - 32px); }
.dropdown-item:hover {
    background: rgba(255,255,255,0.08); color: #fff; transform: translateX(6px);
}

/* Hero Slider */
.hero-section { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; min-height: 650px; display: flex; align-items: center; overflow: hidden; background: #0f172a; z-index: 0; }
.hero-section .hero-bg { background-size: cover; background-position: center center; background-repeat: no-repeat; }
.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%; z-index: 2;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3; width: 100%; text-align: center;
}
.hero-content .row { justify-content: center; margin: 0; }
.hero-content .container { padding: 0 20px; }
.hero-badge { display: inline-block; background: var(--secondary); color: var(--dark); padding: 8px 24px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(16px, 2.5vw, 30px); font-weight: 700; margin-bottom: 15px; color: #fff; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 30px rgba(0,0,0,0.6), 0 8px 50px rgba(0,0,0,0.4); }
.hero-subtitle { font-size: clamp(12px, 2vw, 18px); color: #fff; max-width: 90vw; margin: 0 auto; line-height: 1.3; text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5); }
.hero-content-text { font-size: clamp(14px, 2vw, 20px); color: #fff; max-width: 700px; margin: 10px auto 0; line-height: 1.6; text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5); }

.hero-slides-wrapper { position: absolute; top:0; left:0; width:100%; height:100%; z-index: 1; }
.hero-slide { position: absolute; top:0; left:0; width:100%; height:100%; opacity: 0; transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1); transform: scale(1.3); }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-slide.active .hero-bg { animation: heroZoom 12s ease forwards; }
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }

.hero-controls { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 6; pointer-events: none; }
.hero-controls .hero-arrow,
.hero-controls .hero-dot { pointer-events: auto; cursor: pointer; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.35s; backdrop-filter: blur(8px); }
.hero-arrow:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); background: transparent; cursor: pointer; transition: all 0.35s; padding: 0; }
.hero-dot.active { background: #fff; border-color: #fff; transform: scale(1.2); }
.hero-dot:hover { border-color: #fff; }

@media (max-width: 1199px) {
    .navbar-collapse { background: var(--dark); padding: 15px; border-radius: 12px; margin-top: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
    .nav-link { padding: 12px 14px !important; font-size: 14px; }
    .hero-section { min-height: 500px; }
    .news-sidebar.is-fixed { right: calc((100vw - 960px) / 2 + 15px); width: 293px; }
}
@media (max-width: 991px) {
    .hero-section { position: relative; min-height: 56.25vw; padding: 0; align-items: center; }
    .hero-content-wrapper { margin-top: 0; }
    .hero-slide { transform: scale(1) !important; }
    .hero-section .hero-bg { background-size: contain; background-position: center center; background-color: #0f172a; }
    .hero-slide.active .hero-bg { animation: none !important; }
    .hero-title { font-size: clamp(13px, 3vw, 22px); margin-bottom: 4px; }
    .hero-subtitle { font-size: clamp(11px, 2.5vw, 16px); }
    .hero-badge { font-size: clamp(9px, 2vw, 13px); padding: 4px 14px; margin-bottom: 8px; }
    .hero-content-text { font-size: clamp(11px, 2.5vw, 14px); margin-top: 4px; }
    .hero-actions { margin-top: 8px; }
    .hero-dots { bottom: 8px; gap: 6px; }
    .hero-dot { width: 8px; height: 8px; }
    .hero-arrow { width: 30px; height: 30px; font-size: 14px; }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
    .section-title { font-size: 24px; }
    .section { padding: 40px 0; }
    .news-sidebar.is-fixed { position: static; width: auto; }
    .news-sidebar { margin-top: 30px; }
    .stats-section { padding: 40px 0; }
    .stat-item { padding: 25px 16px; }
    .stat-number { font-size: 30px; }
    .stat-suffix { font-size: 30px; }
}
@media (max-width: 767px) {
    .section { padding: 30px 0; }
    .top-bar .text-end { text-align: left !important; margin-top: 5px; }
    .top-bar .col-md-6.d-flex { flex-wrap: wrap; gap: 4px; }
    .top-bar-item { margin-left: 0 !important; }
    .top-bar-actions { text-align: left !important; margin-top: 6px; }
    .top-bar-btn { margin-left: 0; margin-right: 8px; }
    .brand-name { font-size: 14px; }
    .brand-tagline { font-size: 10px; }
    .about-image-wrapper::before { display: none; }
    .stats-section .row.g-4 { row-gap: 12px; }
    .stat-item { padding: 16px 12px; }
    .stat-number { font-size: 24px; }
    .stat-suffix { font-size: 24px; }
    .stat-title { font-size: 11px; }
    .program-card { padding: 16px 12px; }
    .program-card h4 { font-size: 14px; }
    .gallery-item img { height: 140px; }
    .footer-map iframe { height: 180px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-clock { margin-top: 8px; }
    .ticker-wrap { height: 32px; }
    .ticker-label { font-size: 0.6rem; padding: 0 8px; }
    .ticker-item { font-size: 0.7rem; margin-right: 12px; }
}
@media (max-width: 575px) {
    .hero-arrow { width: 24px; height: 24px; font-size: 10px; }
    .hero-arrow-prev { left: 4px; }
    .hero-arrow-next { right: 4px; }
    .section-title { font-size: 18px; }
    .section { padding: 24px 0; }
    .stats-section { padding: 24px 0; }
    .program-icon { width: 40px; height: 40px; font-size: 18px; }
    .event-card-thumb { height: 120px; }
    .quick-link-card { padding: 14px; font-size: 12px; min-height: 50px; }
    .page-banner { padding: 30px 0; }
    .cta-section .btn-lg { font-size: 13px; padding: 8px 20px !important; }
}
@media (max-width: 480px) {
    .section { padding: 20px 0; }
    .stats-section { padding: 20px 0; }
}
@media (max-width: 360px) {
    .section { padding: 16px 0; }
    .top-bar { font-size: 11px; }
    .top-bar-btn { font-size: 10px; padding: 2px 10px; }
}

/* Sections */
.section { padding: 80px 0; }
.section-badge { display: inline-block; background: rgba(29,78,216,0.1); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark) !important; }

.section-about {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8faff 100%);
    position: relative;
}
.section-about p { text-align: justify; }
.section-about::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #0ea5e9, #f59e0b);
}
.section-programs {
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 40%, #fef2f2 100%);
    position: relative;
}
.section-events {
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 40%, #ecfdf5 100%);
    position: relative;
}
.section-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 40%, #2563eb 70%, #0ea5e9 100%);
    background-size: 300% 300%; animation: gradientShift 8s ease infinite; padding: 20px 0;
}
.section-cta h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.section-cta p { margin-bottom: 12px; }
.section-quick {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-bottom: 20px;
}
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(99,102,241,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(236,72,153,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(34,211,238,0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 10s ease infinite;
    background-size: 200% 200%;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

/* Stats */
.stat-item {
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.stat-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-number-wrap {
    display: inline-block;
    line-height: 1;
    background: linear-gradient(135deg, #facc15, #eab308, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-number {
    font-size: 36px; font-weight: 800;
    line-height: 1;
}
.stat-suffix {
    font-size: 36px; font-weight: 800;
    line-height: 1;
}
.stat-title {
    font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
    color: #94a3b8; margin-top: 8px; font-weight: 600;
    position: relative; display: inline-block;
}
.stat-title::after {
    content: '';
    display: block; width: 30px; height: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Program Cards */
.section-programs .row.g-4 {
  --card-radius: 20px;
}
.program-card {
  position: relative;
  border-radius: var(--card-radius);
  padding: 24px 18px 20px;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  isolation: isolate;
}
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.program-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.program-card { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%); }
.program-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.program-card:hover::after {
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.program-icon {
  position: relative;
  z-index: 3;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 16px 6px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(245,87,108,0.35);
}
.program-card:hover .program-icon {
  transform: translateY(-4px) scale(1.06) rotate(4deg);
  box-shadow: 0 12px 30px rgba(245,87,108,0.5);
  border-radius: 6px 16px 6px 16px;
}
.program-card h4 {
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.program-card p {
  position: relative;
  z-index: 3;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}

/* Quick Links */
.quick-link-card { display: flex; align-items: center; justify-content: space-between; padding: 25px; border-radius: 12px; color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s; min-height: 80px; }
.quick-link-card:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* Dropdown submenu */
.dropdown-submenu { position:relative }
.dropdown-submenu>.dropdown-menu {
    top:0;left:100%;margin-top:-6px;margin-left:2px;
    display:block;opacity:0;visibility:hidden;transform:translateY(0) translateX(8px);
    transition:all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);pointer-events:none
}
.dropdown-submenu:hover>.dropdown-menu {
    opacity:1;visibility:visible;transform:translateY(0) translateX(0);pointer-events:auto
}

/* Mobile nav */
.navbar-toggler { border-color: rgba(255,255,255,0.2); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
@media (max-width: 1199px) {
  .navbar .container { position: relative; }
  .navbar-collapse { position: absolute; top: 100%; left: 15px; right: 15px; z-index: 999; background: #1a1a2e; border-radius: 12px; padding: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); }
  .navbar-nav { max-height: 70vh; overflow-y: auto; }
  .navbar-nav .nav-link { padding: 10px 14px !important; color: #ccc !important; animation: none; font-size: 13px; }
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: #fff !important; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .dropdown-menu { position: static !important; float: none; box-shadow: none; border-radius: 8px; background: rgba(255,255,255,0.05); margin-top: 4px; padding: 6px; opacity: 1; visibility: visible; transform: none; pointer-events: auto; display: none; }
  .navbar-nav .dropdown-menu.show { display: block; }
  .navbar-nav .dropdown-submenu>.dropdown-menu { margin-left: 0; display: none; }
  .navbar-nav .dropdown-submenu>.dropdown-menu.show { display: block; }
  .navbar-nav .dropdown-item { color: #999; border-bottom-color: rgba(255,255,255,0.06); font-size: 12px; padding: 7px 14px; }
  .navbar-nav .dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
  .navbar-nav .dropdown-item::after { display: none; }
}

/* Gallery */
.gallery-item { display: block; position: relative; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 30px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* CTA */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #1e3a8a, #1d4ed8); }

/* Page Banner */
.page-banner { padding: 60px 0; }
.breadcrumb { margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Footer */
.main-footer { position: relative; z-index: 2; background: #0f172a; color: #94a3b8; padding: 20px 0 0; }
.main-footer h5 { color: #fff; font-weight: 700; margin-bottom: 20px; font-size: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--secondary); }
.social-links a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; align-items: center; justify-content: center; color: #fff; margin-right: 8px; transition: all 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--secondary); color: var(--dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; font-size: 13px; }
.footer-clock { background:linear-gradient(135deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03)); padding:8px 20px; border-radius:10px; font-size:0.85rem; color:#f1f5f9; letter-spacing:0.4px; border:1px solid rgba(255,255,255,0.12); white-space:nowrap; display:inline-flex; align-items:center; gap:8px; box-shadow:0 2px 12px rgba(0,0,0,0.2); font-weight:500 }
.footer-clock i { color:var(--secondary); font-size:0.9rem }

/* About Image */
.about-image-wrapper { position: relative; }
.about-image-wrapper::before { content: ''; position: absolute; width: 100%; height: 100%; border: 4px solid var(--primary); border-radius: 16px; top: 15px; left: 15px; z-index: -1; }

/* Page Content */
.page-content { font-size: 16px; line-height: 1.8; }
.page-content h1, .page-content h2, .page-content h3 { font-family: var(--font-heading); margin-top: 30px; }
.page-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }

/* News Ticker */
.hero-content-wrapper {
    position: relative; z-index: 1; background: #fff; overflow-x: hidden;
}
@media (min-width: 992px) {
    .hero-content-wrapper { margin-top: 100vh; }
}
.ticker-wrap {
    display:flex;align-items:center;background:#0f172a;overflow:hidden;height:48px;border-bottom:3px solid var(--secondary)
}
.ticker-label {
    flex-shrink:0;background:var(--secondary);color:#0f172a;font-weight:800;font-size:0.82rem;padding:0 20px;height:100%;display:flex;align-items:center;text-transform:uppercase;letter-spacing:1px;z-index:2;position:relative
}
.ticker-track {
    display:flex;align-items:center;animation:tickerScroll 30s linear infinite;white-space:nowrap;padding-left:20px
}
.ticker-track:hover { animation-play-state:paused }
.ticker-item {
    display:inline-flex;align-items:center;color:#94a3b8;font-size:0.85rem;font-weight:500;margin-right:40px;white-space:nowrap
}
.ticker-item i.bi-dot { color:var(--secondary);font-size:1.2rem }
@keyframes tickerScroll {
    0% { transform:translateX(0) }
    100% { transform:translateX(-50%) }
}
/* News Sidebar */
.news-sidebar {
    background:#fff;border-radius:20px;overflow:hidden;
    box-shadow:0 8px 32px rgba(29,78,216,0.08);
    border:1px solid #e2e8f0;position:sticky;top:0;
}
.news-sidebar-header {
    background:linear-gradient(135deg,#1d4ed8,#2563eb);color:#fff;font-weight:700;font-size:0.95rem;padding:14px 20px;display:flex;align-items:center
}
.news-sidebar-body { padding:8px }
.news-item {
    display:flex;flex-direction:column;padding:12px 14px;border-radius:12px;text-decoration:none;transition:all 0.3s;border-bottom:1px dotted #d1d5db
}
.news-item:last-child { border-bottom:none }
.news-item:hover { background:rgba(29,78,216,0.05);transform:translateX(4px) }
.news-item-date { font-size:0.75rem;color:#6b7280;margin-bottom:2px }
.news-item-title { font-size:0.88rem;font-weight:600;color:#111827;line-height:1.3 }
.news-view-all {
    display:flex;align-items:center;justify-content:center;gap:4px;padding:12px;font-weight:700;font-size:0.85rem;color:#1d4ed8;text-decoration:none;border-radius:12px;transition:all 0.3s
}
.news-view-all:hover { background:rgba(29,78,216,0.06);gap:8px }

.event-card-sm {
    background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,0.08);transition:transform 0.3s,box-shadow 0.3s;height:100%
}
.event-card-sm:hover {
    transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.12)
}
.event-card-thumb {
    height:180px;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center
}
.event-card-body {
    padding:14px
}
.event-card-date {
    font-size:0.8rem;color:#6b7280;margin-bottom:4px
}
.event-card-title {
    font-weight:700;margin-bottom:4px;color:#111827
}
.event-card-desc {
    font-size:0.85rem;color:#6b7280;margin-bottom:0;line-height:1.4
}
.event-card {
    cursor:pointer
}
.event-card:hover {
    transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.15)
}
