body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.partner-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.phone {
  font-weight: bold;
  color: #333;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 70px;
  right: 20px;
  width: calc(100% - 40px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  gap: 10px;
  z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

.banner-section {
  background-image: url('images/Banner1.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.banner-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.banner-btn {
  background: #facc15;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
  background: #fde047;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
  .banner-btn {
    padding: 0.5rem 1.5rem;
  }
}
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 10); /* Adjust based on number of logos */
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 80px;
  width: 250px;
  object-fit: contain;
  margin-right: 3rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 🔸 Responsive tweaks for mobile */
@media (max-width: 768px) {
  .logo-track img {
    height: 60px;
    width: 140px;
    margin-right: 1rem;
  }

  h2 {
    font-size: 1rem;
  }
}
section {
  scroll-margin-top: 80px;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 1s ease-out forwards;
}
.animate-fade-up.delay-100 { animation-delay: 0.1s; }
.animate-fade-up.delay-200 { animation-delay: 0.2s; }
.animate-fade-up.delay-300 { animation-delay: 0.3s; }
.animate-fade-up.delay-400 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

.rera-card a {
  display: inline-block;
  padding: 8px 14px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.rera-card a:hover {
  background: #0056b3;
}
.stats-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.stats-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c3553;
}

.stats-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 850px;
  margin: 0 auto 60px;
}

/* Main layout */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Left big box */
.main-stat {
  background: #fff;
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  width: 280px;
  text-align: center;
}

.main-stat .stat-number {
  font-size: 56px;
  font-weight: bold;
  color: #c0a060;
}

.main-stat .stat-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  color: #222;
}

/* Right side stats (grid) */
.side-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
  width: 200px;
  text-align: center;
}

.stat-box .stat-number {
  font-size: 38px;
  font-weight: bold;
  color: #c0a060;
}

.stat-box .stat-text {
  font-size: 16px;
  font-weight: 600;
  margin-top: 6px;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
  .side-stats {
    grid-template-columns: 1fr;
  }
}
.heading-underline { position: relative; display: inline-block; padding-bottom: 0.125rem; }
  .heading-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #f97316; /* Tailwind orange-500 */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.4,0,.2,1);
  }
  /* when parent .group is hovered, reveal the underline */
  .group:hover .heading-underline::after { transform: scaleX(1); }
