:root {
  --maroon: #7A1F2B;
  --maroon-dark: #5a151f;
  --gold: #D4AF37;
  --text-dark: #1f1f1f;
  --white: #ffffff;
  --bg-light: #faf5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* ---------- HEADER / NAVBAR ---------- */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(122, 31, 43, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Brand / Logo */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 999px;
  background: var(--white);
  padding: 4px;
}

.brand span {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

/* Nav Menu Desktop */

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu li a:hover {
  color: var(--gold);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* CTA Button */

.btn-primary {
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), #f5d66b);
  color: var(--maroon);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  
}
.btn-primary1 {
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), #f5d66b);
  color: var(--maroon);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  
}




.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffe18a, var(--gold));
}

/* ---------- MOBILE MENU BUTTON ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- RESPONSIVE ---------- */


@media (max-width: 900px) {
  .navbar {
    height: 64px;
  }

  /* mobile menu hidden by default */
  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(160deg, var(--maroon), var(--maroon-dark));
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    list-style: none;
    display: none;
    /* 👈 pehle se hi band */
    z-index: 1000;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 10px 4px;
    font-size: 1rem;
  }

  /* Desktop CTA hide on mobile */
  .btn-primary {
    display: none;
  }

  /* Mobile hamburger show */
  .nav-toggle {
    display: flex;
  }

  /* Jab navbar par .open class lagegi tab menu dikhega */
  .navbar.open .nav-menu {
    display: flex;
  }

  /* Mobile CTA inside menu */
  .btn-primary-mobile {
    margin-top: 10px;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), #f5d66b);
    color: var(--maroon);
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: block;
  }

  /* Hamburger animation */
  .navbar.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}




/* ---------- HERO SECTION ---------- */

.hero {
  padding: 90px 20px 100px;
  background: radial-gradient(circle at top left, #ffffff 0, #ffecef 35%, #f9f1f5 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.hero-text {
  flex: 1 1 330px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #1e1e1e;
  letter-spacing: 0.3px;
}

.hero-text p {
  font-size: 1rem;
  color: #555;
  max-width: 460px;
}



/* Search Card */

.search-card {
  flex: 1 1 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 24px 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(122, 31, 43, 0.12);
}

.search-card h3 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
}

.search-row {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 0.78rem;
  color: #777;
}

.field select {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 8px 10px;
  font-size: 0.9rem;
  outline: none;
  background: #fafafa;
}

.field select:focus {
  border-color: var(--maroon);
  background: #fff;
}

/* Search Button */

.search-btn {
  margin-top: 6px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  opacity: 0.96;
}

/* ---------- RESPONSIVE HERO ---------- */

@media (max-width: 900px) {
  .hero {
    padding: 72px 16px 80px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .search-row {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }
}




/* ---------- FEATURED VENUES (NEW) ---------- */

.featured {
  padding: 48px 20px 80px;
  background: #faf5f7;
}

.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.featured-header {
  margin-bottom: 28px;
}

.featured-header h2 {
  font-size: 1.7rem;
  color: #1f1f1f;
}

.featured-header p {
  font-size: 0.95rem;
  color: #656565;
  margin-top: 4px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Card */

.venue-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(122, 31, 43, 0.06);
  display: flex;
  flex-direction: column;
}

/* Image area (placeholder) */

.venue-image {
  height: 150px;
  background: radial-gradient(circle at top, #ffe2ec 0, #f4c6d2 35%, #e4aab9 100%);
  position: relative;
}

/* Chip */

.venue-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* Content */

.venue-content {
  padding: 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.venue-content h3 {
  font-size: 1rem;
  color: #1f1f1f;
}

.venue-location {
  font-size: 0.86rem;
  color: #777;
}

.venue-meta {
  font-size: 0.85rem;
  color: #555;
  margin-top: 2px;
}

/* Actions */

.venue-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.venue-btn {
  flex: 1;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.venue-btn.primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.venue-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.venue-btn.ghost {
  background: #ffffff;
  color: var(--maroon);
  border: 1px solid rgba(122, 31, 43, 0.25);
}

.venue-btn.ghost:hover {
  background: #faf5f7;
}

/* Responsive */

@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured {
    padding: 40px 16px 70px;
  }
}

@media (max-width: 600px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}




/* ---------- FEATURED VENUES SLIDER ---------- */

.slider-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Track */

.venue-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  gap: 20px;
  padding-bottom: 6px;
}

/* Scrollbar hide (optional) */
.venue-slider::-webkit-scrollbar {
  display: none;
}

.venue-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Cards inside slider */

.venue-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(122, 31, 43, 0.06);
  display: flex;
  flex-direction: column;
  flex: 0 0 32%;
  /* 3 cards per view approx */
  min-width: 280px;
}

/* Image area */

.venue-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Yaha apne real images ke path daal dena */
.img-tivoli {
  background-image: url("/image/tivoli-israna.jpg.jpeg");
}

.img-heritage {
  background-image: url("/image/Heritage\ Village\ Resort\ &\ Spa\,\ Manesar.webp");
}

.img-ramada {
  background-image: url("/image/Ramada\ by\ Wyndham\ Ghaziabad\ –\ Vasundhara\ \(Elegance\ Hall\).webp");
}

.img-golden-apple {
  background-image: url("/image/Home-Welcome-to-left-side-1.webp");
}

.img-country-inn {
  background-image: url("/image/Country\ Inn\ &\ Suites\ by\ Radisson.jpg");
}

.img-radisson {
  background-image: url("/image/Radisson\ Blu\ Hotel\,\ Faridabad.jpg");
}
.img-seven-seas{
  background-image: url(/image/sea.jfif);
}

/* Top tag */

.venue-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* Content same as pehle */

.venue-content {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Slider arrows */

.slider-btn {
  border: none;
  background: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Responsive */

@media (max-width: 900px) {
  .venue-card {
    flex: 0 0 60%;
    /* 1.5 cards visible */
  }
}

@media (max-width: 600px) {
  .slider-shell {
    gap: 8px;
  }

  .venue-card {
    flex: 0 0 90%;
    /* 1 card center */
  }
}




.venue-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(122, 31, 43, 0.06);
  display: flex;
  flex-direction: column;
  flex: 0 0 32%;
  min-width: 280px;

  /* NEW */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  border-color: rgba(122, 31, 43, 0.16);
}


.venue-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  /* NEW */
}

/* subtle dark gradient overlay for text readability */
.venue-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

/* zoom effect container */
.venue-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* But hum direct .venue-image pe hi background laga rahe hain, 
   isliye zoom effect card hover par: */

.venue-card:hover .venue-image {
  background-size: 108%;
}

.venue-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}


.venue-btn {
  flex: 1;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.venue-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.venue-btn.ghost:hover {
  background: #faf5f7;
  border-color: rgba(122, 31, 43, 0.4);
}





/* ---------- HOW IT WORKS + CITIES ---------- */
.how-and-cities {
  padding: 56px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbf1f3 100%);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* HOW BOX */
.how-box h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.muted {
  color: #6e6e6e;
  font-size: 0.95rem;
}

.steps {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(30, 30, 30, 0.06);
  border: 1px solid rgba(122, 31, 43, 0.04);
  transition: transform .18s ease, box-shadow .18s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 30, 30, 0.08);
}

.step .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, #fff, #ffecef);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(122, 31, 43, 0.06);
}

/* Step text */
.step-content h4 {
  margin: 0;
  font-size: 1rem;
  color: #222;
}

.step-content p {
  margin: 4px 0 0 0;
  font-size: 0.92rem;
  color: #6b6b6b;
}

/* CITIES BOX */
.cities-box {
  background: linear-gradient(180deg, #ffffff, #fff6f7);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(122, 31, 43, 0.04);
}

.cities-box h3 {
  margin: 0 0 6px 0;
  color: #7A1F2B;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip {
  background: #fff;
  border: 1px solid rgba(122, 31, 43, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: var(--maroon);
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
}

.chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(122, 31, 43, 0.06);
}

.chip.active {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 12px 28px rgba(122, 31, 43, 0.14);
}

/* City mini cards */
.city-cards {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-card {
  background: linear-gradient(180deg, #fff, #fff6f7);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(122, 31, 43, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.city-card h4 {
  margin: 0;
  font-size: 0.98rem;
  color: #222;
}

.city-card p {
  margin: 6px 0 0 0;
  color: #6b6b6b;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .how-inner {
    grid-template-columns: 1fr;
  }

  .cities-box {
    order: 2;
  }

  .how-box {
    order: 1;
  }
}




/* ---------- TRUST / TESTIMONIALS / NEWSLETTER ---------- */
.trust-section {
  padding: 56px 20px;
  background: linear-gradient(180deg, #fff6f6 0%, #ffffff 100%);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* WHY CHOOSE */
.why-box h2 {
  margin: 0 0 6px 0;
  font-size: 1.6rem;
  color: #1f1f1f;
}

.features {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(122, 31, 43, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.f-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #ffecef);
  box-shadow: 0 6px 14px rgba(122, 31, 43, 0.05);
}

.feature h4 {
  margin: 0;
  font-size: 0.98rem;
}

.feature p {
  margin: 6px 0 0;
  color: #666;
  font-size: 0.9rem;
}

/* TESTIMONIALS & NEWSLETTER */
.test-cta-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials {
  background: linear-gradient(180deg, #fff, #fff6f7);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(122, 31, 43, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.testimonials h3 {
  margin: 0 0 8px 0;
  color: var(--maroon);
}

.test-slider {
  position: relative;
  min-height: 110px;
  overflow: hidden;
}

.test-item {
  display: none;
}

.test-item.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.quote {
  font-size: 0.96rem;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.45;
}

.who {
  font-size: 0.9rem;
  color: #666;
}

/* controls */
.test-controls {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.test-controls button {
  border: none;
  background: #fff;
  color: var(--maroon);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(180deg, #fff, #fff6f7);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(122, 31, 43, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.newsletter h4 {
  margin: 0 0 6px 0;
}

.news-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.news-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(122, 31, 43, 0.08);
  outline: none;
  font-size: 0.95rem;
}

.news-form input:focus {
  box-shadow: 0 8px 18px rgba(122, 31, 43, 0.06);
  border-color: var(--maroon);
}

/* small devices */
@media (max-width: 980px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }

  .news-form {
    flex-direction: column;
  }

  .news-form input,
  .news-form button {
    width: 100%;
  }
}


/* ---------- FINAL CTA BAND ---------- */
.final-cta {
  padding: 34px 20px;
  background: radial-gradient(circle at top left, #ffe7ef 0, #f7cfdc 32%, #f7e9ef 100%);
  border-top: 1px solid rgba(122, 31, 43, 0.12);
}

.final-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.final-text h2 {
  margin: 0 0 4px 0;
  font-size: 1.5rem;
  color: #1f1f1f;
}

.final-text p {
  margin: 0;
  color: #5d5d5d;
  font-size: 0.96rem;
}

.final-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.final-btn {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  background: #ffffff;
  color: var(--maroon);
  border: 1px solid rgba(122, 31, 43, 0.25);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.secondary-btn:hover {
  background: #fff8fb;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 700px) {
  .final-cta-inner {
    align-items: flex-start;
  }

  .final-actions {
    width: 100%;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #120714;
  color: #f6e6f6;
  padding: 32px 20px 18px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 12px auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 22px;
}

/* logo + text */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.02rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #d2bfd5;
}

/* columns */
.footer-col h4 {
  margin: 0 0 8px 0;
  font-size: 0.98rem;
  color: #ffe3ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-col a {
  color: #f6e6f6;
  text-decoration: none;
  opacity: 0.86;
  transition: opacity .15s ease;
}

.footer-col a:hover {
  opacity: 1;
}

/* contact + socials */
.contact-list li {
  color: #d9c7dd;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

/* bottom bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #cbb5d0;
}

.footer-small-links a {
  color: #e4d1f0;
  text-decoration: none;
}

/* responsive footer */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}



/* ---------- FIND YOUR JOB POPUP ---------- */

.job-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.job-popup {
  background: #ffffff;
  width: 92%;
  max-width: 420px;
  border-radius: 20px;
  padding: 22px 22px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: popupIn 0.35s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  color: #7A1F2B;
}

.job-popup h2 {
  margin: 0 0 6px 0;
  font-size: 1.5rem;
  color: #1f1f1f;
}

.popup-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.popup-field label {
  font-size: 0.78rem;
  color: #777;
}

.popup-field input,
.popup-field select {
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(122, 31, 43, 0.15);
  font-size: 0.9rem;
  outline: none;
}

.popup-field input:focus,
.popup-field select:focus {
  border-color: #7A1F2B;
  box-shadow: 0 8px 20px rgba(122, 31, 43, 0.12);
}

.popup-btn {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, #7A1F2B, #5a151f);
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.popup-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #777;
  text-align: center;
}

/* Mobile */
@media (max-width: 480px) {
  .job-popup {
    padding: 18px;
  }
}



/* ===== SPOTLIGHT ===== */
.spotlight-section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: 0 auto 18px;
}

.spotlight-inner h2 {
  margin: 0 0 6px;
}

.spotlight-track {
  display: flex;
  gap: 20px;
  justify-content: center;      /* cards center me aa jayenge */
  flex-wrap: wrap;              /* responsive – need par next line */
  overflow: visible;            /* side me cut nahi hoga */
}


.spot-card {
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.spot-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.spot-body {
  padding: 10px 12px;
}

.spot-meta {
  color: #666;
  font-size: 0.92rem;
  margin-top: 6px;
}

/* spot controls */
.spot-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.spot-controls button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: var(--maroon);
}

/* ===== DEAL ===== */
.deal-section {
  max-width: 1100px;
  margin: 18px auto;
  background: linear-gradient(90deg, #fff6f8, #fff);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.deal-left h3 {
  margin: 0;
}

.deal-title {
  font-weight: 700;
  margin-top: 6px;
}

.deal-timer {
  font-size: 1.1rem;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(122, 31, 43, 0.08);
  display: inline-block;
  margin-bottom: 6px;
}

#dealBook {
  border-radius: 999px;
  padding: 10px 14px;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 24px 20px;
  max-width: 1100px;
  margin: 0 auto 18px;
}

.services-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.svc-card {
  background:#fff;
  padding:14px 14px 16px;
  border-radius:16px;
  width:230px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  text-align:center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow:0 26px 60px rgba(0,0,0,0.16);
}

.svc-logo {
  width:48px;
  height:48px;
  border-radius:18px;
  background:#fff5f7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin:0 auto 10px;
}

.svc-btn {
  margin-top:10px;
  border:none;
  border-radius:999px;
  padding:7px 18px;
  font-size:0.86rem;
  font-weight:600;
  background:linear-gradient(135deg,#7A1F2B,#5a151f);
  color:#fff;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
  transition:transform .15s ease, box-shadow .15s ease;
}
.svc-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,0.22);
}

.svc-name {
  font-weight: 700;
  margin-bottom: 6px;
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 1100px;
  margin: 18px auto;
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.faq-a {
  padding: 0 0 12px 0;
  color: #666;
  display: none;
}

/* ===== TESTIMONIAL STRIP ===== */
.testi-strip {
  background: linear-gradient(90deg, #fff, #fff6f7);
  padding: 10px 12px;
  overflow: hidden;
  border-radius: 10px;
  margin: 18px 20px;
}

.testi-track {
  display: flex;
  gap: 40px;
  animation: slideTesti 18s linear infinite;
  align-items: center;
}

.testi {
  white-space: nowrap;
  color: #7a1f2b;
  font-weight: 600;
}

@keyframes slideTesti {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #7A1F2B, #5a151f);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 9999;
}

/* small responsiveness */
@media (max-width:900px) {
  .spotlight-track {
    overflow-x: auto;
  }

  .services-grid {
    justify-content: center;
  }

  .deal-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-track {
    animation: none;
    overflow: auto;
  }
}





    /* ========== HERO ========== */
    .banquet-hero {
      padding: 88px 20px 40px;
      position: relative;
    }

    .banquet-hero::before {
      content: "";
      position: absolute;
      inset: -80px -10% auto -10%;
      height: 70%;
      background: radial-gradient(circle at top, rgba(255,210,225,0.8), transparent 50%);
      z-index: 0;
      opacity: 0.9;
    }

    .banquet-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 26px;
      align-items: center;
    }

    .banquet-hero h1 {
      margin: 0 0 10px 0;
      font-size: 2.1rem;
      color: #1f1f1f;
    }

    .banquet-hero p {
      margin: 0 0 14px 0;
      color: #555;
      max-width: 540px;
      font-size: 0.96rem;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      margin-bottom: 10px;
    }
    .hero-chip span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #26c281;
    }

    .hero-side-card {
      background: rgba(255,255,255,0.95);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: 0 22px 50px rgba(0,0,0,0.14);
      border: 1px solid rgba(122,31,43,0.1);
    }
    .hero-side-card h3 {
      margin: 0 0 6px;
      font-size: 1.1rem;
    }
    .hero-stats {
      display: flex;
      gap: 14px;
      margin-top: 10px;
      font-size: 0.86rem;
    }
    .hero-stat {
      flex: 1;
      padding: 8px 10px;
      border-radius: 12px;
      background: #fff6f8;
    }
    .hero-stat strong {
      display: block;
      font-size: 1rem;
    }

    /* ========== QUICK CITY CHIPS + FILTERS ========== */
    .banquet-filters-wrap {
      max-width: 1100px;
      margin: 12px auto 0;
      padding: 0 20px;
    }

    .city-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .city-chip {
      padding: 6px 11px;
      border-radius: 999px;
      border: 1px solid rgba(122,31,43,0.16);
      background: #fff;
      font-size: 0.82rem;
      cursor: pointer;
      color: #7A1F2B;
      font-weight: 500;
      transition: background .15s ease, color .15s ease, transform .15s ease;
    }

    .city-chip:hover {
      background: #fff4f6;
      transform: translateY(-2px);
    }

    .city-chip.active {
      background: linear-gradient(135deg,#7A1F2B,#5a151f);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    }

    .banquet-filters {
      margin-top: 4px;
      padding: 14px 16px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .banquet-filters span.label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #7A1F2B;
      margin-right: 6px;
    }

    .banquet-filters .filter-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 0.82rem;
    }

    .banquet-filters select {
      min-width: 160px;
      border-radius: 10px;
      border: 1px solid #ddd;
      padding: 7px 10px;
      font-size: 0.9rem;
      outline: none;
      background: #fafafa;
    }

    .banquet-filters select:focus {
      border-color: #7A1F2B;
      background: #fff;
      box-shadow: 0 8px 20px rgba(122,31,43,0.14);
    }

    .banquet-filters .filter-btn {
      margin-left: auto;
      padding: 9px 16px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #7A1F2B, #5a151f);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0,0,0,0.16);
      transition: transform .15s ease, box-shadow .15s ease;
    }

    .banquet-filters .filter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    }

    /* ========== BANQUET LIST ========== */
    .banquet-section {
      max-width: 1100px;
      margin: 28px auto 60px;
      padding: 0 20px 0;
    }

    .banquet-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .banquet-section-header h2 {
      margin: 0;
      font-size: 1.4rem;
    }

    .banquet-count {
      font-size: 0.9rem;
      color: #777;
    }

    .banquet-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .banquet-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.08);
      border: 1px solid rgba(122,31,43,0.08);
      display: flex;
      flex-direction: column;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .banquet-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 26px 60px rgba(0,0,0,0.16);
      border-color: rgba(122,31,43,0.18);
    }

    .banquet-img {
      height: 150px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: background-size .5s ease;
      background-size: 105%;
    }

    .banquet-card:hover .banquet-img {
      background-size: 120%;
    }

    .banquet-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    }

    .banquet-tag {
      position: absolute;
      left: 14px;
      bottom: 14px;
      background: rgba(255,255,255,0.18);
      color: #fff;
      font-size: 0.75rem;
      padding: 4px 12px;
      border-radius: 999px;
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.4);
      z-index: 1;
      font-weight: 600;
    }

    .banquet-body {
      padding: 14px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .banquet-body h3 {
      margin: 0;
      font-size: 1rem;
      color: #1f1f1f;
    }

    .banquet-location {
      font-size: 0.86rem;
      color: #777;
    }

    .banquet-meta {
      font-size: 0.86rem;
      color: #555;
      margin-top: 2px;
    }

    .banquet-rating {
      margin-top: 4px;
      font-size: 0.82rem;
      color: #f5a623;
    }
    .banquet-rating span {
      color: #444;
      margin-left: 4px;
    }

    .banquet-tags {
      margin-top: 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .banquet-pill {
      font-size: 0.78rem;
      padding: 4px 8px;
      border-radius: 999px;
      background: #fff5f7;
      color: #7A1F2B;
    }

    .banquet-footer {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .banquet-btn {
      flex: 1;
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 0.85rem;
      border: none;
      cursor: pointer;
      font-weight: 600;
    }

    .banquet-btn.primary {
      background: linear-gradient(135deg, #7A1F2B, #5a151f);
      color: #fff;
      box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    }

    .banquet-btn.ghost {
      background: #fff;
      color: #7A1F2B;
      border: 1px solid rgba(122,31,43,0.25);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .banquet-hero-inner {
        grid-template-columns: 1fr;
      }
      .banquet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .banquet-hero {
        padding: 76px 16px 28px;
      }
      .banquet-grid {
        grid-template-columns: 1fr;
      }
      .banquet-filters {
        flex-direction: column;
        align-items: stretch;
      }
      .banquet-filters .filter-btn {
        margin-left: 0;
        width: 100%;
      }
      .city-chips {
        margin-bottom: 8px;
      }
    }




    /* ==============================
   STUDENTS LISTING
============================== */

.rest-section {
  padding: 50px 20px;
  background: #faf7f7;
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-head p {
  color: #666;
  font-size: 15px;
}

/* Grid layout */
.rest-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* Card */
.student-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Image */
.student-card .rest-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Verified tag */
.student-card .rest-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #28a745;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Card body */
.student-card .rest-body {
  padding: 15px 16px 18px;
}

.student-card h3 {
  font-size: 18px;
  margin-bottom: 3px;
}

.rest-location {
  font-size: 14px;
  color: #777;
}

.rest-meta {
  font-size: 14px;
  margin: 6px 0;
  color: #444;
}

/* Rating */
.rest-rating {
  font-size: 14px;
  color: #f4b400;
  margin-bottom: 10px;
}

/* Footer buttons */
.rest-footer {
  display: flex;
  gap: 10px;
}

.rest-btn {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.rest-btn.primary {
  background: linear-gradient(135deg, #8b0000, #c70039);
  color: #fff;
}

.rest-btn.primary:hover {
  opacity: .9;
}

.rest-btn.ghost {
  border: 1px solid #ccc;
  color: #333;
  background: #fff;
}

.rest-btn.ghost:hover {
  background: #f3f3f3;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {
  .rest-section {
    padding: 35px 15px;
  }

  .rest-footer {
    flex-direction: column;
  }
}




body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
}

.top-header {
    background: #7b1fa2;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.page-title {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
}

.page-title h2 {
    margin-bottom: 5px;
    color: #7b1fa2;
}

.institute-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 40px;
}

.institute-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.institute-card:hover {
    transform: translateY(-6px);
}

.institute-card h3 {
    color: #512da8;
    margin-bottom: 10px;
}

.institute-card p {
    font-size: 14px;
    margin: 6px 0;
}

.institute-card button {
    margin-top: 10px;
    padding: 10px 15px;
    background: #7b1fa2;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.institute-card button:hover {
    background: #5e1680;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: #ccc;
    font-size: 13px;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f4f8;
}

.form-section {
    max-width: 520px;
    background: #fff;
    padding: 30px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-section h2 {
    text-align: center;
    color: #7b1fa2;
    margin-bottom: 5px;
}

.form-section p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.request-form label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.request-form button {
    width: 100%;
    padding: 12px;
    background: #7b1fa2;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.request-form button:hover {
    background: #5e1680;
}
