* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top right, #1e213a, #0b0e1f);
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar {
  background: #fff;
  color: #000;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.contact-info {
  font-size: 13px;
}

.hero {
  padding: 70px 0 50px;
  text-align: center;
  background: radial-gradient(circle at top left, #1e3a8a, #111827); /* Deep blue gradient */
  position: relative;
  overflow: hidden;
}

/* Add a golden glow layer using a pseudo-element */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 60%);
  z-index: 0;
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 1; /* Keep content above the glow */
}


.badge {
  display: inline-block;
  background: #fbbf24;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight {
  color: #fbbf24;
}

.desc {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 50px;
}

.gold {
  color: #facc15;
  font-weight: 600;
}

.purple {
  color: #c084fc;
  font-weight: 600;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.stat-box {
  background: #1f2344;
  padding: 30px 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  min-width: 220px;
}

.stat-main {
  font-size: 28px;
  font-weight: bold;
  color: #facc15;
}

.stat-sub {
  font-size: 14px;
  color: #ccc;
  margin-top: 6px;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 30px;
  background: #fbbf24;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffcc47;
}

@media (max-width: 1024px) {
  .stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .desc {
    font-size: 16px;
  }

  .stat-box {
    min-width: 180px;
    padding: 20px;
  }

  .stat-main {
    font-size: 22px;
  }
}
.gold-glow {
  color: #ffd700;
  font-weight: 700;
  text-shadow:
    0 0 3px #ffd700,
    0 0 6px rgba(255, 215, 0, 0.4),
    0 0 10px rgba(255, 215, 0, 0.2);
  transition: text-shadow 0.3s ease-in-out;
  animation: softPulse 3s infinite alternate;
}

@keyframes softPulse {
  0% {
    text-shadow:
      0 0 3px #ffd700,
      0 0 6px rgba(255, 215, 0, 0.4),
      0 0 10px rgba(255, 215, 0, 0.2);
  }
  100% {
    text-shadow:
      0 0 4px #ffd700,
      0 0 8px rgba(255, 215, 0, 0.5),
      0 0 12px rgba(255, 215, 0, 0.3);
  }
}
.fade-in-text {
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-box {
  background: #1f2344;
  padding: 30px 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
}


/* Listing card content */
.listing-block h3 {
  font-size: 18px;
  color: #facc15;
  margin-bottom: 12px;
}

.listing-block ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.listing-block ul li {
  margin-bottom: 12px;
}

/* Subtle background animation */
@keyframes moveClouds {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, -5%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
.about-us-section {
  background: radial-gradient(circle at center, #fff8e1, #fbc02d, #ff8f00);
  padding: 80px 20px;
  font-family: 'Georgia', serif;
  color: #1a1300;
}

.about-us-container {
  max-width: 1000px;
  margin: auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  animation: fadeIn 1s ease-out forwards;
}

.section-heading {
  font-size: 48px;
  color: #8b4513;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  opacity: 0;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 40px;
  opacity: 0;
}

.about-block {
  margin-bottom: 40px;
  opacity: 0;
}

.about-block h3 {
  font-size: 24px;
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 15px;
}

.about-block ul {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  list-style: disc;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 1.2s ease forwards;
}

.animate-slide {
  animation: slideIn 1.4s ease forwards;
}

.animate-fade-up {
  animation: slideIn 1.6s ease forwards;
}
.listing-block:hover {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.3);
}
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.icon-btn {
  background: #000;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.call-icon {
  background: #1e3a8a;
}

.whatsapp-icon {
  background: #25D366;
}
