@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* HSL Color Palette */
  --brand-red: hsl(358, 81%, 50%);
  --brand-red-hover: hsl(358, 81%, 43%);
  --brand-red-light: hsla(358, 81%, 50%, 0.1);

  /* Light Theme Variables */
  --bg-primary: hsl(0, 0%, 98%);
  --bg-secondary: hsl(0, 0%, 100%);
  --bg-tertiary: hsl(0, 50%, 99%);
  --text-primary: hsl(220, 15%, 15%);
  --text-secondary: hsl(220, 10%, 45%);
  --text-muted: hsl(220, 10%, 60%);
  --border-color: hsl(220, 12%, 90%);
  --shadow-color: rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --card-bg: hsl(0, 0%, 100%);
}

[data-theme="dark"] {
  /* Dark Theme Variables */
  --bg-primary: hsl(220, 15%, 8%);
  --bg-secondary: hsl(220, 15%, 12%);
  --bg-tertiary: hsl(220, 15%, 10%);
  --text-primary: hsl(220, 10%, 95%);
  --text-secondary: hsl(220, 10%, 75%);
  --text-muted: hsl(220, 10%, 55%);
  --border-color: hsl(220, 12%, 20%);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(15, 17, 23, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --card-bg: hsl(220, 15%, 12%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.15s ease;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

a {
  color: var(--brand-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-red-hover);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px var(--shadow-color);
  transition: background-color 0.3s, transform 0.3s;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--brand-red);
}

.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--bg-primary);
  box-shadow: inset 0 0 0 1px var(--border-color);
  transition: background-color 0.2s;
}

.theme-toggle-btn:hover {
  background-color: var(--border-color);
}

/* Mobile Navigation Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Page Layout */
main {
  margin-top: 80px; /* Offset fixed header */
  min-height: calc(100vh - 280px);
}

section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--bg-secondary);
  padding: 10rem 2rem 8rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}

/* Full Size Background Cover */
.hero-bg-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Watermark opacity for high contrast text readability */
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.4s ease, filter 0.3s ease, opacity 0.3s ease;
}

[data-theme="dark"] .hero-bg-full {
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.1; /* High visibility line art tailored for dark mode */
}

.hero-container {
  max-width: 920px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Centered content overlaying background directly */
.hero-content {
  text-align: center;
  padding: 2rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 12px var(--bg-secondary), 0 0 25px var(--bg-secondary), 0 0 10px var(--bg-secondary);
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 4px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.text-accent {
  color: var(--brand-red);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-primary);
  max-width: 800px;
  margin: 1.5rem auto 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 1px 10px var(--bg-secondary), 0 0 20px var(--bg-secondary), 0 0 8px var(--bg-secondary);
}

.hero-text-block {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: justify;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.75;
}

.hero-text-block p {
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px var(--bg-secondary), 0 0 18px var(--bg-secondary), 0 0 6px var(--bg-secondary);
  font-weight: 550;
}

.hero-text-block p:last-child {
  margin-bottom: 0;
}

.hero-quote {
  font-style: italic;
  text-align: center;
  color: var(--brand-red);
  font-weight: 700;
  border-left: 4px solid var(--brand-red);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  text-shadow: 0 1px 8px var(--bg-secondary), 0 0 18px var(--bg-secondary), 0 0 6px var(--bg-secondary);
}

.hero-btns {
  text-align: center;
}

@media (max-width: 991px) {
  .hero {
    padding: 7rem 1rem 5rem;
    min-height: auto;
  }
  .hero-content {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-bg-full {
    opacity: 0.35;
  }
  [data-theme="dark"] .hero-bg-full {
    opacity: 0.18;
  }
}

.btn {
  display: inline-block;
  background-color: var(--brand-red);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(225, 23, 30, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--brand-red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 23, 30, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  box-shadow: inset 0 0 0 2px var(--border-color);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 2px var(--border-color);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--brand-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Tabs System */
.tabs-container {
  margin-top: 2rem;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--brand-red);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  text-align: center;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--border-color);
}

.modal-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.modal-subtitle {
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.modal-bio {
  color: var(--text-secondary);
  text-align: justify;
}

/* Partners Marquee / Grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.partner-logo {
  filter: grayscale(1);
  opacity: 0.6;
  max-width: 150px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Footer styling */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-info {
  max-width: 350px;
}

.footer-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--brand-red);
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Video Grid and Album style */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.video-thumb-container {
  position: relative;
  cursor: pointer;
}

.video-thumb-container img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(225, 23, 30, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.video-thumb-container:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--brand-red);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px var(--shadow-color);
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Key Stats Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-red);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* History Timeline Styles */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 4px solid var(--brand-red);
  z-index: 1;
  transition: transform 0.3s, background-color 0.3s;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background-color: var(--brand-red);
}

.timeline-content {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.timeline-year {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 2rem;
    text-align: left !important;
  }
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
  }
}

/* FAQ Accordion Styles */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-title {
  font-size: 1.8rem;
  color: var(--brand-red);
  margin: 3rem 0 1.5rem;
  border-bottom: 2px solid var(--brand-red-light);
  padding-bottom: 0.5rem;
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
  border-color: var(--brand-red);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  gap: 1.5rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--brand-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-tertiary);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.6;
}

.faq-answer-inner p {
  margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: var(--brand-red);
}

/* Reusable Hover Zoom Effect for Images */
.hover-zoom-container {
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.hover-zoom-container img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  width: 100%;
}
.hover-zoom-container:hover img {
  transform: scale(1.05);
}

/* Slider Framework */
.slider-wrapper {
  position: relative;
  padding: 0 10px;
  margin: 2rem 0;
}

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slider-card {
  flex: 0 0 calc((100% - (3 - 1) * 2rem) / 3); /* 3 cards visible on desktop */
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.slider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-color);
}

.slider-img-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.slider-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.slider-card:hover .slider-img-container img {
  transform: scale(1.06);
}

.slider-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(225, 23, 30, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.slider-card:hover .slider-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--brand-red);
}

.slider-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-card-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.slider-card-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.slider-arrow:hover {
  background-color: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, transform 0.3s;
}

.slider-dot:hover {
  background-color: var(--text-muted);
}

.slider-dot.active {
  background-color: var(--brand-red);
  transform: scale(1.2);
}

/* Responsive Overrides for Slider */
@media (max-width: 992px) {
  .slider-card {
    flex: 0 0 calc((100% - (2 - 1) * 2rem) / 2); /* 2 cards visible */
  }
  .slider-arrow.prev { left: -15px; }
  .slider-arrow.next { right: -15px; }
}

@media (max-width: 576px) {
  .slider-card {
    flex: 0 0 100%; /* 1 card visible */
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
  }
  .slider-arrow.prev { left: -10px; }
  .slider-arrow.next { right: -10px; }
}

