@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
  --primary: #003f94;
  --primary-dark: #002a63;
  --secondary: #0d6efd;
  --accent: #25D366; /* WhatsApp Green */
  --highlight: #ff9800;
  --bg-light: #f8f9fa;
  --text-main: #1f2630;
  --text-muted: #6c757d;
  --card-shadow: 0 10px 20px rgba(0,0,0,0.08);
  --card-hover: 0 15px 30px rgba(0,0,0,0.12);
  --radius: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-weight: 700;
}

a { text-decoration: none; transition: 0.3s; }

/* --- HEADER & UTILITY --- */
.util-bar {
  background: var(--primary-dark);
  color: #e0e0e0;
  font-size: 0.85rem;
}
.util-bar a { color: #ffffff; font-weight: 500; }
.util-bar a:hover { color: var(--highlight); }

.navbar {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 12px 0;
}
.nav-link {
  font-weight: 600;
  color: var(--text-main) !important;
  font-size: 15px;
  margin: 0 5px;
}
.nav-link:hover { color: var(--primary) !important; }

/* Registration Buttons */
.reg-btn-green {
  background: linear-gradient(135deg, #7dbb43 0%, #5ca028 100%);
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(125, 187, 67, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reg-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(125, 187, 67, 0.6);
  background: linear-gradient(135deg, #5ca028 0%, #4a8a1b 100%);
}
.reg-btn-green-mob {
  background: #7dbb43;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
}
.blink-btn { animation: blink-glow 2s infinite; }
@keyframes blink-glow {
  0% { box-shadow: 0 0 0 0 rgba(125, 187, 67, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(125, 187, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 187, 67, 0); }
}

/* --- HERO & SLIDER --- */
.hero { background: var(--bg-light); }
.heroSwiper {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.hero-slide-img {
  width: 100%;
  height: clamp(250px, 50vw, 550px);
  object-fit: cover;
}
@media screen and (max-width:500px)
{
    .hero-slide-img {
  height: auto !important;
}
}

/* --- MARQUEE (New Design) --- */
.marquee-wrapper {
  background: linear-gradient(90deg, #003f94 0%, #0056b3 100%);
  color: #fff;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,63,148,0.3);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-content {
  display: inline-block;
  padding-right: 80px;
  position: relative;
}
.marquee-content strong { color: #ffeb3b; } /* Yellow highlight */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- DATES CARD --- */
.date-card {
  background: #fff;
  border: none;
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}
.date-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); }
.date-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.date-value { font-size: 28px; font-weight: 800; font-family: 'Poppins', sans-serif; }

/* Blinking Colors */
.blink-red { animation: blink-red-glow 1.4s infinite ease-in-out; }
@keyframes blink-red-glow {
  0%, 100% { color: #d32f2f; text-shadow: 0 0 5px rgba(211, 47, 47, 0.2); }
  50% { color: #ff5252; text-shadow: 0 0 15px rgba(255, 82, 82, 0.6); }
}
.blink-blue { animation: blink-blue-glow 1.8s infinite ease-in-out; }
@keyframes blink-blue-glow {
  0%, 100% { color: #1976d2; text-shadow: 0 0 5px rgba(25, 118, 210, 0.2); }
  50% { color: #42a5f5; text-shadow: 0 0 15px rgba(66, 165, 245, 0.6); }
}

/* --- ABOUT & IMAGES --- */
.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.subtitle { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }
.about-dholera img {
  border-radius: 12px;
  transition: transform 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.about-dholera img:hover { transform: scale(1.05); }

/* --- DHOLERA ACRONYM --- */
.dholera-banner-section {
  background: #fdfdfd;
  padding: 50px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.infographic-headline {
  text-align: center;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.dholera-wrapper { overflow-x: auto; padding-bottom: 20px; }
.dholera-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  min-width: 800px;
}
.dholera-item { display: flex; flex-direction: column; gap: 8px; transition: transform 0.3s; }
.dholera-item:hover { transform: translateY(-5px); }
.letter-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #003f94 0%, #0056b3 100%);
  color: white;
  width: 100px;
  height: 100px;
  font-size: 4rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0,63,148,0.3);
}
.tag-box {
  background: #343a40;
  color: #fff;
  width: 100px;
  padding: 8px 2px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
}

/* Mobile Dholera Grid */
@media (max-width: 768px) {
  .dholera-wrapper { overflow-x: hidden; }
  .dholera-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    min-width: auto;
  }
  .dholera-item { align-items: center; }
  .letter-box { width: 60px; height: 60px; font-size: 2.5rem; }
  .tag-box { width: 60px; font-size: 0.55rem; }
}

/* --- FEATURES & CAROUSEL --- */
.scheme-card {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: 0.3s;
}
.scheme-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); }
.scheme-card .badge { padding: 6px 12px; font-weight: 500; }
.icon-tile {
  background: #fff;
  border-radius: 16px;
  padding: 20px 10px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: 0.3s;
}
.icon-tile:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0,63,148,0.1);
}
.icon {
  width: 50px; height: 50px;
  background: #eef2ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* --- PRICE TABLE (SaaS Style) --- */
#price { background: #f4f6f9; }
.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.price-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 15px;
  border: none;
}
.price-table td {
  padding: 15px;
  color: #495057;
  border-bottom: 1px solid #eee;
}
.price-table tr:nth-child(even) { background-color: #f8f9fa; }
.price-table tr:hover { background-color: #f1f4f9; }

/* Mobile Stack for Table */
@media (max-width: 767px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .price-table td {
    text-align: right; /* Value on right */
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
  }
  .price-table td:last-child { border-bottom: none; font-weight: 700; color: var(--primary); }
  .price-table td::before {
    content: attr(data-label);
    font-weight: 600;
    text-align: left;
    color: #555;
  }
}

/* --- CONTACT & FOOTER --- */
.forum-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: 0.3s;
  box-shadow: var(--card-shadow);
}
.forum-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.forum-card .icon-box {
  width: 40px; height: 40px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

.footer { background: #0f172a; color: #94a3b8; font-size: 0.9rem; }
.footer h6 { color: #fff; margin-bottom: 20px; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer img { filter: brightness(0) invert(1); }

.page-header {
  background: #003f94;
  padding: 24px 0;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

/* Breadcrumb Box Container */
.breadcrumb-box {
  background: #ffffff;
  border-radius: 8px;
  margin-top: -20px;
  padding: 14px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* Main Form Card */
.reg-wrapper {
  background: #ffffff;
  border-radius: 8px;
  padding: 0;
  margin-top: 25px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* Grey form background inside card */
.reg-form-area {
  background: #efefef;
  padding: 28px 35px;
}

/* Label alignment */
.form-label {
  font-size: 14px;
  font-weight: 600;
}

/* Inputs */
.form-control, .form-select, textarea {
  border-radius: 4px;
  font-size: 14px;
  height: 38px;
}

/* Submit Button */
.submit-btn {
  padding: 10px 32px;
  background: #003f94;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

.submit-btn:hover {
  background: #002c6b;
}
.alert
{
    color:#d14549;
}

/* ================= REAL CARD STYLING ================= */

/* Common card base */
.benchmark-box,
.industry-card,
.buyer-logo,
.dev-card,
.activation-box,
.timeline-box {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;

  /* THIS IS THE IMPORTANT PART */
  margin-bottom: 30px;
}

/* Timeline special color */
.timeline-box {
  background: #0d3b66;
  color: #ffffff;
}

/* Activation gradient */
.activation-box {
  background: linear-gradient(135deg, #0d3b66, #1d6fa5);
  color: #ffffff;
}

/* Buyers / logos look slightly compact */
.buyer-logo {
  padding: 22px;
  font-weight: 600;
}

/* Equal height feel without flex drama */
.benchmark-box,
.industry-card,
.buyer-logo,
.dev-card,
.activation-box {
  min-height: 100%;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .benchmark-box,
  .industry-card,
  .buyer-logo,
  .dev-card,
  .activation-box,
  .timeline-box {
    margin-bottom: 22px;
    padding: 22px;
  }
}