/* 🌌 GLOBAL BASE STYLES */
body {
  background-color: black;
  font-family: "Times New Roman", Times, serif;
  border: 2px groove blue;
  margin: 2px;
  padding-right: 2px;
  padding-left: 2px;
  font-weight: bold;
}

a {
  color: mintcream;
  text-decoration: none;
}

/* 🌈 HOMEPAGE BUTTON */
.homepage-button {
  width: 100%;
  padding: 10px 0;
}

.homepage-button a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg,#f093fb,#f5576c);
  border: 2px solid #ff4b2b;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.homepage-button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  z-index: 0;
}

.homepage-button a:hover::before {
  left: 0;
}

.homepage-button a:hover {
  box-shadow: 0 12px 25px rgba(255, 75, 43, 0.6);
  transform: translateY(-3px);
}

.homepage-button a span {
  position: relative;
  z-index: 1;
}

/* 💡 MULTI-LIGHT CARD */
.multi-light-card {
  max-width: 100%;
  margin: 30px auto;
  padding: 25px 30px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 2px solid #ff4b2b;
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.multi-light-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 75, 43, 0.5);
}

.multi-light-card .multi-title {
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 700;
}

.multi-light-card .multi-title a {
  color: #ff4b2b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.multi-light-card .multi-title a:hover {
  color: #fff;
}

.multi-light-card .multi-tags {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.5px;
}

/* 🎶 MARQUEE ANIMATION */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 10px 0;
  border-radius: 10px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-once 15s linear forwards;
  font-size: 16px;
  font-weight: bold;
}

.marquee-track span {
  margin: 0 20px;
}

@keyframes scroll-once {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* 🧱 FORUM CONTAINER */
.container {
  max-width: 700px;
  margin: 20px auto;
  padding: 25px;
  background: #2b2b2b;
  border-radius: 12px;
  border: 2px solid #ff6600;
  box-shadow: 0 4px 15px rgba(255,102,0,0.3);
  color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* 🔶 FORUM HIGHLIGHTS */
.highlight {
  padding: 6px 15px;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(255,102,0,0.4);
}

.emoji-title {
  font-size: 16px;
  padding: 5px 12px;
  border-radius: 12px;
  color: #ffcc00;
  border: 1px solid #ffcc00;
}

/* 🗂 SECTIONS */
.section {
  background: #3a3a3a;
  border-radius: 10px;
  border: 1px solid #ff6600;
  padding: 12px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(255,102,0,0.2);
  font-size: 14px;
}

/* 🧭 BUTTONS */
.button-group {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button {
  padding: 8px 20px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: #ff6600;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,102,0,0.5);
}

.whatsapp-btn {
  background: #25D366;
  border-color: #fff;
}

.whatsapp-btn:hover {
  box-shadow: 0 4px 12px rgba(37,211,102,0.5);
}

/* 🧾 FOOTER */
.footer {
  margin-top: 15px;
  font-size: 12px;
  color: #ccc;
  line-height: 1.4;
  border-top: 1px solid #ff6600;
  padding-top: 5px;
}

/* 🪩 SHAIL CARD */
.shail-card {
  width: 100%;
  background: linear-gradient(145deg, #1b1b28, #101018);
  border-radius: 14px;
  padding: 25px 15px;
  border: 2px solid #f5c542;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
  color: #fff;
  text-align: center;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.shail-card:hover {
  box-shadow: 0 0 28px rgba(245, 197, 66, 0.45);
}

.shail-title {
  font-size: 1.4rem;
  color: #ffd84d;
  text-shadow: 0 0 6px #ffeb99;
}

/* 📱 CENTERED IMAGE */
.center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center img {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}

/* 🟢 DELHI CARD – Final Clean Version */
.delhi-card {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  border: 2px solid #00ff99;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 255, 153, 0.2);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #eafff4;
}

.delhi-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #00ffcc;
}

.delhi-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #66ffaa;
  margin-bottom: 10px;
}

.delhi-section {
  margin-bottom: 15px;
  padding: 10px;
  background: #ffffffc7;
  border-radius: 10px;
  color: #0b6623;
}

.delhi-badge {
  background: #27ae60;
  color: white;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 8px;
  font-weight: 600;
}

.delhi-divider {
  border: 1px solid #3fa34d;
  margin: 15px 0;
}

.delhi-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin: 5px;
  transition: all 0.3s ease;
}

.delhi-call-btn {
  background: #27ae60;
}

.delhi-whatsapp-btn {
  background: #25d366;
}

.delhi-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.delhi-note {
  font-size: 14px;
  color: #0d5c27;
  margin-top: 10px;
  font-style: italic;
}
/* 🔰 Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin: 20px auto;
  width: 100%;
  max-width: 720px;
  padding: 0 10px;
  box-sizing: border-box;
}

/* 🔰 Orange Cards */
.link-card {
  flex: 1 1 calc(50% - 12px); /* Always 2 per row */
  background: linear-gradient(145deg, #ff9800, #ff5722);
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* 🔆 Hover Shine */
.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transition: 0.5s;
}

.link-card:hover::before {
  left: 100%;
}

.link-card:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(145deg, #ff5722, #e64a19);
}

/* ✅ Remove mobile stacking */
@media (max-width: 600px) {
  .link-card {
    flex: 1 1 calc(50% - 12px); /* same as desktop */
  }
}
/* ========== MAIN WRAPPER ========== */
.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f6f8;
  padding: 40px 10px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* On mobile, align to top for better view */
@media (max-width: 600px) {
  .center-wrapper {
    align-items: flex-start;
    min-height: auto;
    padding: 20px 6px 30px;
  }
}

/* ========== FORM CARD ========== */
.form-card {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* ========== HEADINGS ========== */
.form-card h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
  font-family: 'Segoe UI', sans-serif;
}

/* ========== LABELS & INPUTS ========== */
.form-card label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 6px;
  font-family: 'Segoe UI', sans-serif;
}

.form-card input[type="text"],
.form-card textarea {
  width: 100%;
  padding: 5px 7px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fafafa;
  margin-bottom: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004094);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 91, 187, 0.4);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #565e64);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #565e64, #3f454a);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.btn-dark {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #343a40, #1d2124);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #1d2124, #000);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.btn-dark:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* ========== UPLOAD SECTION ========== */
.upload-card {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  box-sizing: border-box;
  margin: 20px auto;
}

.upload-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.upload-card input[type="file"] {
  width: 100%;
  margin-bottom: 15px;
}

.upload-card button {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.upload-card button:hover {
  background: #1f7c34;
}

/* ========== ALERTS ========== */
.alert {
  margin: 20px auto;
  max-width: 480px;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
.quote {
  position: relative;
  background: #fff;
  border-left: 6px solid #00b894; /* Highlight border */
  padding: 20px 25px;
  margin: 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

