:root {
  --bg-dark: #050816;
  --bg-elevated: #0b1020;
  --bg-soft: #10172a;
  --accent: #ff5c7a;
  --accent-soft: rgba(255, 92, 122, 0.14);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --nav-height: 72px;
  --fs-sm: 0.85rem;
  --fs-base: 0.95rem;
  --fs-lg: 1.1rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2.3rem;
}

/* Global Reset & Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  color: var(--text-main);
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
}

/* Layout Helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #111827 0, #020617 70%);
}

.section-header {
  text-align: left;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 540px;
}

/* Header & Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.75));
  background-color: #16a34a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 13px;
  background: radial-gradient(circle at 20% 0, #f97316 0, #ef4444 35%, #ec4899 70%);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Nav */

.site-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-link.active {
  background: var(--accent-soft);
  color: var(--text-main);
}

.nav-cta {
  border: 1px solid rgba(248, 250, 252, 0.3);
}

/* Mobile Nav Toggle */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-bottom: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}
  .hero-slider {
  width: 100%;
  aspect-ratio: 18 / 9;     /* EXACT requirement */
  min-height: 600px;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain; /* 👈 KEY FIX (no cropping) */

  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 4rem 2rem;
}

.hero-copy h1 {
  font-size: var(--fs-xxl);
  margin: 0.4rem 0 0.75rem;
  line-height: 1.18;
}

.hero-text {
  color: var(--text-muted);
  max-width: 520px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e5e7eb;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.3rem 0 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-meta .meta-label {
  display: block;
  font-weight: 600;
  color: var(--text-main);
}

.hero-panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 340px;
  background-image:
    linear-gradient(145deg, rgba(15,23,42,0.75), rgba(2,6,23,0.75)),
    url("images/LOGO.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}



.card-label {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0;
}

.card-title {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.3rem;
}

.card-text {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.card-list {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* Buttons & Links */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: var(--fs-sm);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
/* ===== Glassmorphism Poster Card ===== */

.poster-glass {
  position: relative;
  width: 100%;
  max-width: 420px;;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background-image: url("images/Holi3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.poster-glass .card-label {
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: #ff4f91 !important; /* bright pink */
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}
.poster-glass .card-title,
.poster-glass .card-text,
.poster-glass .card-list li {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0,0,0,0.65);
}
.poster-glass .btn.fullwidth {
  background: #ff2d6d !important;
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(0,0,0,0.55);
  box-shadow: 0 0 18px rgba(255,45,109,0.6);
}

.poster-glass .btn.fullwidth:hover {
  background: #e60059 !important;
}



/* Dark + glass overlay */
.poster-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 6, 23, 0.45),
    rgba(2, 6, 23, 0.20),
    rgba(2, 6, 23, 0.05)
    );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}


/* Card content */
.poster-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Improve text contrast */
.poster-glass .card-title {
  font-size: 1.4rem;
}

.poster-glass .card-text,
.poster-glass .card-list {
  font-size: 0.85rem;
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #0b1020;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(236, 72, 153, 0.6);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn.small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn.large {
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

.btn.fullwidth {
  width: 100%;
}

.link-arrow {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
}

.link-arrow:hover {
  text-decoration: underline;
}

/* Cards & Grid */

.grid {
  display: grid;
  gap: 1.4rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-image-placeholder {
  border-radius: 18px;
  margin: -0.2rem -0.2rem 1rem;
  padding: 3rem 1rem;
  background: radial-gradient(circle at 15% 0, #f97316 0, #ec4899 28%, #6366f1 60%, #020617 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image-placeholder span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f9fafb;
}

.card-body {
  padding-top: 0.1rem;
}

/* Tags & Meta */

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-list li {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.meta-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* card*/
.poster-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4; /* Poster look */
  border-radius: 20px;
  overflow: hidden;

  background-image: url("images/Holi4.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Dark overlay for readability */
.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.95),
    rgba(2,6,23,0.6),
    rgba(2,6,23,0.2)
  );
  z-index: 1;
}

.card-overlay {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
}

/* Section Footer */

.section-footer {
  margin-top: 1.8rem;
}

/* Page Hero */
.logo-img{
  border-radius: 55px;
    border: 1.5px solid grey;
}
.page-hero {
  padding: 2.5rem 0 1.75rem;
}

.page-hero h1 {
  font-size: 1.9rem;
  margin: 0.5rem 0 0.7rem;
}

.page-hero .hero-text {
  max-width: 620px;
}

/* Layout grids */

.grid.two-col {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
}

/* Lists */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.checklist li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.55rem;
  color: var(--accent);
  transform: translateY(0.45rem);
}

/* Contact CTA */

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.98), rgba(8, 47, 73, 0.95));
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

/* Contact Page */

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.5);
  background: #020617;
}

.contact-info {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

.contact-links li {
  margin-bottom: 0.4rem;
}

.contact-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-links a i {
  margin-right: 0.35rem;
}

.contact-links a:hover {
  text-decoration: underline;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 2.4rem 0 1.4rem;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.footer-text {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-col a:hover {
  color: var(--text-main);
}

.social-link i {
  margin-right: 0.4rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.6);
  z-index: 50;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.whatsapp-float i {
  color: #e5e7eb;
  font-size: 1.4rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(22, 163, 74, 0.75);
  background: #16a34a;
}

/* Responsive */

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    inset: var(--nav-height) 0 auto;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 1120px;
    padding: 0 1.25rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid.two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-cta {
    padding: 1.4rem 1.3rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 1.2rem;
    right: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .hero {
    padding: 3.2rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 2.6rem;
  }
}


/* ===== Added Dec Fixes ===== */
:root{ --gold-accent:#d4af37; }

@media (max-width:768px){
  .site-nav{ position:static !important; }
  .hero{ padding-top:120px !important; }
  .hero h1{ font-size:1.9rem !important; line-height:1.25; }
  .hero-actions{ flex-direction:column; }
}


/* ===== MOBILE FIX PACK (FINAL) ===== */

/* 1. Mobile Nav Overlay */
@media (max-width: 768px) {
  .site-nav {
    position: fixed !important;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.96);
    padding: 1.2rem 1.5rem;
    height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem !important;
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  /* Ensure header stays above menu */
  .site-header {
    z-index: 1000;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
  }
}

/* 2. Prevent content shifting under nav */
@media (max-width: 768px) {
  main {
    position: relative;
    z-index: 1;
  }
}

/* 3. Hero Fix – mobile scaling */
@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: unset;
    min-height: 460px;
    background-size: cover !important;
    background-position: center !important;
  }

  .hero-copy h1 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
    word-break: break-word;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn.primary {
    width: 100%;
    text-align: center;
  }
}

/* 4. Stack hero meta */
@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* 5. Poster scaling */
@media (max-width: 480px) {
  .poster-glass {
    max-width: 100%;
    min-height: 300px;
  }
  .poster-overlay {
    padding: 1rem;
  }
  .poster-glass .card-title {
    font-size: 1.15rem;
  }
}

/* 6. Prevent ugly wrapping in menu */
@media (max-width: 480px) {
  .nav-link {
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* 7. WhatsApp button safe placement */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 0.9rem;
    right: 0.9rem;
  }
}

/* ===== Mobile Slider Enhancement ===== */
@media (max-width: 768px) {
  .hero-slider {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 480px;
  }
}
@media (max-width: 480px) {
  .hero-slider {
    min-height: 420px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    background-image:
      linear-gradient(rgba(2,6,23,0.78), rgba(2,6,23,0.78)),
      inherit;
  }
}


.spinner {
  width:14px;
  height:14px;
  border:2px solid rgba(255,255,255,0.3);
  border-top:2px solid #fff;
  border-radius:50%;
  display:inline-block;
  margin-right:8px;
  animation:spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}