/* =======================
   Variables (merged)
======================= */
:root {
  --blue: #0A2A43;
  --yellow: #FEE440;
  --bg: #ffffff;
  --muted: #6b7280;
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(10,42,67,.12);
  --radius: 18px;
  --max: 1200px;
  --font: 'Poppins', sans-serif;

  /* From second root block (kept for compatibility) */
  --primary-color: #222;
  --secondary-color: #555;
  --muted-color: #888;
  --bg-color: #fff;
  --card-bg: #f9f9f9;
  --accent-color: #ff6b6b;
  --border-radius: 14px;
  --shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
  --transition-speed: 0.25s;
  --max-width: 1200px; /* kept for backward references if any */
}

/* =======================
   Reset / Base
======================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: #0b1a2a;
  background: var(--bg);
  line-height: 1.6;
}

/* Basic anchor + image rules */
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }

/* =======================
   Navigation
======================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--blue), #0a2a43f2);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.brand i {
  width: 40px;   /* width of logo */
  height: auto;  /* height of logo */
  display: grid;
  place-items: center; /* center icon/text */
  font-size: 24px; 
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
}

/* small footer brand override */
.foot .brand { color: #fff; }

.menu { display: flex; gap: 18px; }
.menu a {
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
}
.menu a:hover, .menu a.active { background: rgba(255,255,255,.12); }

.cta-nav {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
  border-radius: 60px;
  padding: 10px 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: linear-gradient(135deg, #fb8500, #ffb703);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.cta-nav.admission { background: #28A745; }

.burger { display: none; color: #fff; font-size: 26px; }

/* =======================
   Hero Section
======================= */
.hero {
  position: relative;
  min-height: 65vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/gallary/13.jpg?v=2') center/cover no-repeat;
  filter: brightness(0.5);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 10%, rgba(254,228,64,.15), transparent 50%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 40px 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(32px,5vw,56px);
  margin: 0 0 10px;
}

.hero-content p {
  font-size: clamp(16px,2.2vw,22px);
  opacity: .95;
  margin: 0 0 22px;
}

.hero-content i { font-size: 24px; margin-bottom: 6px; }

/* =======================
   Sections / Layout
======================= */
/* Combined single .section definition (duplicate removed) */
.section { max-width: var(--max); margin: auto; padding: 70px 20px; scroll-margin-top: 90px; }

/* head used in multiple places — unified */
.head { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:26px; }
.head h2 { font-size: clamp(22px,3vw,34px); margin: 0; }
.muted { color: var(--muted); }

/* =======================
   Facilities Grid
   (merged 'facility' styles so both earlier and later uses work)
======================= */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Merged .facility: covers both original card style and values style */
.facility {
  background: var(--card);          /* original used var(--card) */
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* Ensure facility used in values grid gets the intended lighter background and rounded 14px */
.grid.values .facility {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.5rem;
}

/* Hover effect unified (preserves previous hover visuals) */
.facility:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10,42,67,.2);
  background: #eef2ff;
}

.facility i {
  font-size: 2rem;
  color: #10b981;
  flex-shrink: 0;
}

/* If facility icon should be green in values grid, target that specifically */
.grid.values .facility i { color: #10b981; }

.facility h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

/* for values grid override text colors */
.grid.values .facility h3 { color: #111827; }
.grid.values .facility p { color: #4b5563; font-size: 0.95rem; }

/* default facility paragraph */
.facility p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* =======================
   Pricing Cards
======================= */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.plan {
  background: var(--card);
  padding: 25px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan.highlight {
  border: 2px solid var(--yellow);
  background: #fff9e6;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10,42,67,.2);
}

.plan .badge {
  font-weight: 600;
  color: var(--blue);
  display: block;
  margin-bottom: 15px;
}

.plan .price {
  font-size: 2rem;
  margin-bottom: 15px;
}

.plan .features {
  list-style: none;
  margin-bottom: 20px;
}

.plan .features li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.plan .features i {
  color: green;
  margin-right: 8px;
}

.plan .btn {
  text-align: center;
  padding: 10px 20px;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.3s;
}

.plan .btn:hover {
  background: green;
}

/* =======================
   Booking Section
======================= */
.booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-card .qr-code img {
  width: 50%;
  border-radius: var(--radius);
  margin-top: 15px;
}

.seat-counter {
  background: #f1f6fa;
  border-left: 4px solid var(--yellow);
  padding: 10px 15px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.seat-counter.highlight {
  background: #fff3cd;
  transform: scale(1.05);
}

/* Form */
.form .input {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form .input label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form .input input,
.form .input select,
.form .input textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
}

.form .input.full textarea {
  resize: none;
}

.form .submit {
  width: 100%;
  padding: 12px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  margin-top: 10px;
}

.form .submit:hover {
  background: #ffd600;
}

/* =======================
   Testimonials
======================= */
.testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.testi {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testi .who {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.testi .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
}

.testi p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* =======================
   Responsive
   (combined / deduped)
======================= */
@media(max-width: 768px){
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }

  /* earlier repeated responsive tweak for events/blogs */
  .events-grid, .blogs, .notices-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer { background:#071d30; color:#e5eef6; margin-top:60px; }
.foot { max-width:var(--max); margin:auto; padding:28px 20px; display:grid; grid-template-columns:2fr 1fr 1fr; gap:18px; }
.foot a { color:#e5eef6; }
.foot .social a {
  display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius:10px; background:rgba(255,255,255,.06); margin-right:8px;
}
.copy { border-top:1px solid rgba(255,255,255,.1); text-align:center; padding:14px; color:#b9c6d4; }

/* Floating Buttons (moved from footer) */
.floating-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  z-index: 1000;
}
.whatsapp-btn {
  bottom: 110px;
  right: 25px;
  background: linear-gradient(135deg,#25D366,#128C7E);
}
.whatsapp-btn img { width: 34px; height: 34px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); }

.scroll-btn {
  bottom: 35px;
  right: 25px;
  background: linear-gradient(135deg,#007BFF,#0056b3);
  color: #fff;
  border: none;
  display: none;
}

.floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.5); }

/* single @keyframes float (duplicate removed) */
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* Tooltip styling (glassmorphism) */
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 75px;
  padding: 6px 12px 6px 32px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px 16px;
}
.floating-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.whatsapp-btn::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 24 24"><path d="M20.52 3.48A11.88 11.88 0 0012.01 0C5.38 0 0 5.38 0 12.01c0 2.12.55 4.19 1.59 6.02L0 24l6.14-1.6a11.9 11.9 0 005.87 1.5h.01c6.63 0 12.01-5.38 12.01-12.01 0-3.2-1.25-6.21-3.51-8.41zM12 21.54c-1.86 0-3.68-.5-5.27-1.45l-.38-.23-3.64.95.97-3.55-.25-.37a9.5 9.5 0 01-1.48-5.17c0-5.26 4.28-9.54 9.54-9.54 2.55 0 4.95.99 6.76 2.8a9.5 9.5 0 012.79 6.75c0 5.26-4.28 9.54-9.54 9.54zm5.27-7.07c-.29-.14-1.71-.84-1.97-.94-.26-.1-.45-.14-.64.14-.19.29-.74.94-.91 1.13-.17.19-.34.22-.63.07-.29-.14-1.21-.45-2.31-1.44-.85-.76-1.42-1.7-1.59-1.99-.17-.29-.02-.45.13-.59.13-.13.29-.34.43-.51.14-.17.19-.29.29-.48.1-.19.05-.36-.02-.5-.07-.14-.64-1.54-.88-2.11-.23-.56-.47-.49-.64-.5h-.55c-.19 0-.5.07-.76.36-.26.29-1 1-1 2.44s1.02 2.83 1.16 3.02c.14.19 2 3.06 4.85 4.29.68.29 1.21.46 1.62.59.68.22 1.3.19 1.79.12.55-.08 1.71-.7 1.95-1.38.24-.68.24-1.26.17-1.38-.07-.12-.26-.19-.55-.33z"/></svg>');
}

.scroll-btn::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 24 24"><path d="M4.5 15.5l7.5-7.5 7.5 7.5"/></svg>');
}

/* allow forcing tooltip visible */
.floating-btn.show-tooltip::after { opacity: 1 !important; transform: translateY(-50%) translateX(0) !important; }

/* =======================
   Responsive (combined deduped)
======================= */
@media (max-width:1000px){
  .about { grid-template-columns:1fr; }
  .grid { grid-template-columns:repeat(2,1fr); }
  .pricing { grid-template-columns:1fr; }
  .gallery { grid-template-columns:repeat(2,1fr); }
  .booking { grid-template-columns:1fr; }
  .testis { grid-template-columns:1fr; }
  .contact-wrap { grid-template-columns:1fr; }
  .menu { display: none; }
  .burger { display: block; }
}

/* =======================
   Gallery Section
======================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px; /* chhota gap */
}

.gallery img {
  width: 100%;
  height: 40vh;          /* fix size screen ke hisaab se */
  object-fit: contain;   /* image pura dikhayega, crop nahi hoga */
  background: #000;      /* optional: gap ke jagah background color */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.gallery img:hover { transform: scale(1.05); }

@media (max-width:1000px){
  #gallery .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px){
  #gallery .gallery {
    grid-template-columns: 1fr;
  }
}

/* =======================
   About Hero
======================= */
.about-hero {
  position: relative;
  background: url('assets/he.jpg') center/cover no-repeat;
  padding: 100px 20px 60px;
  text-align: center;
  border-radius: var(--radius);
  color: #fff;
}
.about-hero .overlay {
  background: rgba(0,0,0,0.35);
  padding: 50px;
  border-radius: var(--radius);
}
.about-hero h1 { font-size: 42px; margin-bottom: 12px; }
.about-hero p { font-size: 18px; }

/* =======================
   About Intro
   (single definition — duplicate removed)
======================= */
.about-intro p {
  font-size: 16px;
  color: var(--muted);
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
  line-height: 1.8;
}

/* =======================
   About Page Styling
   (avoided duplicate block; kept unified settings)
======================= */
.profile-wrap {
  padding: 60px 20px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.profile-wrap.founder {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

.profile-wrap.md {
  background: linear-gradient(135deg, #fffdf5, #ffffff);
}

/* Profile Row */
.profile-row {
  display: flex;
  align-items: center;
  gap: 40px; /* thoda aur space */
}

.profile-row.reverse {
  flex-direction: row-reverse;
}

/* Profile Card */
.profile-card {
  background: linear-gradient(135deg, #f9fbff, #ffffff); /* subtle gradient */
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 320px; /* increased width */
  flex-shrink: 0; /* avoid shrinking on flex layout */
  text-align: center;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* Profile Image */
.profile-card img {
  width: 100%;
  height: 320px; /* match box width for square */
  object-fit: cover;
  border-radius: 12px; /* slightly rounded corners */
  border: 4px solid var(--yellow); /* highlight border */
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Profile Copy */
.profile-copy {
  flex: 1;
}

.profile-copy h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.profile-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}

/* Responsive tweaks for profile row (single definition) */
@media (max-width: 1024px) {
  .profile-row, .profile-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .profile-card {
    width: 260px;
  }
  .profile-card img {
    width: 100%;
    height: 260px;
  }
}

/* ===== Mission & Vision Section ===== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mv-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card i {
  font-size: 2.5rem;
  color: #3b82f6; /* Tailwind blue-500 type */
  margin-bottom: 1rem;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== Why Choose Us Section ===== */
.grid.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* facility styles for values grid covered by merged .facility above */

/* =======================
   CTA Box
======================= */
.cta-box {
  background: var(--blue);
  text-align: center;
  color: #fff;
  border-radius: var(--radius);
  padding: 50px 30px;
  margin-top: 40px;
}
.cta-box h2 { margin-bottom: 12px; font-size: 32px; }
.cta-box p { font-size: 18px; }
.cta-box .btn {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
  border-radius: 60px;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 18px;
  transition: all 0.3s ease;
}
.cta-box .btn:hover {
 background: linear-gradient(135deg, #fb8500, #ffb703);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.cta-box .btn i { margin-left: 6px; vertical-align: middle; }

/* ===== Stats Section ===== Our Numbers*/
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 30px;
  text-align: center;
}
.stat {
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}
.stat:hover {
  transform: translateY(-6px);
}
.stat i {
  font-size: 2rem;
  margin-bottom: 12px;
}
.stat strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.stat span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== General Section Styling (unified .section already above) ===== */
/* .section already defined and used consistently */

/* ===== Grid Layouts (events/blogs/notices) ===== */
.events-grid, .blogs, .notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== Card Styling ===== */
.event, .notice-card, .blog-card {
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  position: relative;
}

.event:hover, .notice-card:hover, .blog-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.event::before, .notice-card::before, .blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: var(--accent-color);
}

/* ===== Typography ===== */
.event h3, .notice-card h3, .blog-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.event p, .notice-card p, .blog-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

.notice-card span.muted {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-color);
  margin-top: 6px;
}

/* anchor style: kept the content-oriented link styling (overrides nav .menu a) */
a {
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
a:hover { color: #0056b3; }

/* ===== FAQ Section ===== */
.faqs {
  max-width: 800px;
  margin: 30px auto 0;
}

.faq-item {
  background: var(--card-bg);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.faq-item.active p {
  max-height: 300px;
  opacity: 1;
}

/* ========== Modal Styling ========== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
    transform: scale(0.9);
    animation: popUp 0.35s ease forwards;
}

.modal-icon {
    font-size: 42px;
    color: #e63946;
    display: block;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-body p {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
}

.modal-footer {
    margin-top: 20px;
}

.btn-close {
    padding: 10px 25px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s;
}
.btn-close:hover {
    background: #0056d2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes popUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

 /* Contact Number styling */
        .contact-number .iti {
            width: 100%;
            height: 40px;
            font-size: 14px;
            border-radius: var(--radius);
        }

        .contact-number input[type="tel"] {
            width: 100%;
            height: 40px;
            font-size: 14px;
            padding-left: 50px;  /* space for flag */
            border: 1px solid #ccc;
            border-radius: var(--radius);
            box-sizing: border-box;
        }

        .contact-number .iti__selected-flag {
            border-radius: var(--radius);
        }

        /* Fixed Date styling */
        .fixed-date {
            pointer-events: none;
            background-color: #f0f0f0;
            color: #555;
            border: 1px solid #ccc;
            padding: 8px 10px;
            border-radius: var(--radius);
        }

        /* Seats Full Popup */
        #fullModal {
            display: none;
            position: fixed;
            top:0; left:0;
            width:100%; height:100%;
            background: rgba(0,0,0,0.6);
            justify-content:center;
            align-items:center;
            z-index:9999;
        }
        #fullModal .modal-content {
            background: #fff;
            padding: 30px;
            border-radius: 14px;
            max-width: 400px;
            width: 90%;
            text-align:center;
        }
        #fullModal .modal-content h2 { margin-bottom:15px; }
        #fullModal .modal-content button {
            margin-top:15px;
            padding:10px 20px;
            border:none;
            background:#007bff;
            color:#fff;
            border-radius:8px;
            cursor:pointer;
        }

        /* Highlight animation for seat counter */
        #remaining-seats.highlight {
            animation: highlightSeats 1s ease;
            color: red;
            font-weight: bold;
        }

        @keyframes highlightSeats {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

/* ===== Contact us ===== */

/* Banner Image */
.contact-banner { position: relative; width: 100%; overflow: hidden; }
.contact-banner img { width: 100%; height: 50%; display: block; }
.contact-banner::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,123,255,0.15); }

/* Contact Info Boxes */
.contact-info { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin-top: 60px; padding: 0 20px; }
.info-box { background: #ffffffee; backdrop-filter: blur(12px); padding: 25px; border-radius: 14px; flex: 1 1 250px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: all 0.4s ease; cursor: pointer; animation: float 3s ease-in-out infinite; }
.info-box:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.info-box .icon { font-size: 32px; margin-bottom: 10px; }
.info-box h3 { margin: 10px 0 5px; color: #007BFF; }
.info-box p { margin: 0; font-size: 15px; color: #000; }
.info-box p a { color: #000; text-decoration: none; transition: color 0.3s ease; }
.info-box p a:hover { color: #007BFF; }

/* Form & Map Section */
.contact-section { display: flex; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 40px auto; padding: 20px; }
.contact-form-container { display: flex; flex-wrap: wrap; gap: 40px; width: 100%; }

/* Contact Form */
.contact-form { flex: 1 1 500px; justify-content: center; align-items: center; background: #ffffffee; backdrop-filter: blur(12px); padding: 30px; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: flex; flex-direction: column; transition: all 0.4s ease; position: relative; }
.contact-form h2 { margin-bottom: 20px; color: #007BFF; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 15px; border-radius: 10px; border: 1px solid #ccc; font-size: 14px; box-sizing: border-box; transition: all 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #007BFF; box-shadow: 0 0 10px rgba(0,123,255,0.3); outline: none; }
.contact-form textarea { height: 180px; resize: none; }

/* Button */
.contact-form button { position: relative; overflow: hidden; padding: 14px 28px; border: none; background: #007BFF; color: #fff; border-radius: 10px; font-size: 16px; cursor: pointer; transition: all 0.3s ease; max-width: 180px; }
.contact-form button::after { content: ""; position: absolute; width: 100%; height: 100%; left: 0; top: 0; background: rgba(255,255,255,0.2); transform: scale(0); border-radius: 50%; transition: transform 0.5s ease, opacity 0.5s ease; opacity: 0; }
.contact-form button:active::after { transform: scale(2.5); opacity: 1; transition: 0s; }
.contact-form button:hover { background: #0056b3; transform: scale(1.05); }

/* Map */
.contact-map { flex: 1 1 500px; border-radius: 14px; overflow: hidden; min-height: 500px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: all 0.4s ease; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* single float keyframes already defined above; reuse for info-box animation */

/* Success Modal */
#successModal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9999; justify-content:center; align-items:center; }
#successModal div { background:#fff; border-radius:15px; padding:40px; text-align:center; max-width:450px; width:90%; box-shadow:0 12px 28px rgba(0,0,0,0.25); transform:scale(0); transition: transform 0.5s cubic-bezier(0.68,-0.55,0.27,1.55); }
#successModal h2 { color:#007BFF; margin-bottom:15px; display:flex; align-items:center; justify-content:center; gap:10px; font-size:24px; }
#successModal h2::before { content: '✔'; color:green; font-size:28px; animation: bounce 0.6s ease; }
#successModal p { font-size:16px; color:#333; }
#successModal button { margin-top:25px; padding:12px 28px; background:#007BFF; color:#fff; border:none; border-radius:10px; font-size:15px; cursor:pointer; transition:all 0.3s ease; }
#successModal button:hover { background:#0056b3; transform:scale(1.05); }

/* single bounce keyframes (duplicate removed) */
@keyframes bounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);} }
