/* ===============================
   Root Variables (Theme Settings)
==================================*/
:root {
  --font-base: "Arial", "Helvetica", sans-serif;
  --font-size: 16px;
  --line-height: 1.55;

  --color-text: #222;
  --color-muted: #666;
  --color-bg: #fafafa;
  --color-white: #fff;
  --color-border: #eee;

  --color-brand: #1f6feb;
  --color-brand-dark: #1457c3;
  --color-footer-bg: #0b1020;
  --color-footer-text: #cfe0ff;

  --radius: 12px;
  --radius-lg: 16px;

  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* ===============================
   Global Reset
==================================*/
* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.muted { color: var(--color-muted); }
.small { font-size: 0.9rem; }

/* ===============================
   Premium Animated Header
==================================*/

/* Header Base */
.site-header {
  background: linear-gradient(120deg, #0073e6, #00c6ff, #ff5f6d, #ffc371);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Gradient Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Inner Layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 0 auto;
}

/* Brand */
.brand-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}

.brand-logo:hover {
  transform: rotate(-5deg) scale(1.12);
}

/* Nav (Desktop) */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #ffe066;
  text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

.nav a:hover::after {
  width: 100%;
}

/* Donate Button */
.btn-donate {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255,64,108,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Ripple Shine Effect */
.btn-donate::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(25deg);
  transition: all 0.5s ease;
}

.btn-donate:hover::before {
  left: 120%;
}

.btn-donate:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255,64,108,0.9);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0,115,230,0.95), rgba(255,95,109,0.95));
    background-size: 200% 200%;
    animation: gradientBG 8s ease infinite; /* same animation as header */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 14px;
    width: 240px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: none;
  }

  /* Nav Links */
.nav a {
  position: relative;
  text-decoration: none;
  color: #131212; /* light gray */
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
  padding: 8px 14px;          /* added padding for background */
  border-radius: 6px;         /* rounded hover effect */
  transition: all 0.3s ease;  /* smooth */
}

.nav a:hover {
  background: #ffcc00;        /* gold background */
  color: #000;                /* black text for contrast */
  text-shadow: none;          /* remove glow for clean look */
}

/* Optional: Keep underline effect */
.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: calc(100% - 20px);
}


  .btn-donate {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    animation: donatePulse 4s infinite alternate ease-in-out;
  }

  .nav.active {
    display: flex;
    animation: slideDown 0.4s ease;
  }

  .nav-toggle {
    display: block;
    color: #f8f3f3;
  }
}


/* ===============================
   Hero Section
==================================*/
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(120deg, #fdf6e3, #e0f7fa, #ffecd2, #ffe0f0);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Animated gradient */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating shapes */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  animation: floatShape 6s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::before {
  width: 200px; height: 200px;
  top: 10%; left: 5%;
}

.hero::after {
  width: 300px; height: 300px;
  bottom: 5%; right: 10%;
}

@keyframes floatShape {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-20px) translateX(20px); }
}

/* Heading */
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.1);
  animation: fadeUp 1s ease forwards;
  position: relative;
  z-index: 1;
}

/* Tagline */
.hero .tagline {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
  animation: fadeUp 1.3s ease forwards;
  position: relative;
  z-index: 1;
}

/* Call-to-action buttons */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1.5s ease forwards;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }

/* Donate button with glow/pulse */
.btn-donate {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(239,68,68,0.6); }
  50% { box-shadow: 0 0 18px rgba(239,68,68,0.9); }
  100% { box-shadow: 0 0 8px rgba(239,68,68,0.6); }
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.btn-ghost:hover {
  background: #111;
  color: #fff;
}

/* Fade-up animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .tagline { font-size: 1rem; }
}


/* ===============================
   Cards & Sections
==================================*/
/* Intro Card Section */
.intro.card {
  background: linear-gradient(145deg, #fffdfd, #f0f8ff);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
  z-index: 1;
}

/* Heading */
.intro.card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
}

.intro.card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ef4444);
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

/* Paragraph */
.intro.card p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 15px;
}

/* Background Floating Shapes */
.intro.card::before,
.intro.card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  animation: floatShape 6s ease-in-out infinite alternate;
  z-index: 0;
}

.intro.card::before {
  width: 150px;
  height: 150px;
  top: -40px;
  left: -30px;
}

.intro.card::after {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -40px;
  background: rgba(239, 68, 68, 0.1);
}

@keyframes floatShape {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(15px); }
}

/* Card Hover Effect */
.intro.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Fade-up Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .intro.card {
    padding: 25px 15px;
  }
  .intro.card h2 {
    font-size: 1.6rem;
  }
  .intro.card p {
    font-size: 1rem;
  }
}


/* ===============================
   Services Card Section 
==================================*/
/* Services Card Section */
.services.card {
  background: linear-gradient(145deg, #fffdfd, #e6f0ff);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
  z-index: 1;
}

/* Heading */
.services.card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
  position: relative;
}

.services.card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ef4444);
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between checkmark and text */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpItem 0.5s forwards;
}

.service-list li:nth-child(1) { animation-delay: 0.2s; }
.service-list li:nth-child(2) { animation-delay: 0.4s; }
.service-list li:nth-child(3) { animation-delay: 0.6s; }
.service-list li:nth-child(4) { animation-delay: 0.8s; }
.service-list li:nth-child(5) { animation-delay: 1s; }
.service-list li:nth-child(6) { animation-delay: 1.2s; }
.service-list li:nth-child(7) { animation-delay: 1.4s; }

/* Right Mark */
.service-list li::before {
  content: "✔";
  font-size: 1.2rem;
  color: #16a34a; /* green tick */
  font-weight: bold;
}

/* Floating Background Shapes */
.services.card::before,
.services.card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  animation: floatShape 6s ease-in-out infinite alternate;
  z-index: 0;
}

.services.card::before {
  width: 120px; height: 120px;
  top: -30px; left: -20px;
}

.services.card::after {
  width: 180px; height: 180px;
  bottom: -40px; right: -30px;
}

/* Animations */
@keyframes fadeUpItem {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatShape {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(15px); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hover Effect */
.services.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .services.card {
    padding: 25px 20px;
  }
  .services.card h2 {
    font-size: 1.6rem;
  }
  .service-list li {
    font-size: 1rem;
  }
}
/* ===============================
   Facilities Card
==================================*/

.facilities.card {
  background: linear-gradient(145deg, #fdfdfd, #eef7ff);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
  z-index: 1;
}

/* Heading */
.facilities.card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  position: relative;
}

.facilities.card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

/* Facility Grid */
.facility-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Facility Item */
.facility-grid li {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpItem 0.6s forwards;
}

/* Animate each box with delay */
.facility-grid li:nth-child(1) { animation-delay: 0.2s; }
.facility-grid li:nth-child(2) { animation-delay: 0.4s; }
.facility-grid li:nth-child(3) { animation-delay: 0.6s; }
.facility-grid li:nth-child(4) { animation-delay: 0.8s; }
.facility-grid li:nth-child(5) { animation-delay: 1s; }
.facility-grid li:nth-child(6) { animation-delay: 1.2s; }

/* Hover Effect */
.facility-grid li:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  background: linear-gradient(145deg, #f0f9ff, #ffffff);
}

/* Floating Background Shapes */
.facilities.card::before,
.facilities.card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  animation: floatShape 6s ease-in-out infinite alternate;
  z-index: 0;
}

.facilities.card::before {
  width: 130px; height: 130px;
  top: -30px; left: -40px;
}

.facilities.card::after {
  width: 190px; height: 190px;
  bottom: -50px; right: -30px;
}

/* Animations */
@keyframes fadeUpItem {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatShape {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(15px); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .facilities.card {
    padding: 25px 20px;
  }
  .facilities.card h2 {
    font-size: 1.6rem;
  }
  .facility-grid li {
    font-size: 1rem;
    padding: 15px;
  }
}

/* ===============================
  Help & Donate Card
==================================*/
 
.help.card {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s ease forwards;
  z-index: 1;
}

/* Heading */
.help.card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.help.card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 2px;
  margin: 8px auto 0 auto;
}

/* Paragraph */
.help.card p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 25px;
}

/* List */
.help.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.help.card ul li {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 12px;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

/* Add checkmark before list items */
.help.card ul li::before {
  content: "✔️";
  color: #16a34a;
  font-size: 1.2rem;
}

/* Hover effect on list items */
.help.card ul li:hover {
  transform: translateX(6px);
  background: #f9fafb;
}

/* Donate Button */
.help.card .btn-donate {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.help.card .btn-donate:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.6);
}

/* Floating Background Shapes */
.help.card::before,
.help.card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  animation: floatShape 6s ease-in-out infinite alternate;
  z-index: 0;
}

.help.card::before {
  width: 140px; height: 140px;
  top: -40px; left: -50px;
}

.help.card::after {
  width: 200px; height: 200px;
  bottom: -60px; right: -40px;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatShape {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(15px); }
}

/* Responsive */
@media (max-width: 768px) {
  .help.card {
    padding: 25px 20px;
  }
  .help.card h2 {
    font-size: 1.6rem;
  }
  .help.card p {
    font-size: 1rem;
  }
  .help.card ul li {
    font-size: 0.95rem;
  }
}

/* ===============================
   Buttons
==================================*/
.btn {
  border: 0;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  background: #111;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: opacity 0.3s, transform 0.2s;
}
.btn:hover { opacity: .95; transform: scale(1.03); }
.btn-ghost { background: var(--color-white); color: #111; border: 1px solid #ddd; }
.btn-donate { background: var(--color-brand); }

/* ===============================
   Grid & Gallery
==================================*/
.grid { display: grid; gap: 12px; }
.gallery { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: block;
}
.videos { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===============================
   Forms
==================================*/
.form { display: grid; gap: 12px; }
.form .row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  outline: 0;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px #cfe3ff;
}
.req { color: #d00; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ===============================
   Footer
==================================*/
.site-footer {
  margin-top: 24px;
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 24px 18px;
}
.site-footer a { color: var(--color-white); }
.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.contacts { list-style: none; padding: 0; margin: 0; }
.contacts li { margin: 4px 0; }
.links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.links a {
  background: #16213d;
  padding: 6px 10px;
  border-radius: var(--radius);
  text-decoration: none;
}

/* ===============================
   SLIDER (Responsive)
==================================*/
 *, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  background: #000;
}

.slider {
  overflow: hidden;
  position: relative;
  height: 100vh;
  color: #fff;
}

.slider__top-heading {
  z-index: 12;
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.5s 1s;
  transform: translateY(-30px);
  opacity: 0;
}
.slider.s--ready .slider__top-heading {
  transform: translateY(0);
  opacity: 1;
}

.slider__slides {
  position: relative;
  height: 100%;
}

.slider__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.slider__slide.s--active {
  pointer-events: auto;
}

.slider__slide-content {
  z-index: 6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-transform: uppercase;
  line-height: 1;
}

.slider__slide-subheading {
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 2px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s;
}
.slider__slide.s--active .slider__slide-subheading {
  transition-delay: 0.65s;
  opacity: 1;
  transform: translateY(0);
}

.slider__slide-heading {
  display: flex;
  margin-bottom: 20px;
  font-size: 60px;
  letter-spacing: 12px;
}
.slider__slide-heading span {
  display: block;
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.333s;
}
.slider__slide.s--prev .slider__slide-heading span {
  transform: translateY(60px);
}
.slider__slide.s--active .slider__slide-heading span {
  opacity: 1;
  transform: translateY(0);
}
/* stagger delays */
.slider__slide-heading span:nth-child(1) { transition-delay: 0s; }
.slider__slide-heading span:nth-child(2) { transition-delay: 0.1s; }
.slider__slide-heading span:nth-child(3) { transition-delay: 0.2s; }
.slider__slide-heading span:nth-child(4) { transition-delay: 0.3s; }
.slider__slide-heading span:nth-child(5) { transition-delay: 0.4s; }
.slider__slide-heading span:nth-child(6) { transition-delay: 0.5s; }
.slider__slide-heading span:nth-child(n+7) { transition-delay: 0.6s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(1) { transition-delay: 0.333s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(2) { transition-delay: 0.433s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(3) { transition-delay: 0.533s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(4) { transition-delay: 0.633s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(5) { transition-delay: 0.733s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(6) { transition-delay: 0.833s; }
.slider__slide.s--active .slider__slide-heading span:nth-child(n+7) { transition-delay: 0.933s; }

.slider__slide-readmore {
  position: relative;
  font-size: 14px;
  text-transform: lowercase;
  backface-visibility: hidden;
  transform: translateY(-20px);
  cursor: pointer;
  opacity: 0;
  transition: 0.5s;
}
.slider__slide.s--active .slider__slide-readmore {
  transition-delay: 0.65s;
  opacity: 1;
  transform: translateY(0);
}
.slider__slide-readmore:before {
  content: '';
  position: absolute;
  left: -2px;
  top: -3px;
  width: calc(100% + 4px);
  height: calc(100% + 6px);
  background: rgba(255,255,255,0.4);
  transform: scaleX(0.3);
  transform-origin: 0 50%;
  transition: transform 0.3s;
}
.slider__slide-readmore:hover:before {
  transform: scaleX(1);
}

.slider__slide-parts {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.slider__slide-parts:after {
  content: '';
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
}

.slider__slide-part {
  position: relative;
  width: 25%;
  height: 100%;
}
.slider__slide-part-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 0 0;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
}
.slider__slide-part-inner:before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.25s;
  opacity: 0;
}

/* animation per part */
.slider__slide-part:nth-child(1) .slider__slide-part-inner {
  z-index: 3;
  transition-delay: 0.24s;
  transform: translateX(-32.5%);
}
.slider__slide-part:nth-child(1) .slider__slide-part-inner:before {
  left: 0;
  transition-delay: 0.365s;
}
.slider__slide.s--active .slider__slide-part:nth-child(1) .slider__slide-part-inner {
  transition-delay: 0.28s;
  transform: translateX(0);
}
.slider__slide.s--active .slider__slide-part:nth-child(1) .slider__slide-part-inner:before {
  transition-delay: 0.28s;
  opacity: 1;
}

.slider__slide-part:nth-child(2) .slider__slide-part-inner {
  z-index: 2;
  transition-delay: 0.16s;
  transform: translateX(-65%);
}
.slider__slide-part:nth-child(2) .slider__slide-part-inner:before {
  left: -25vw;
  transition-delay: 0.285s;
}
.slider__slide.s--active .slider__slide-part:nth-child(2) .slider__slide-part-inner {
  transition-delay: 0.36s;
  transform: translateX(0);
}
.slider__slide.s--active .slider__slide-part:nth-child(2) .slider__slide-part-inner:before {
  transition-delay: 0.36s;
  opacity: 1;
}

.slider__slide-part:nth-child(3) .slider__slide-part-inner {
  z-index: 1;
  transition-delay: 0.08s;
  transform: translateX(-97.5%);
}
.slider__slide-part:nth-child(3) .slider__slide-part-inner:before {
  left: -50vw;
  transition-delay: 0.205s;
}
.slider__slide.s--active .slider__slide-part:nth-child(3) .slider__slide-part-inner {
  transition-delay: 0.44s;
  transform: translateX(0);
}
.slider__slide.s--active .slider__slide-part:nth-child(3) .slider__slide-part-inner:before {
  transition-delay: 0.44s;
  opacity: 1;
}

.slider__slide-part:nth-child(4) .slider__slide-part-inner {
  z-index: 0;
  transition-delay: 0s;
  transform: translateX(-130%);
}
.slider__slide-part:nth-child(4) .slider__slide-part-inner:before {
  left: -75vw;
  transition-delay: 0.125s;
}
.slider__slide.s--active .slider__slide-part:nth-child(4) .slider__slide-part-inner {
  transition-delay: 0.52s;
  transform: translateX(0);
}
.slider__slide.s--active .slider__slide-part:nth-child(4) .slider__slide-part-inner:before {
  transition-delay: 0.52s;
  opacity: 1;
}

.slider__control {
  z-index: 100;
  position: absolute;
  left: 50px;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.5s 1s;
  cursor: pointer;
}
.slider__control:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #000;
  border-bottom: none;
  border-right: none;
  transform: translateX(5px) rotate(-45deg);
}
.slider__control--right {
  left: auto;
  right: 50px;
  transform: translateX(50px);
}
.slider__control--right:before {
  transform: translateX(-5px) rotate(135deg);
}
.slider.s--ready .slider__control {
  transform: translateX(0);
  opacity: 1;
}

.icon-link {
  z-index: 100;
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 32px;
}
.icon-link img {
  width: 100%;
  vertical-align: top;
}
.icon-link--twitter {
  left: auto;
  right: 5px;
}

/* ===============================
  Footer
==================================*/
/* Footer */
.site-footer {
  background: linear-gradient(145deg, #1f2937, #111827);
  color: #e5e7eb;
  padding: 50px 20px;
  margin-top: 60px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.site-footer h4, 
.site-footer h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 1rem;
  margin: 6px 0;
  line-height: 1.6;
}

.site-footer .muted {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Contact List */
.contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.contacts li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contacts a {
  text-decoration: none;
  color: #f3f4f6;
  transition: color 0.3s;
}

.contacts a:hover {
  color: #60a5fa;
}

/* Links */
.site-footer .links {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer .links a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.site-footer .links a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Floating Background Shapes */
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  z-index: 0;
  animation: floatFooter 7s ease-in-out infinite alternate;
}

.site-footer::before {
  width: 140px; height: 140px;
  top: -40px; left: -50px;
}

.site-footer::after {
  width: 200px; height: 200px;
  bottom: -60px; right: -40px;
}

/* Animations */
@keyframes floatFooter {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(15px); }
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 35px 15px;
  }
  .site-footer h4, .site-footer h5 {
    font-size: 1.1rem;
  }
  .site-footer p, 
  .contacts li,
  .site-footer .links a {
    font-size: 0.9rem;
  }
}
/* ===============================
    Brand (Logo + Text)
==================================*/
.brand {
  display: flex;
  align-items: center;
  gap: 10px;                 /* spacing between logo and text */
  text-decoration: none;     /* remove underline */
}

.brand-logo {
  height: 40px;              /* logo height */
  width: auto;               /* keep aspect ratio */
  border-radius: 6px;        /* optional: rounded edges */
}

.brand-text {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
}

/* ===============================
   Responsive Navigation & Layout
==================================*/
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    right: 10px;
    top: 60px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 10px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 260px;
    flex-direction: column;
  }
  .nav.show { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .form .row { grid-template-columns: 1fr; }

  /* Slider adjustments */
  .slider {
    height: 45vh;
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .slider {
    height: 35vh;
    max-height: 300px;
  }
  .prev, .next {
    font-size: 16px;
    padding: 8px 12px;
  }
}
