:root{
      --brand:#d32f2f;
      --brand-dark:#b71c1c;
      --ink:#1f1f1f;
      --muted:#60636a;
      --bg:#f9f9fb;
      --card:#ffffff;
      --radius:18px;
      --shadow:0 6px 24px rgba(16,24,40,.06);
    }
    html{scroll-behavior:smooth}
    body{
      font-family:'Noto Sans Gujarati', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color:var(--ink);
      background:var(--bg);
      line-height:1.65;
    }

   /* 🔹 Navbar Base */
.custom-navbar {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease-in-out;
  padding: 0.7rem 1rem;
  z-index: 9999;
}

/* On Scroll Shrink */
.custom-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 0.4rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Brand */
.navbar-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  transition: all 0.4s ease;
}
.navbar-logo:hover {
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 0 10px rgba(211,47,47,0.3);
}
.brand-text {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 1.05rem;
}

/* Nav Links */
.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  margin: 0 .6rem;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px; left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand);
  transition: 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--brand) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Social Icons */
.social-icon {
  color: var(--brand);
  font-size: 1.2rem;
  margin-left: 14px;
  transition: all 0.3s ease;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-icon:hover {
  color: #fff;
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 15px rgba(211,47,47,0.5);
}
.facebook:hover { background: #1877f2; }
.instagram:hover { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.whatsapp:hover { background: #25D366; }

/* Dropdown fade */
.fade-menu.collapse.show {
  animation: fadeInDown 0.4s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .navbar-logo { width: 48px; height: 48px; }
  .brand-text { font-size: 0.9rem; }
  .fade-menu {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
  .nav-link {
    display: block;
    padding: 0.6rem 0;
  }
}
    /* HERO slider */
    .hero-buttons .btn {
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

/* 🔴 Primary Button */
.btn-hero {
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  color: #fff;
  box-shadow: 0 4px 18px rgba(211,47,47,0.4);
  border: none;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #ff1744, #b71c1c);
  box-shadow: 0 8px 28px rgba(211,47,47,0.6);
  color: #fff;
}

/* ⚪ Outline Button */
.btn-outline-hero {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* ✨ Subtle Floating Animation */
.hero-buttons {
  animation: floatBtns 4s ease-in-out infinite;
}
@keyframes floatBtns {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
    .hero { height: 100vh; overflow: hidden; position: relative; color: #fff; }
    .hero-slide { height: 100vh; width: 100%; background-size: cover; background-position: center; filter: brightness(0.6); }
    .hero-content { z-index: 10; }
    .text-shadow { text-shadow: 0 4px 16px rgba(0,0,0,0.5); }
    .carousel-item { transition: opacity 1s ease-in-out; }
    .carousel-fade .carousel-item { opacity: 0; transition: opacity 1.2s ease-in-out; }
    .carousel-fade .carousel-item.active { opacity: 1; }

    /* About Section Enhancements */
    .about-image { border-radius: 20px; overflow: hidden; position: relative; height: 100%; min-height: 360px; }
    .about-image img { transition: transform 1.5s ease; }
    .about-image:hover img { transform: scale(1.08); }
    .about-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%); transition: 0.5s ease; }
    .about-image:hover .about-overlay { background: linear-gradient(180deg, rgba(211,47,47,0.3) 0%, rgba(0,0,0,0.6) 100%); }
    .about-badge { position: absolute; bottom: 16px; left: 16px; background: #d32f2f; color: #fff; font-weight: 700; padding: 8px 16px; border-radius: 12px; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
    .icon-circle { width: 54px; height: 54px; background: rgba(211,47,47,0.1); color: #d32f2f; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.4rem; }

    /* Cards / utilities */
    .cardx{ background:var(--card); border:none; border-radius:var(--radius); box-shadow:var(--shadow); }
    .icon-pill{ width:48px; height:48px; display:grid; place-items:center; border-radius:12px; background:rgba(211,47,47,.08); color:var(--brand); }
    .muted{ color:var(--muted) }

    /* Leaders legacy avatar (kept for compatibility) */
    .leader-avatar{ width:140px; height:140px; object-fit:cover; border-radius:50%; border:3px solid var(--brand); box-shadow:0 8px 20px rgba(211,47,47,.18); }

    /* Old footer (kept minimal, overridden by modern-footer later) */
    .site-footer{ background:#111; color:#e9e9e9; padding:48px 0 16px; }
    .site-footer a{ color:#eee; text-decoration:none }
    .site-footer a:hover{ color:#fff }
    .subtle{ color:#bbb; font-size:.95rem }

    /* Back to top (legacy) */
    .back-to-top{ position:fixed; right:18px; bottom:18px; z-index:9999; opacity:0; visibility:hidden; transition:all .25s ease; }
    .back-to-top.show{ opacity:1; visibility:visible }

    /* Responsive tweaks */
    @media (max-width: 991px){
      .nav-link{ margin:.25rem .4rem }
      .hero{ background-attachment:scroll }
    }

    /* Vision Section */
    .vision-section { background: linear-gradient(180deg, #fff, #fff8f8); position: relative; overflow: hidden; }
    .vision-section::before { content: ""; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; background: rgba(211,47,47,0.08); border-radius: 50%; z-index: 0; }
    .vision-card { transition: all 0.4s ease; background: #fff; position: relative; z-index: 1; border-radius: 20px; }
    .vision-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(211,47,47,0.18); }
    .vision-icon { width: 70px; height: 70px; margin: 0 auto; border-radius: 50%; background: rgba(211,47,47,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; color: var(--brand); transition: all 0.3s ease; }
    .vision-card:hover .vision-icon { background: var(--brand); color: #fff; box-shadow: 0 0 20px rgba(211,47,47,0.4); }

    /* Issues Section */
    .issues-section { background: linear-gradient(180deg,#fff,#fff5f5); position: relative; overflow: hidden; }
    .issues-section::before { content:""; position:absolute; bottom:-60px; left:-60px; width:200px; height:200px; background:rgba(211,47,47,0.08); border-radius:50%; }
    .issue-card { transition: all 0.35s ease; border-radius: 20px; background:#fff; position:relative; overflow:hidden; }
    .issue-card:hover { transform: translateY(-10px); box-shadow:0 10px 25px rgba(211,47,47,0.2); }
    .issue-icon { width:72px; height:72px; margin:0 auto; border-radius:50%; background:rgba(211,47,47,0.1); color:var(--brand); display:flex; align-items:center; justify-content:center; font-size:1.9rem; transition:all 0.3s ease; }
    .issue-card:hover .issue-icon { background:var(--brand); color:#fff; box-shadow:0 0 20px rgba(211,47,47,0.4); transform:rotate(10deg) scale(1.1); }

    /* Alternate Leader Section */
    .leaders-alt-section { background: linear-gradient(180deg,#fff,#fff7f7); }
    .leader-alt-card { background: #fff; border-radius: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 40px 30px; margin-bottom: 50px; transition: all 0.4s ease; }
    .leader-alt-card:hover { transform: translateY(-8px); box-shadow: 0 10px 28px rgba(211,47,47,0.2); }
    .leader-alt-photo { width: 100%; max-width: 300px; height: auto; border-radius: 16px; border: 5px solid rgba(211,47,47,0.3); transition: transform 0.4s ease, border-color 0.4s ease; }
    .leader-alt-card:hover .leader-alt-photo { transform: scale(1.05); border-color: var(--brand); }
    .leader-alt-content h3 { font-weight: 700; }
    .leader-alt-content p.lead { font-size: 1.05rem; color: #555; }
    @media (max-width: 768px) {
      .leader-alt-card { text-align: center; padding: 30px 20px; }
      .leader-alt-photo { max-width: 220px; margin-bottom: 1rem; }
    }

    /* JOIN Section */
    .join-section { background: linear-gradient(180deg, #fff8f8 0%, #fff 100%); }
    .join-card { background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(211,47,47,0.15); transition: all 0.4s ease; border-top: 5px solid var(--brand); }
    .join-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(211,47,47,0.25); }
    .join-card .form-control { border-radius: 12px; border: 2px solid #f2dada; transition: all 0.3s ease; padding: 0.8rem 1rem; font-size: 1.05rem; }
    .join-card .form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(211,47,47,0.1); }
    .btn-whatsapp { background-color: #25D366; color: #fff; border-radius: 50px; box-shadow: 0 8px 20px rgba(37,211,102,0.3); font-weight: 700; transition: all 0.3s ease; }
    .btn-whatsapp:hover { background-color: #1ebe5d; transform: scale(1.05); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
    [data-aos] { transition-property: transform, opacity; }

    /* Contact Section */
    .contact-section { background: linear-gradient(180deg, #fff, #fff5f5); padding-bottom: 80px; }
    .contact-card { background: #fff; border-radius: 18px; box-shadow: 0 8px 24px rgba(0,0,0,0.07); transition: all 0.4s ease; border-top: 4px solid var(--brand); }
    .contact-card:hover { transform: translateY(-8px); box-shadow: 0 10px 28px rgba(211,47,47,0.25); }
    .social-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; color: #fff; transition: all 0.3s ease; }
    .social-btn.fb { background: #1877f2; }
    .social-btn.ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
    .social-btn.wa { background: #25D366; }
    .social-btn.yt { background: #FF0000; }
    .social-btn:hover { transform: scale(1.1); box-shadow: 0 0 16px rgba(0,0,0,0.2); }

    /* Modern Footer (animated red gradient) */
    .modern-footer {
      background: linear-gradient(135deg, #b71c1c, #d32f2f, #e53935);
      background-size: 200% 200%;
      animation: footerWave 6s ease-in-out infinite;
      padding: 40px 0;
      color: #fff;
      position: relative;
      box-shadow: 0 -5px 15px rgba(211,47,47,0.4);
    }
    @keyframes footerWave { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
    .modern-footer p { margin-bottom: 0.4rem; font-size: 1rem; }
    .text-light-50 { color: rgba(255, 255, 255, 0.85); }

    /* Back To Top modern */
    .back-to-top-modern {
      position: fixed; right: 22px; bottom: 25px; z-index: 999;
      width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: #fff;
      background: linear-gradient(135deg, #e53935, #c62828);
      box-shadow: 0 8px 20px rgba(211,47,47,0.45);
      opacity: 0; visibility: hidden; transition: all 0.4s ease;
      border: 2px solid #fff !important;
    }
    .back-to-top-modern.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top-modern:hover { transform: translateY(-6px); background: linear-gradient(135deg, #f44336, #b71c1c); box-shadow: 0 10px 28px rgba(211,47,47,0.6); }
    .back-to-top-modern i { animation: floatPulse 2s ease-in-out infinite; color: #fff; margin-top: 4px;}
    @keyframes floatPulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

    /* ===================================================== */
    /* ✅ Spacing Fix Start: uniform section paddings & gaps */
    /* ===================================================== */
    section.section,
    .section,
    .leaders-alt-section,
    .join-section,
    .contact-section,
    .vision-section,
    .issues-section {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    @media (max-width: 768px){
      section.section,
      .section,
      .leaders-alt-section,
      .join-section,
      .contact-section,
      .vision-section,
      .issues-section {
        padding-top: 50px;
        padding-bottom: 50px;
      }
    }
    /* Title & subtitle spacing fine-tune */
    .section-title { margin-bottom: 0.3rem; font-weight: 800; }
    .section-hr { width: 90px; height: 4px; background: var(--brand); border-radius: 12px; margin: 8px auto 20px; }
    .row.g-4 { --bs-gutter-y: 2rem; --bs-gutter-x: 2rem; }
    /* Mobile readability */
    @media (max-width: 991px){
      .hero-content h1 { font-size: 1.8rem; line-height: 1.4; }
      .hero-content p { font-size: 1rem; }
      .navbar-brand span { font-size: 0.95rem; }
      .about-image { min-height: 260px; }
    }
    /* Form label / input spacing */
    .join-card .form-label{ margin-bottom: .4rem; }
    .join-card .form-control{ margin-bottom: .5rem; }
    /* Footer transition with previous section */
    .modern-footer { margin-top: -10px; }
    /* Buttons tiny top margin so pairs align better */
    .btn-brand, .btn-outline-danger, .btn-whatsapp { margin-top: 8px; }
    /* =================================================== */
    /* ✅ Spacing Fix End                                   */
    /* =================================================== */



     @media (max-width: 576px) {
    #joinModal .modal-dialog {
      margin: 0.75rem;
    }
    #joinModal .modal-body {
      padding: 1.25rem !important;
    }
    #joinModal .form-control-lg {
      font-size: 1rem;
      padding: 0.65rem 0.9rem;
    }
    #joinModal .btn-lg {
      font-size: 1rem;
      padding: 0.65rem 1rem;
    }

      .hero .d-flex.gap-3 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }

  .hero .btn {
    width: 80%;
    max-width: 280px;
    font-size: 1.05rem;
    padding: 0.8rem 1rem;
    border-radius: 50px;
  }
  }


  /* ✅ FULLY MOBILE-FRIENDLY MODAL FIX */
@media (max-width: 768px) {
  #joinModal .modal-dialog {
    width: 95%;
    margin: 1rem auto;
    max-width: none;
  }

  /* Make content scrollable if too tall */
  #joinModal .modal-content {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
  }

  /* Adjust padding and font for small screens */
  #joinModal .modal-body {
    padding: 1.25rem !important;
  }

  #joinModal .modal-header {
    padding: 1rem;
  }

  #joinModal h5.modal-title {
    font-size: 1rem;
    line-height: 1.4;
  }

  #joinModal .form-control-lg {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  #joinModal .btn-lg {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
  }

  /* Add scroll bounce support for iPhone */
  body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}
/* ✅ Modal z-index fix for header overlap */
.navbar {
  z-index: 1020; /* Bootstrap default */
}

.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}


.team-card {
  transition: all 0.5s ease;
  border-radius: 20px;
  background: #fff;
}
.team-card img {
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}
.team-card:hover img {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(211,47,47,0.25);
}
.team-info {
  background: #fff;
}
.team-card:hover .team-info h5 {
  color: #b71c1c;
  text-shadow: 0 0 5px rgba(211,47,47,0.25);
}





.about-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.about-wrapper img {
  transition: transform 1.2s ease;
}
.about-wrapper:hover img {
  transform: scale(1.06);
}
.about-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(211,47,47,0.4) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.about-wrapper:hover .about-glow {
  opacity: 1;
}
.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(90deg, #b71c1c, #d32f2f);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}
.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(211,47,47,0.15);
  border-top-color: #b71c1c;
}
@media (max-width:768px){
  #stats h1{ font-size:2.4rem; }
  .stats-card{ margin-bottom:1rem; }
}

  /* subtle hover for cards */
  #vote-safety .card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(211,47,47,.18); }
  /* mobile tweaks */
  @media (max-width: 768px){
    #vote-safety h2{ font-size:1.6rem; }
  }




  .leader-alt-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(211,47,47,0.15);
}
.social-icons a, .d-flex.align-items-center.gap-3.ms-2 a {
  text-decoration: none;
}
.d-flex.align-items-center.gap-3.ms-2 a:hover {
  transform: scale(1.25);
  filter: brightness(1.3);
}
.btn-danger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(211,47,47,0.3);
}
@media (max-width:768px) {
  .d-flex.flex-wrap.align-items-center.gap-3.mt-4 {
    justify-content: center;
  }
}





.modern-footer {
  background: #fff;
  border-top: 3px solid #d32f2f;
  color: #222;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}

/* Social Icons */
.footer-social a.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
}

.footer-social a.social-link:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 4px 12px rgba(211,47,47,0.25);
}

/* Icon Colors */
.fb i { color: #1877f2; }
.ig i { color: #E1306C; }
.wa i { color: #25D366; }
.yt i { color: #FF0000; }

@media (max-width: 768px) {
  .footer-social {
    gap: 1.3rem;
  }
}








    :root {
      --primary: #d32f2f;
      --secondary: #fff5f5;
      --text-dark: #222;
      --shadow: rgba(211,47,47,0.25);
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #fff, var(--secondary));
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1 {
      text-align: center;
      color: var(--primary);
      margin: 40px 0 20px;
      font-size: 2.5rem;
    }

    .slider {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll 40s linear infinite;
    }

    .slider-container {
      overflow: hidden;
      width: 100%;
      padding: 30px 0;
      background: #fff;
    }

    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .card {
      flex: 0 0 300px;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 8px 24px var(--shadow);
      overflow: hidden;
      border: 1px solid #f7d3d3;
      transition: transform .4s ease, box-shadow .4s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 12px 36px rgba(211,47,47,0.4);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 4px solid var(--primary);
    }

    .card-body {
      padding: 15px;
      text-align: center;
    }

    .card-body h3 {
      color: var(--primary);
      margin: 10px 0;
    }

    .card-body p {
      color: #666;
      font-size: 0.9rem;
    }

    .btn {
      background: linear-gradient(90deg, var(--primary), #ff6666);
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 10px 24px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px var(--shadow);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 100;
    }

    .modal[open] { display: flex; }

    .modal-content {
      background: #fff;
      border-radius: 18px;
      max-width: 90%;
      width: 800px;
      position: relative;
      box-shadow: 0 0 30px rgba(0,0,0,0.4);
      animation: pop .4s ease;
      overflow: hidden;
    }

    @keyframes pop {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .modal-main-image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-bottom: 3px solid var(--primary);
    }

    .thumbs {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      padding: 10px;
      background: var(--secondary);
    }

    .thumbs img {
      width: 100px;
      height: 80px;
      border-radius: 10px;
      cursor: pointer;
      opacity: 0.7;
      border: 2px solid transparent;
      transition: all .3s ease;
    }

    .thumbs img:hover, .thumbs img.active {
      opacity: 1;
      border-color: var(--primary);
      transform: scale(1.05);
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 22px;
      cursor: pointer;
      transition: transform 0.3s ease;
      z-index: 10;
    }

    .close-btn:hover {
      transform: rotate(90deg) scale(1.1);
    }