/* Remove background for birthday videos and set 3 per row */
.birthday-video-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.birthday-video-grid .video-player.no-bg {
  background: none;
  box-shadow: none;
  padding: 0;
}
.birthday-video-grid .video-player.no-bg video {
  max-width: 100%;
  width: 100%;
  height: 320px;
  min-height: 220px;
  border-radius: 8px;
  background: #000;
  box-shadow: none;
}
@media (max-width: 900px) {
  .birthday-video-grid .video-player.no-bg video {
    height: 200px;
    min-height: 120px;
  }
}
/* Vertical video layout for Birthday Event */
.video-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 30px 0 0 0;
}
.video-vertical .video-player {
  width: 100%;
  max-width: 400px;
  background: #181818;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-vertical .video-player video {
  width: 100%;
  max-width: 380px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
  .video-vertical .video-player {
    max-width: 98vw;
    padding: 4px;
  }
  .video-vertical .video-player video {
    max-width: 98vw;
    height: 160px;
  }
}
/* ===== GALLERY PAGE VIDEO GRID ===== */
/* ===== GALLERY PAGE VIDEO GRID (smaller, 2-3 per row) ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 0 0;
}
.video-player {
  background: #181818;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player video {
  /* width: 100%; */
  max-width: 180px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
/* @media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .video-player video {
    height: 90px;
    max-width: 100%;
  }
}
/* Back button style for event details (gallery) */
.back-btn {
  display: block;
  margin: 0 auto 28px auto;
  padding: 10px 36px;
  background: linear-gradient(90deg, #b300ff 0%, #00d9ff 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.back-btn:hover {
  background: linear-gradient(90deg, #00d9ff 0%, #b300ff 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px) scale(1.04);
}
/* ===== Scroll to Top Arrow ===== */
.scroll-to-top-btn {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 999;
  background: linear-gradient(135deg, #fff 60%, #111 100%);
  color: #111;
  border: 2px solid #111;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1.5px 8px rgba(0,0,0,0.12);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, border 0.2s, color 0.2s;
  outline: none;
}
.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #111 80%, #fff 100%);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 2px 12px rgba(0,0,0,0.18);
}

/* ===== Floating Contact Buttons ===== */
.floating-contact-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 35px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-contact-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

.floating-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.34);
  filter: brightness(1.04);
}

.floating-contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-contact-btn.call {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.floating-contact-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.32);
  outline-offset: 3px;
}
/* Navaratri Year Label Styling */
/* Move Navaratri year emoji slightly right for better alignment */
.navaratri-year-emoji {
  margin-left: 18px;
}
.event-card:hover, .branch-card:hover {
  background: #f0f0f0;
}
.collapse-content {
  display: none;
  margin-left: 30px;
  margin-bottom: 10px;
}
.garba-class-desc {
  margin: 18px 0 0 0;
  background: #f9f9f9;
  padding: 14px 18px;
  border-radius: 6px;
}
.join-btn {
  margin-top: 10px;
  padding: 8px 18px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.join-btn:hover {
  background: #d35400;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background: linear-gradient(120deg, #181818 60%, #2d0b3a 100%);
  margin: 7% auto;
  padding: 36px 36px 28px 36px;
  border: none;
  width: 95%;
  max-width: 420px;
  border-radius: 18px;
  position: relative;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #00d9ff;
  text-align: center;
  margin-bottom: 18px;
  font-size: 2rem;
}
.close:hover {
  color: #e74c3c;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  color: #bdbdbd;
  font-size: 1rem;
  margin-bottom: 4px;
}
  /* padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #00d9ff;
  background: #232323;
  color: #fff;
  font-size: 1rem;
  outline: none;
  margin-bottom: 6px;
  transition: border 0.2s;
} */
.modal-content input[type="text"]:focus, .modal-content input[type="email"]:focus, .modal-content input[type="tel"]:focus {
  border: 1.5px solid #b300ff;
}
.modal-content button[type="submit"] {
  margin-top: 10px;
  padding: 10px 0;
  background: linear-gradient(90deg, #00d9ff 0%, #b300ff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s;
}
.modal-content button[type="submit"]:hover {
  background: linear-gradient(90deg, #b300ff 0%, #00d9ff 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

body {
    background: black;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .caption h1 {
        font-size: 30px;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: rgba(192, 192, 192, 0.674);
}

nav ul {
    list-style: none;
    display: flex;
    margin-left: 300px;
}

nav ul li {
    margin-left: 30px;
}

/* nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.3s;
} */

/* nav ul li a:hover {
    color: rgba(192, 192, 192, 0.674);
} */

nav ul li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d9ff, #b300ff);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #00d9ff;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Responsive navbar */
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 65px;
        right: 0;
        background: black;
        width: 200px;
        flex-direction: column;
        display: none;
    }

    nav ul li {
        margin: 15px;
    }

    .menu-toggle {
        display: block;
    }
}
.logo img {
    height: 45px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Round logo */
.logo-box img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid black;
}

/* Text beside logo */
.logo-text h3 {
    font-size: 18px;
    margin: 0;
    line-height: 1.1;
    color: white;
}

.logo-text span {
    font-size: 12px;
    color: white;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-text h3 {
        font-size: 16px;
    }
    .logo-text span {
        font-size: 11px;
    }
}

  /* Removed stray properties outside selector */

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.25);
}

/* ===== LOGIN PAGE ===== */
.booking-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: calc(100vh - 65px);
  margin-top: 65px;
}

.booking-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.booking-section input {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  background: #0a0e27;
  border: 1px solid #1e293b;
  color: #fff;
  border-radius: 5px;
}

.booking-section input::placeholder {
  color: #666;
}

.booking-section input:focus {
  outline: none;
  border-color: #3b82f6;
}

.booking-section button[type="submit"] {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 15px;
}

.booking-section button[type="submit"]:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.booking-section .switch-text {
  text-align: center;
  font-size: 14px;
  color: #9fb7ff;
}

.booking-section .switch-text a {
  color: #3b82f6;
  text-decoration: none;
}

.booking-section .switch-text a:hover {
  text-decoration: underline;
}

/* ===== HOME LINK STYLE (Login Page) ===== */
.home-link {
  display: block;
  margin: 0 0 28px 32px;
  padding: 10px 36px;
  background: linear-gradient(90deg, #b300ff 0%, #ff4ecd 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  left: 0;
  z-index: 10;
  border-color: #5a7fc9;
  background: linear-gradient(135deg, #2a3a48, #0f1928);
  background: linear-gradient(90deg, #ff4ecd 0%, #b300ff 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px) scale(1.04);
  display: block;
  margin: 0 0 28px 32px;
  padding: 10px 36px;
  background: linear-gradient(90deg, #b300ff 0%, #00d9ff 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  left: 0;
  z-index: 10;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(80,140,255,0.3);
}

.review-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.review-stats .stat-box {
  flex: 1 1 220px;
  max-width: 250px;
}

.review-stats .stat-box h2 {
  font-size: 30px;
  text-shadow: 0 0 15px rgba(100,160,255,0.6);
  margin-bottom: 10px;
}

.review-stats .stat-box p {
  color: #cfcfcf;
  font-size: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 60px;
  text-align: center;
  background: #000;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.section-subtitle {
  color: #cfcfcf;
  margin-bottom: 50px;
  font-size: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.review-card {
  border: 1px solid #2a3b52;
  padding: 35px;
  background: rgba(5,5,5,0.9);
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 0 20px rgba(80,140,255,0.3),
    inset 0 0 20px rgba(255,255,255,0.02);
  border-color: #4a6b9e;
}

.review-card .stars {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.review-card p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.reviewer-info {
  border-top: 1px solid #1f2a38;
  padding-top: 15px;
}

.reviewer-name {
  display: block;
  color: #fff;
  font-weight: 500;
  margin-bottom: 5px;
}

.event-type {
  font-size: 12px;
  color: #6b8cc9;
}

/* ===== RATING DISTRIBUTION ===== */
.rating-distribution {
  padding: 80px 60px;
  text-align: center;
}

.rating-distribution h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.rating-bars {
  max-width: 600px;
  margin: auto;
}

.rating-item {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.rating-item label {
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 500;
}

.rating-item .bar {
  height: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f2a38;
}

.rating-item .fill {
  height: 100%;
  background: linear-gradient(90deg, #5a96ff, #3b82f6);
  border-radius: 12px;
  transition: 0.3s;
}

.rating-item span {
  color: #6b8cc9;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .review-stats {
    padding: 40px 20px;
  }

  .testimonials {
    padding: 60px 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .rating-distribution {
    padding: 60px 20px;
  }

  .rating-item {
    grid-template-columns: 60px 1fr 60px;
    font-size: 12px;
  }

  .testimonials h2 {
    font-size: 28px;
  }

  .rating-distribution h2 {
    font-size: 28px;
  }
}

/* Mobile view fix */
@media (max-width: 768px) {
    .login-btn {
        display: none;
    }
}

/* slider images */
.hero-slider {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.caption h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.caption p {
  max-width: 700px;
  margin: 15px auto 30px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .caption h1 {
    font-size: 28px;
  }

  .caption p {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* dark overlay (same black feel) */

 .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
   rgba(0,0,0,0.92) 65%,
   rgba(30, 60, 120, 0.55)
  );
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlider 15s infinite;
  z-index: 0;
}

/* hero content stays above */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

/* creating movement crafting memories*/
/* ===== HERO SECTION FIX ===== */

.hero {
  position: relative;
  padding: 100px 20px 80px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.85)
    );
}


.hero1 h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255,255,255,0.35),
    0 0 22px rgba(255,255,255,0.18);
}

.hero1 p {
  max-width: 720px;
  margin: 18px auto 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}


/* .hero .btn,
.hero-btn {
  background: #ffffff;
  color: #000;
  opacity: 1;
} */

/*mobile responsive*/
@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
    margin: 0 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}
 /* <!-- why choose us --> */
.why {
  padding: 80px 60px;
  text-align: center;
  background: #000;
}

.why h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-card {
  background: #050505;
  border: 1px solid #1f1f1f;
  padding: 40px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #fff;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #1b2a3a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  color: #bdbdbd;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero {
    padding: 90px 15px 70px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}

.cta {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0b1b2e, #000 65%);
  display: flex;
  justify-content: center;
}

.cta-box {
  width: 100%;
  max-width: 1100px;
  border: 1px solid #1f2a38;
  padding: 80px 40px;
  text-align: center;
  border-radius: 10px;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.cta-box p {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn.primary {
  background-color: #333;
  border: 1px solid #fff;
  color: #fff;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.25);
}

.cta-btn.outline {
  border: 1px solid #fff;
  color: #fff;
  background-color: #333;
}

.cta-btn.outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
  .cta-box {
    padding: 60px 20px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}
/* //footer */
.footer {
  background: #000;
  padding: 80px 20px 30px;
  border-top: 1px solid #1f2a38;
}

/* ===== Collaborators page styles ===== */

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid #1f2a38;
  padding: 24px;
  text-align: center;
  border-radius: 8px;
}
.stat-box .icon {
  font-size: 30px;
  margin-bottom: 6px;
}
.stat-box h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
.partner-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title { text-align: center; font-size: 28px; margin-bottom: 6px; }
.section-subtitle { text-align: center; color: #cfcfcf; max-width: 900px; margin: 0 auto 18px; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.partner-card {
  background: #050505;
  border: 1px solid #1f1f1f;
  padding: 18px;
  border-radius: 8px;
}
.partner-card .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1b2a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.partner-card h3 { font-size: 16px; margin-bottom: 6px; color: #fff; }
.partner-card p { color: #cfcfcf; font-size: 14px; line-height: 1.6; }

@media (max-width: 768px) {
  .collab-hero { padding: 80px 16px 30px; }
  .stat-box h2 { font-size: 22px; }
  .partner-section { padding: 36px 16px; }
  .partner-card { padding: 14px; }
  .partner-card h3 { font-size: 15px; }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-box h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box li {
  margin-bottom: 8px;
}

.footer-box p,
.footer-box a {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.8;
}

.footer-box a {
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-box a:hover {
  color: #fff;
}

.footer-box .tagline {
  margin-bottom: 12px;
  color: #bfc9d4;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #1f2a38;
  font-size: 13px;
  color: #aaa;
}
/*responsive footer*/
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box {
    margin-bottom: 30px;
  }
}
/*book event page*/
/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.8;
}
/* FORM */
.form-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.booking-form {
  width: 100%;
  max-width: 600px;
  border: 1px solid #1e293b;
  padding: 40px;
  border-radius: 10px;
  background: rgba(0,0,0,0.6);
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* CONTACT CARDS */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.contact-cards .card {
  border: 1px solid #1e293b;
  padding: 30px;
  width: 320px;
  text-align: center;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.02);
  border-radius: 12px;
  transition: 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.contact-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(80,140,255,0.4), 0 0 40px rgba(80,140,255,0.2);
}

.contact-cards .card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #7dd3fc;
}

/* log in page */
.hidden {
  display: none;
}

/* TABS */
.auth-tabs {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 90%;
  max-width: 420px;
  margin: 20px auto;
}

.auth-tabs button {
  width: 160px;
  padding: 12px;
  background: transparent;
  border: 1px solid #1e3a8a;
  color: #9fb7ff;
  flex: 1;
}

.auth-tabs button.active {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {

  /* CENTER HERO TEXT */
  .auth-hero h1 {
    font-size: 28px;
  }

  /* BOOK EVENT FORM */
  .booking-form {
    padding: 20px;
    width: 95%;
  }

  /* BUTTONS */
  .book-btn {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  box-sizing: border-box;
}

/* ===== COMMON BLUE GLOW INPUT (REUSE EVERYWHERE) ===== */
.glow-input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;

  background: rgba(10, 15, 25, 0.9);
  color: rgba(180, 200, 255, 0.9);

  border: 1px solid rgba(80, 140, 255, 0.25);
  border-radius: 8px;
  outline: none;

  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(30, 80, 180, 0.15);

  transition: all 0.3s ease;
}

.glow-input::placeholder {
  color: rgba(180, 200, 255, 0.35);
}

.glow-input:focus {
  border-color: rgba(100, 170, 255, 0.9);
  background: rgba(12, 18, 32, 0.95);

  box-shadow:
    0 0 10px rgba(80, 140, 255, 0.6),
    0 0 25px rgba(40, 120, 255, 0.4),
    inset 0 0 8px rgba(0, 0, 0, 0.5);
}

.switch-text {
  margin-top: 15px;
  font-size: 14px;
  color: #cfcfcf;
}

.switch-text a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.switch-text a:hover {
  text-decoration: underline;
}

.auth-tabs button,
.switch-text a {
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
}

/* ===== SERVICES PAGE ===== */

.services-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #0b1b2e, #000 65%);
}

.location-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(11, 27, 46, 0.95), rgba(0, 0, 0, 0.96) 65%),
    linear-gradient(135deg, rgba(11, 27, 46, 0.55), rgba(0, 0, 0, 0.9));
}

.location-hero h1 {
  font-size: 42px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.24);
}

.location-hero p {
  margin-top: 14px;
  color: #cfcfcf;
  font-size: 16px;
}

.location-section {
  padding: 80px 40px;
  background: #000;
}

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: stretch;
}

.map-card,
.location-info-card,
.location-detail-card {
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.95), rgba(4, 7, 13, 0.98));
  border: 1px solid rgba(80,140,255,0.2);
  border-radius: 18px;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.02);
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #09111b;
}

.location-info-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.location-info-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
}

.location-info-card p {
  margin: 0;
  color: #c7d0da;
  line-height: 1.8;
}

.location-address {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.location-address h3,
.location-actions h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.location-btn.primary {
  color: #04101a;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.24);
}

.location-btn.secondary {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.location-btn:hover {
  transform: translateY(-3px);
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-detail-card {
  padding: 18px;
}

.location-detail-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
}

.location-detail-card p {
  margin: 0;
  color: #bfc9d4;
  line-height: 1.7;
}

.services-hero h1 {
  font-size: 42px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.35);
}

.services-hero p {
  margin-top: 12px;
  color: #cfcfcf;
  font-size: 16px;
}

/* SERVICES GRID */
.services-section {
  padding: 80px 40px;
  background: #000;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 150px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.9), rgba(4, 7, 13, 0.96));
  border: 1px solid rgba(80,140,255,0.25);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.02);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow:
    0 0 20px rgba(80,140,255,0.4),
    0 0 40px rgba(80,140,255,0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.28), rgba(12, 18, 32, 0.96));
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  font-size: 13px;
  color: #cfcfcf;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 28px;
  }

  .location-hero {
    padding: 100px 16px 46px;
  }

  .location-hero h1 {
    font-size: 30px;
  }

  .location-section {
    padding: 56px 18px;
  }

  .location-grid,
  .location-points {
    grid-template-columns: 1fr;
  }

  .location-info-card {
    padding: 22px;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .location-btn {
    width: 100%;
  }

  .services-section {
    padding: 60px 20px;
  }
}

/* ===== OUR PROCESS SECTION ===== */

.process-section {
  padding: 90px 40px;
  background: #000;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 60px;
  text-shadow: 0 0 18px rgba(255,255,255,0.4);
}

/* Container */
.process-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Card */
.process-card {
  border: 1px solid rgba(90,150,255,0.3);
  padding: 40px 25px;
  border-radius: 10px;
  background: rgba(0,0,0,0.9);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 20px rgba(90,150,255,0.4),
    0 0 45px rgba(90,150,255,0.25);
}

/* Circle */
.process-circle {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(circle at top, #1b2a3a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.15);
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #cfcfcf;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .process-section {
    padding: 70px 20px;
  }
}

/* ABOUT HERO */
.about-hero {
  padding: 160px 20px 120px;
  text-align: center;
  background: radial-gradient(circle at left, #0b1b2e, #000 70%);
}

.about-hero h1 {
  font-size: 42px;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.about-hero p {
  margin-top: 10px;
  color: #cfcfcf;
}

/* STORY */
.about-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.story-box {
  max-width: 1000px;
  border: 1px solid #1f2a38;
  padding: 50px;
  background: radial-gradient(circle, #0b1b2e, #000);
}

.story-box h2 {
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.story-box p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* VALUES */
.values-section {
  text-align: center;
}

.values-section h2 {
  margin-bottom: 60px;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.value-card {
  border: 1px solid #1f2a38;
  padding: 50px 30px;
  background: #000;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(80,140,255,0.3);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(80,140,255,0.3);
}

.value-icon {
  font-size: 30px;
  margin-bottom: 20px;
}

/* STATS */
.stats-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0b1b2e, #000 65%);
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.stat-box {
  border: 1px solid #1f2a38;
  padding: 50px;
  text-align: center;
}

.stat-box h3 {
  font-size: 38px;
  text-shadow: 0 0 18px rgba(255,255,255,0.45);
}

.stat-box p {
  color: #cfcfcf;
}

/* MOBILE */
@media(max-width:768px){
  .about-hero h1 { font-size: 30px; }
  .story-box { padding: 30px; }
}

/* ===== GLOW BACKGROUND ===== */
.glow-bg {
  background: radial-gradient(circle at center, #0d1b2a, #000);
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  padding: 60px;
}

.stat-box {
  border: 1px solid #2a3b52;
  text-align: center;
  padding: 35px;
  background: rgba(255,255,255,0.02);
}

.stat-box h2 {
  font-size: 36px;
  text-shadow: 0 0 15px rgba(100,160,255,0.6);
}

/* ===== PARTNERS ===== */
.partners {
  padding: 80px 60px;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-card {
  border: 1px solid #2a3b52;
  padding: 30px;
  background: rgba(255,255,255,0.02);
}

.partner-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1f2a38;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 22px;
}

.tags span {
  display: block;
  margin: 0 0 28px 32px;
  padding: 12px 28px;
  background: #1f2a38;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #1f2a38;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  left: 0;
  z-index: 10;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  background: #263143;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,255,255,0.08);
  transform: translateY(-2px);
  border: 1px solid #2a3b52;
  padding: 30px;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 80px 20px;
}

.btn-primary {
  display: inline-block;
  margin: 0 0 28px 32px;
  padding: 12px 28px;
  background: #1f2a38;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #1f2a38;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  left: 0;
  z-index: 10;
}

  /* background: #263143;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,255,255,0.08);
  transform: translateY(-2px); */

/* Card Slider Styles */
.card-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
}

.card-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 16, 0.08), rgba(5, 9, 16, 0.7) 48%, rgba(5, 9, 16, 0.94)),
    linear-gradient(135deg, rgba(11, 27, 46, 0.18), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.card-slider-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease;
}

.card-slider-slide.active {
  opacity: 1;
  visibility: visible;
}

.card-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.52) saturate(0.95);
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

.service-card:hover .card-slider-slide.active img {
  transform: scale(1.07);
}

.card-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  z-index: 10;
  display: none;
}

.card-slider-nav:hover {
  background: rgba(125, 211, 252, 0.8);
}

.card-slider-nav.prev {
  left: 5px;
  border-radius: 0 3px 3px 0;
}

.card-slider-nav.next {
  right: 5px;
  border-radius: 3px 0 0 3px;
}

.card-slider-dots {
  display: none;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a3947;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-dot.active {
  background: #7dd3fc;
  width: 12px;
  border-radius: 3px;
}

/* Card Content (text) - on top of background */
.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 35px 25px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.08), rgba(7, 11, 19, 0.24) 34%, rgba(7, 11, 19, 0.78) 72%, rgba(7, 11, 19, 0.95));
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #0a0f19;
  border: 1px solid #1f2a38;
  border-radius: 10px;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  color: white;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #1f2a38;
  padding-bottom: 15px;
}

.modal-header h2 {
  font-size: 32px;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.close-btn {
  font-size: 28px;
  font-weight: bold;
  color: #cfcfcf;
  cursor: pointer;
  transition: 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.close-btn:hover {
  color: #fff;
  transform: scale(1.2);
}

.modal-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.modal-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.modal-section p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 10px;
}

.modal-section ul {
  list-style: none;
  padding: 0;
}

.modal-section ul li {
  color: #d0d0d0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.modal-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-weight: bold;
}

.modal-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #1f2a38;
}

.modal-btn {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #1f2a38;
  background: #1f2a38;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.modal-btn:hover {
  background: #2a3947;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.modal-btn.primary {
  background: linear-gradient(135deg, #1f2a38, #2a3947);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-cta {
    flex-direction: column;
  }
}

/* collabrators page */
/* STATS */
.collab-hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: radial-gradient(circle at center, #0b1320, #000);
}

.collab-hero h1 {
    font-size: 42px;
    color: #fff;
    text-shadow: 0 0 15px rgba(160,180,255,0.6);
}

.collab-hero p {
    margin-top: 10px;
    color: #cfd8e3;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 80px;
    background: #000;
}

.stat-box {
    background: #0b1320;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(120,140,200,0.2);
}

.stat-box h2 {
    color: #fff;
    font-size: 32px;
}

.stat-box p {
    color: #cfd8e3;
}
.partner-section {
    padding: 100px 80px;
    background: #000;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #cfd8e3;
    margin-bottom: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-card {
    background: #0b1320;
    padding: 40px;
    border: 1px solid rgba(120,140,200,0.2);
}

.partner-card .circle {
    width: 70px;
    height: 70px;
    background: #1b2a45;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.why-section {
    padding: 100px 80px;
    background: radial-gradient(circle at center, #0b1320, #000);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: #0b1320;
    padding: 40px;
    border: 1px solid rgba(120,140,200,0.2);
}
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: #000;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-light {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    margin-right: 15px;
}

.btn-dark {
    background: #1b2a45;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
}

/* Normalize stats layout and prevent overflow — final override */
.stats-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0 auto; /* Move section down */
  padding: 40px 20px;
  background: transparent;
.stat-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
  border-radius: 8px;
}
.stat-box-link:focus .stat-box,
.stat-box-link:hover .stat-box {
  box-shadow: 0 4px 24px 0 rgba(90,150,255,0.18);
  transform: translateY(-4px) scale(1.03);
  border-color: #5a96ff;
}
.stat-box-link:active .stat-box {
  transform: scale(0.98);
}
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.stat-box {
  padding: 20px;
  min-height: 110px;
  overflow-wrap: break-word;
}
.stat-box h2, .stat-box h3 {
  font-size: 28px;
  margin: 6px 0 8px;
}

@media (max-width: 768px) {
  .stats-section { padding: 28px 14px; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-box { padding: 16px; }
  .stat-box h2, .stat-box h3 { font-size: 22px; }
}

/* Additional mobile tweaks for About & Services pages */
@media (max-width: 768px) {
  .navbar { padding: 12px 18px; }
  nav ul { display: none; position: absolute; top: 60px; right: 8px; background: #000; width: 220px; flex-direction: column; padding: 12px; border: 1px solid rgba(255,255,255,0.04); }
  .menu-toggle { display: block; font-size: 24px; cursor: pointer; }
  .logo-text h3 { font-size: 16px; }
  .about-hero { padding: 90px 12px 60px; }
  .story-box { padding: 20px; }
  .values-grid, .services-grid, .partner-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { min-height: 320px; padding: 0; }
  .card-content { min-height: 320px; padding: 28px 20px; }
  .services-hero { padding: 80px 12px 40px; }
  .stat-box { padding: 20px; }
  .partner-section, .why-section, .cta-section { padding: 40px 14px; }
  .floating-contact-actions { right: 14px; bottom: 18px; gap: 10px; }
  .floating-contact-btn {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .floating-contact-btn span { display: none; }
}

/* Contact form styles */
.contact-container {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.contact-card {
  background: rgba(10,14,27,0.6);
  border: 1px solid rgba(120,140,200,0.06);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.contact-card h2 { margin-bottom: 6px; }
.contact-card p { color: #cfcfcf; margin-bottom: 18px; }
.contact-form { display: grid; gap: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0a0e27;
  border: 1px solid #1e293b;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #00d9ff; box-shadow: 0 6px 18px rgba(0,217,255,0.06); }
.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg,#00d9ff,#b300ff);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(179,0,255,0.12); }

/* Override submit button style only inside contact forms to match other pages */
.contact-form button[type="submit"],
.contact-form .btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.contact-form button[type="submit"]:hover,
.contact-form .btn-primary:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.field-note { font-size: 13px; color: #9fb7ff; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-container { padding: 60px 14px; }
}

/* Modal styles */
.modal { display:none; position:fixed; inset:0; z-index:2000; }
.modal-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.6); }
.modal-box { position:relative; max-width:760px; margin:60px auto; background:linear-gradient(180deg,#070812,#0b0f1a); border-radius:12px; padding:22px; box-shadow:0 18px 60px rgba(0,0,0,0.7); border:1px solid rgba(255,255,255,0.03); }
.modal-close { position:absolute; right:12px; top:12px; background:transparent; border:none; color:#cfcfcf; font-size:18px; cursor:pointer; }
.modal-content h3 { margin-top:2px; margin-bottom:6px; }
.modal-content .section-subtitle { margin-bottom:12px; }
.modal .contact-form input, .modal .contact-form textarea { background:#071026; border:1px solid #17223a; }
.modal .review-card { padding:18px; background:rgba(5,20,30,0.7); border:1px solid rgba(80,140,255,0.06); }

/* make modal-box transparent so contact-card background shows through consistently */
.modal-box { background: transparent; padding: 10px; }

@media (max-width: 720px) {
  .modal-box { margin:30px 12px; }
}

/* Gallery Specific Styles */
.gallery-hero {
    padding: 160px 20px 120px;
    text-align: center;
    background: radial-gradient(circle at left, #0b1b2e, #000 70%);
}

.gallery-hero h1 {
    font-size: 42px;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.gallery-hero p {
    margin-top: 10px;
    color: #cfcfcf;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.gallery-intro p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Event Video Section */
.event-videos-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.video-card {
    background: rgba(31, 42, 56, 0.3);
    border: 1px solid #1f2a38;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.video-info p {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #1f2a38;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Filter Buttons */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #1f2a38;
    color: #cfcfcf;
    padding: 10px 24px;
    margin: 6px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1f2a38;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* CTA Section */
.gallery-cta {
    text-align: center;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.gallery-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.gallery-cta p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1f2a38;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #1f2a38;
    transition: 0.3s;
    font-weight: 500;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 20px 80px;
    }

    .gallery-hero h1 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-intro h2 {
        font-size: 28px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        margin: 4px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-info h3 {
        font-size: 18px;
    }

    .video-info p {
        font-size: 13px;
    }
}
