/* ============================================
   HOME PAGE — home.css
   ============================================ */

/* ===== HERO ===== */
.hero-section {
  min-height: 93vh; background: var(--deep-dark);
  position: relative; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; padding-bottom: 140px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.17;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hs { position: absolute; border-radius: 50%; }
.hs-1 { width: 520px; height: 520px; background: var(--blue); opacity: 0.07; top: -160px; right: -120px; animation: shapeFloat 9s ease-in-out infinite; }
.hs-2 { width: 320px; height: 320px; background: var(--green); opacity: 0.07; bottom: -100px; left: -80px; animation: shapeFloat 11s ease-in-out infinite reverse; }
@keyframes shapeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-22px)} }

.hero-content { position: relative; z-index: 2; color: white; max-width: 720px; padding: 80px 0 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 26px;
  animation: fadeDown 0.8s ease both;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #7ee8a2; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%,100%{box-shadow:0 0 0 3px rgba(126,232,162,.3)} 50%{box-shadow:0 0 0 6px rgba(126,232,162,.1)} }
.badge-green { color: #7ee8a2; font-weight: 600; }

.hero-content h1 { font-size: clamp(38px, 5.2vw, 68px); font-weight: 900; line-height: 1.12; margin-bottom: 22px; animation: fadeUp 0.8s ease 0.2s both; }
.h1-blue { color: #7dd3fc; }
.h1-green { color: #86efac; }
.hero-content p { font-size: 18px; line-height: 1.85; color: rgba(255,255,255,0.82); margin-bottom: 38px; max-width: 620px; animation: fadeUp 0.8s ease 0.4s both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.6s both; }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }

/* HERO STATS BAR */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.13);
  padding: 22px 0; z-index: 2;
}
.hero-stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.hstat { display: flex; align-items: center; gap: 13px; color: white; }
.hstat-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 14px rgba(26,159,212,0.4); }
.hstat-icon.green { background: var(--green); box-shadow: 0 4px 14px rgba(91,173,47,0.35); }
.hstat-num { font-size: 27px; font-weight: 900; color: #7dd3fc; line-height: 1; }
.hstat-num.green { color: #86efac; }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ===== ABOUT ===== */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: 24px; height: 460px; object-fit: cover; box-shadow: var(--shadow); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue); color: white;
  padding: 20px 26px; border-radius: 18px; text-align: center;
  box-shadow: 0 12px 35px rgba(26,159,212,0.35);
}
.about-img-badge .years { font-size: 44px; font-weight: 900; line-height: 1; }
.about-img-badge .years-lbl { font-size: 12px; font-weight: 500; opacity: 0.85; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: rgba(26,159,212,0.08); border: 1px solid rgba(26,159,212,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.about-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

/* ===== CAUSES ===== */
.causes-section { background: var(--light-bg); }
.causes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cause-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.cause-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: transparent; }
.cause-card-img-wrap { overflow: hidden; }
.cause-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.cause-card:hover .cause-card-img { transform: scale(1.06); }
.cause-card-body { padding: 26px; }
.cause-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; margin-bottom: 14px; }
.cause-icon.blue { background: var(--blue); box-shadow: 0 6px 18px rgba(26,159,212,0.3); }
.cause-icon.green { background: var(--green); box-shadow: 0 6px 18px rgba(91,173,47,0.3); }
.cause-icon.dark-blue { background: var(--dark-blue); }
.cause-card-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.cause-card-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.cause-progress-wrap { margin-bottom: 16px; }
.cause-progress-info { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; }
.cpct-blue { color: var(--blue); }
.cpct-green { color: var(--green); }
.cause-progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.cause-progress-fill { height: 100%; border-radius: 3px; animation: fillBar 2s ease forwards; }
.fill-blue { background: var(--blue); }
.fill-green { background: var(--green); }
@keyframes fillBar { from{width:0} }
.cause-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 13.5px; transition: gap 0.3s; }
.cause-link:hover { gap: 10px; }

/* ===== IMPACT ===== */
.impact-section { background: var(--deep-dark); position: relative; overflow: hidden; }
.impact-section::before { content: ''; position: absolute; inset: 0; background: url('../images/impact-bg.jpg') center/cover no-repeat; opacity: 0.05; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 1; }
.impact-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px 18px; text-align: center; color: white; transition: var(--transition); }
.impact-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-8px); }
.ic-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px; }
.ic-icon.blue { background: var(--blue); box-shadow: 0 8px 24px rgba(26,159,212,0.4); }
.ic-icon.green { background: var(--green); box-shadow: 0 8px 24px rgba(91,173,47,0.4); }
.ic-num { font-size: 44px; font-weight: 900; color: #7dd3fc; line-height: 1; margin-bottom: 8px; }
.ic-num.green { color: #86efac; }
.ic-label { font-size: 13.5px; color: rgba(255,255,255,0.72); font-weight: 500; }

/* ===== PROGRAMS ===== */
.programs-section { background: white; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { border-radius: var(--radius-lg); padding: 34px 26px; border: 1px solid var(--border); position: relative; overflow: hidden; background: white; transition: var(--transition); }
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.program-card.blue-top::before { background: var(--blue); }
.program-card.green-top::before { background: var(--green); }
.program-card:hover { border-color: transparent; box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.prog-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.prog-icon.blue-bg { background: rgba(26,159,212,0.09); border: 1px solid rgba(26,159,212,0.15); }
.prog-icon.green-bg { background: rgba(91,173,47,0.09); border: 1px solid rgba(91,173,47,0.15); }
.program-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.program-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.prog-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.prog-tag { font-size: 11.5px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.prog-tag.blue { background: rgba(26,159,212,0.09); color: var(--blue); }
.prog-tag.green { background: rgba(91,173,47,0.09); color: var(--dark-green); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--light-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 190px; transition: transform 0.5s; }
.gallery-item:nth-child(1) img { min-height: 390px; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: var(--blue); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-overlay i { font-size: 28px; color: white; }
.gallery-item:hover .gallery-overlay { opacity: 0.55; }

/* ===== VOLUNTEER CTA ===== */
.volunteer-section { background: var(--blue); padding: 78px 0; }
.volunteer-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.volunteer-text h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: white; margin-bottom: 12px; }
.volunteer-text p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 500px; }
.volunteer-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--light-bg); border-radius: var(--radius-lg); padding: 32px 26px; border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.quote-icon { font-size: 50px; color: var(--blue); line-height: 1; margin-bottom: 12px; font-weight: 700; }
.stars { color: #f6ad55; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.author-name { font-size: 14.5px; font-weight: 700; }
.author-role { font-size: 12.5px; color: var(--text-light); }

/* ===== DONATE ===== */
.donate-section { background: var(--light-bg); }
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.donate-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.amount-btn { padding: 13px; border: 2px solid var(--border); border-radius: 12px; background: white; font-size: 17px; font-weight: 700; color: var(--text-dark); cursor: pointer; transition: var(--transition); }
.amount-btn:hover, .amount-btn.active { border-color: var(--blue); background: rgba(26,159,212,0.06); color: var(--blue); }
.donate-form { background: white; border-radius: var(--radius-xl); padding: 42px; box-shadow: var(--shadow); }
.donate-btn-full { width: 100%; padding: 16px; background: var(--blue); color: white; border: none; border-radius: 50px; font-size: 17px; font-weight: 700; cursor: pointer; box-shadow: 0 6px 22px rgba(26,159,212,0.35); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.donate-btn-full:hover { background: var(--dark-blue); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,159,212,0.45); }
.donate-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--text-light); }
.donate-trust i.blue { color: var(--blue); }
.donate-trust i.green { color: var(--green); }

/* ===== CONTACT ===== */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; align-items: start; }
.contact-info-card { background: var(--dark-blue); border-radius: var(--radius-xl); padding: 42px; color: white; }
.contact-info-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); font-size: 14.5px; line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(255,255,255,0.15); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.contact-item h4 { font-size: 12.5px; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 4px; }
.contact-item p { color: white; font-size: 14.5px; font-weight: 600; }
.contact-form-card { background: var(--light-bg); border-radius: var(--radius-xl); padding: 42px; }
.contact-form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 26px; }
.submit-btn { background: var(--green); color: white; padding: 15px 38px; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 6px 20px rgba(91,173,47,0.35); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.submit-btn:hover { background: var(--dark-green); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(91,173,47,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .causes-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 44px; }
}
@media (max-width: 768px) {
  .hero-section { padding-bottom: 200px; }
  .hero-stats-bar { position: relative; padding: 18px 0; }
  .about-grid, .donate-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .causes-grid, .programs-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .volunteer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
}





/* ============================================
   HERO SLIDER — home.css
   ============================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

/* ===== SLIDES ===== */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* BG IMAGE */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7s ease;
}
.slide.active .slide-bg {
  transform: scale(1.07);
}

/* DARK OVERLAY */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 37, 64, 0.82) 0%,
    rgba(10, 37, 64, 0.55) 55%,
    rgba(10, 37, 64, 0.15) 100%
  );
  z-index: 1;
}

/* SLIDE CONTENT */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.slide-content .container {
  width: 100%;
}
.slide-text {
  max-width: 680px;
  color: white;
}

/* Slide Tag */
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.slide-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7ee8a2;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(126,232,162,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(126,232,162,.1); }
}

/* Slide Heading */
.slide-text h1 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.slide-text h1 .blue  { color: #7dd3fc; }
.slide-text h1 .green { color: #86efac; }

/* Slide Para */
.slide-text p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

/* Slide Buttons */
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}

/* Animate in when slide is active */
.slide.active .slide-tag,
.slide.active .slide-text h1,
.slide.active .slide-text p,
.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BOTTOM STATS BAR ===== */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  z-index: 10;
}
.hero-stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hstat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hstat:last-child { border-right: none; }
.hstat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  flex-shrink: 0;
}
.hstat-icon.blue  { background: var(--blue);  box-shadow: 0 4px 14px rgba(26,159,212,0.4); }
.hstat-icon.green { background: var(--green); box-shadow: 0 4px 14px rgba(91,173,47,0.35); }
.hstat-num        { font-size: 24px; font-weight: 900; color: #7dd3fc; line-height: 1; }
.hstat-num.green  { color: #86efac; }
.hstat-lbl        { font-size: 11.5px; color: rgba(255,255,255,0.62); font-weight: 500; }

/* ===== SLIDER CONTROLS ===== */

/* Prev / Next Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Dot Indicators */
.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.sdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.sdot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  bottom: 92px;
  right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}
.slide-counter .current { color: white; font-size: 22px; font-weight: 800; }

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 84px;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.slider-progress-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  transition: width 0s linear;
}
.slider-progress-fill.animating {
  transition: width 5s linear;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-slider { height: 100svh; min-height: 560px; max-height: none; }
  .slide-overlay {
    background: rgba(10, 37, 64, 0.75);
  }
  .slide-text { max-width: 100%; }
  .slide-text h1 { font-size: 30px; }
  .slide-text p  { font-size: 15px; }
  .slider-arrow  { width: 40px; height: 40px; font-size: 14px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .hero-stats-bar { position: relative; }
  .hero-stats-grid { gap: 8px; }
  .hstat { border-right: none; padding: 6px 8px; }
  .slider-dots { bottom: 16px; }
  .slide-counter { display: none; }
  .slider-progress { bottom: 8px; }
}
@media (max-width: 480px) {
  .slide-btns { flex-direction: column; }
  .slide-text h1 { font-size: 26px; }
  .hstat-num { font-size: 20px; }
}
