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

:root {
  /* Modern color palette */
  --primary: #ffffff;          /* page background */
  --secondary: #f5f7fb;        /* subtle surfaces, tracks */
  --accent: #03314C;           /* Deep Oceanic */
  --accent-dark: #021F33;      /* Darker Oceanic */
  --accent-light: rgba(3, 49, 76, 0.08);
  --accent-light-hover: rgba(3, 49, 76, 0.12);
  --crimson: #C111F;           /* Crimson Blaze */
  --crimson-dark: #9A0D28;     /* Darker Crimson */
  --crimson-light: rgba(193, 17, 47, 0.08);
  --success: #16a34a;
  --warning: #f59e0b;
  --text: #03314C;             /* Deep Oceanic for text */
  --text-muted: #667785;       /* muted text */
  --border: #E3E8F0;           /* light borders */
  --glow: 0 0 20px rgba(3, 49, 76, 0.15);
  --glow-crimson: 0 0 20px rgba(193, 17, 47, 0.15);
  --shadow: 0 10px 30px rgba(3, 49, 76, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1400px, 95%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  font-family: sans-serif;
}

.brand-logo:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5));
}

.brand-logo:active {
  transform: scale(1.1) rotate(3deg);
}

.brand-name {
  display: none;
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.cta {
  border: 2px solid var(--accent);
  padding: 10px 20px;
  border-radius: 0;
  color: var(--accent);
}

.cta:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Dashboard Toggle Button - Creative Design */
.dashboard-toggle {
  display: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 2px solid var(--accent);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(3, 49, 76, 0.2);
}

.dashboard-toggle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 17, 47, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 49, 76, 0.35), 0 0 20px rgba(193, 17, 47, 0.15);
}

.dashboard-toggle:hover::before {
  opacity: 1;
}

.dashboard-toggle:active {
  transform: translateY(-1px) scale(0.98);
}

/* Dashboard Sidebar */
.dashboard {
  position: fixed;
  left: -400px;
  top: 0;
  width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #fffffff3 100%, rgba(3, 49, 76, 0.02) 100%);
  border-right: 3px solid var(--accent);
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 0 40px rgba(3, 49, 76, 0.2);
  padding-top: 80px;
  overflow-y: auto;
}

.dashboard.active {
  left: 0;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.dashboard-header h3 {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.dashboard-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.dashboard-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.dashboard-content {
  padding: 20px;
}

.dashboard-section {
  margin-bottom: 30px;
}

.dashboard-section h4 {
  padding: 7px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.dashboard-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--secondary);
  border-radius: 6px;
  margin-bottom: 10px;
  border-left: 3px solid var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-value {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.dashboard-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  border-left: 3px solid transparent;
}

.dashboard-link:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.dashboard-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.dashboard-link:hover i {
  transform: scale(1.2) rotate(12deg);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  margin-top: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.hero-title {
  font-family: sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 20px 0;
  padding: 20px 0;
  animation: slideInUp 0.8s ease 0.2s both;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  margin: 15px 0;
  padding: 15px 0;
  animation: slideInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  animation: slideInUp 0.8s ease 0.6s both;
  margin-top: 30px;
  padding-top: 30px;
}

.btn {
  padding: 18px 40px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  margin: 10px 15px 10px 0;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.btn-primary:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: var(--glow), 0 15px 40px rgba(14, 165, 233, 0.35);
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--bg);
}

.hero-visual {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: slideInRight 0.8s ease 0.3s both;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual:hover .hero-image {
  transform: scale(1.05);
}

/* Scroll Reveal Animation */
.reveal-title {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-title.revealed,
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Section */
.section {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.section-title {
  font-family: sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 30px 0 80px 0;
  padding: 30px 0;
  line-height: 1.1;
}

/* Brand identity background overlays */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('img/Background1.jpeg');
  background-repeat: no-repeat;
  /* place watermark neatly inside viewport */
  background-position: right 0px top 20px;
  background-size: 420px auto;
  opacity: 0.5; /* subtle watermark */
  pointer-events: none;
  z-index: 0;
  filter: grayscale(0) contrast(0.95);
}

.services {
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/Background2.jpeg');
  background-repeat: no-repeat;
  background-position: left -120px top 20px;
  background-size: 620px auto;
  opacity: 0.5 ; /* subtle watermark for sections */
  pointer-events: none;
  z-index: -1;
  filter: grayscale(-2) contrast(0.99);
}

.cta-final {
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/Background1.jpeg');
  background-repeat: no-repeat;
  background-position: right -160px bottom -60px;
  background-size: 760px auto;
  opacity: 0.12; /* subtle on CTA */
  pointer-events: none;
  z-index: -1;
  filter: grayscale(1) contrast(3);
}

@media (max-width: 768px) {
  body::before {
    background-size: 320px auto;
    background-position: right -100px top -60px;
  }
  .services::before {
    background-size: 420px auto;
    background-position: left -80px top -10px;
    opacity: 0.16; /* adjusted for mobile */
  }
  .cta-final::before {
    background-size: 460px auto;
    background-position: right -80px bottom -40px;
    opacity: 0.14;
  }
}

/* Services */
.services-scroll {
  /* Two-column staggered layout */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 20px 0;
  overflow: visible;
}

.services-scroll::-webkit-scrollbar {
  height: 6px;
}

.services-scroll::-webkit-scrollbar-track {
  background: var(--secondary);
}

.services-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.services-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

.service-card {
  position: relative;
  padding: 50px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 20px;
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
  filter: brightness(0.98);
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-image {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.05) saturate(1.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.25);
}

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

.service-number {
  font-family: sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  margin-top: 20px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 15px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 15px 0;
  padding: 15px 0;
}

.service-accent {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-light), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-accent {
  opacity: 1;
}

/* Services reveal transitions */
.services .service-card.reveal-item {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
}
.services .service-card:nth-child(odd).reveal-item {
  transform: translateY(40px) translateX(-30px);
}
.services .service-card:nth-child(even).reveal-item {
  transform: translateY(40px) translateX(30px);
}
.services .service-card.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Stagger offsets for services to mimic editorial composition */
.services-scroll .service-card:nth-child(2),
.services-scroll .service-card:nth-child(4) {
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .services-scroll {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-scroll {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-scroll .service-card:nth-child(2),
  .services-scroll .service-card:nth-child(4) {
    margin-top: 0;
  }
}

/* Gallery */
.gallery-header {
  margin-bottom: 60px;
}

.gallery-header p {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 16px;
}

.gallery-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  min-width: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery-item {
  flex: 0 0 600px;
  height: 400px;
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

/* Upcoming Events Section */
.upcoming-events {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 480px));
  justify-content: center;
  gap: 24px;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.event-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow);
}

.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(14, 165, 233, 0.25);
}

.event-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover .event-image {
  transform: scale(1.1) rotate(1deg);
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  animation: slideInUp 0.6s ease 0.2s both;
}

.event-content {
  padding: 30px;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.event-date i {
  font-size: 15px;
}

.event-card h3 {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.event-location,
.event-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.event-location i,
.event-capacity i {
  color: var(--accent);
  font-size: 14px;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}

.event-btn:active {
  transform: scale(0.98);
}

/* Stats */
.stats {
  background: var(--bg);
}

.stats-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.stat-item {
  padding: 40px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  flex: 0 0 280px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-item:hover {
  border-color: var(--accent);
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: var(--glow);
}

.stat-number {
  font-family: sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Process */
.process-timeline {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.process-step {
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.5s ease;
  flex: 0 0 300px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 8px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.5s ease;
  border-radius: 8px 0 0 8px;
}

.process-step:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.process-step:hover::before {
  height: 100%;
}

.step-number {
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-divider {
  display: none;
}

/* CTA Final */
.cta-final {
  background: var(--secondary);
  text-align: center;
  padding: 120px 0;
}

.cta-content h2 {
  font-family: sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact links in CTA */
.contact-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  transition: all 0.18s ease;
  font-weight: 600;
}
.contact-link i {
  font-size: 16px;
}
.contact-link:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.footer-links a:hover i {
  transform: scale(1.2) rotate(12deg);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Responsive */
/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-up {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-60px) scale(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ===== RESPONSIVE: TABLET & DESKTOP ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 80px 20px 40px;
  }

  .hero-visual {
    height: 400px;
    animation: slideInUp 0.8s ease 0.3s both;
  }

  .hero-content {
    padding: 30px 25px;
  }

  .services-scroll {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 35px;
    margin: 15px;
  }

  .stat-item {
    flex: 0 0 250px;
  }

  .process-step {
    flex: 0 0 270px;
  }

  .gallery-item {
    flex: 0 0 450px;
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .section {
    padding: 80px 30px;
    margin: 30px 0;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 48px);
    margin: 20px 0 50px 0;
  }

  /* Dashboard Responsive */
  .dashboard-toggle {
    display: flex;
  }

  .dashboard {
    width: 300px;
  }

  /* Events Grid Responsive */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ===== RESPONSIVE: MOBILE (768px and below) ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }

  .nav {
    padding: 0 15px;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
  }

  .brand-name {
    display: inline;
    font-size: 12px;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .hero {
    padding: 80px 20px 40px;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(40px, 7vw, 48px);
    margin: 10px 0;
    padding: 10px 0;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-content {
    padding: 25px 20px;
    gap: 15px;
  }

  .hero-visual {
    height: 300px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 11px;
    margin: 5px 0;
  }

  .section {
    padding: 60px 20px;
    margin: 20px 0;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 42px);
    margin: 15px 0 40px 0;
  }

  .services-scroll {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-scroll .service-card:nth-child(2),
  .services-scroll .service-card:nth-child(4) {
    margin-top: 0;
  }

  .service-card {
    flex: 0 0 auto;
    padding: 25px;
    margin: 10px 0;
    min-height: 200px;
  }

  .service-image {
    height: 180px;
    margin-bottom: 16px;
  }

  .service-number {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-header p {
    font-size: 16px;
  }

  .gallery-item {
    flex: 0 0 350px;
    height: 250px;
  }

  .gallery-label {
    font-size: 12px;
    padding: 6px 12px;
  }

  .stat-item {
    flex: 0 0 220px;
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .process-step {
    flex: 0 0 250px;
    padding: 30px 20px;
  }

  .step-number {
    font-size: 28px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
  }

  .cta-final {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: clamp(28px, 6vw, 48px);
    margin-bottom: 16px;
  }

  .cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-brand {
    gap: 10px;
    font-size: 12px;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
  }

  .footer-links {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-content {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  /* Events Responsive */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .event-card {
    border-radius: 10px;
  }

  .event-image-wrapper {
    height: 250px;
  }

  .event-content {
    padding: 25px;
  }

  .event-card h3 {
    font-size: 18px;
  }

  .event-description {
    font-size: 13px;
  }

  .event-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Dashboard Mobile */
  .dashboard {
    width: 280px;
    padding-top: 70px;
  }

  nav {
    display: none;
  }

  .dashboard-toggle {
    display: flex;
  }
}

/* ===== RESPONSIVE: SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand {
    gap: 8px;
    font-size: 10px;
  }

  .brand-name {
    display: none;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 8px;
    padding: 4px 6px;
  }

  .hero {
    padding: 70px 15px 30px;
    gap: 20px;
  }

  .hero-title {
    
    font-size: clamp(48px, 10vw, 36px);
    margin: 5px 0;
    padding: 5px 0;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-content {
    padding: 20px 15px;
    gap: 12px;
  }

  .hero-visual {
    height: 250px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 10px;
    margin: 0;
  }

  .section {
    padding: 40px 15px;
    margin: 15px 0;
  }

  .section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin: 10px 0 30px 0;
  }

  .service-card {
    padding: 20px;
    margin: 0;
    min-height: 180px;
  }

  .service-image {
    height: 140px;
    margin-bottom: 12px;
  }

  .service-number {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .gallery-item {
    flex: 0 0 100vw;
    height: 220px;
  }

  .gallery-label {
    font-size: 11px;
    bottom: 15px;
    left: 15px;
  }

  .stat-item {
    flex: 0 0 100%;
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .process-step {
    flex: 0 0 100%;
    padding: 25px 15px;
  }

  .step-number {
    font-size: 24px;
  }

  .process-step h3 {
    font-size: 15px;
  }

  .process-step p {
    font-size: 12px;
  }

  .cta-final {
    padding: 60px 15px;
  }

  .cta-content h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .social-links {
    margin-top: 10px !important;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-brand {
    font-size: 10px;
    gap: 8px;
  }

  .footer-logo {
    width: 35px;
    height: 35px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-content {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  /* Events Small Mobile */
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-image-wrapper {
    height: 200px;
  }

  .event-content {
    padding: 18px;
  }

  .event-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .event-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .event-date {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .event-description {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .event-meta {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .event-location,
  .event-capacity {
    font-size: 11px;
  }

  .event-btn {
    padding: 10px 18px;
    font-size: 11px;
    width: 100%;
  }

  /* Dashboard Small Mobile */
  .dashboard {
    width: 250px;
    padding-top: 60px;
  }

  .dashboard-header h3 {
    font-size: 16px;
  }

  .dashboard-content {
    padding: 15px;
  }

  .dashboard-section h4 {
    font-size: 12px;
  }

  .dashboard-stat {
    padding: 10px 12px;
    font-size: 12px;
  }

  .stat-value {
    font-size: 16px;
  }

  .dashboard-link {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* Responsive adjustments for Upcoming Events */
@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .event-image-wrapper {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .event-image-wrapper {
    height: 160px;
  }
  .event-content {
    padding: 14px;
  }
  .event-card {
    border-radius: 8px;
  }
  .event-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .event-image-wrapper {
    height: 140px;
  }
  .event-content {
    padding: 12px;
  }
}
