* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f7f4ef;
  color: #2c2c2c;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url("/assets/images/hero.png") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

/* LOGO */
.logo {
  width: 540px;
  margin-bottom: 8px; /* VERY IMPORTANT */
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 1));
}

/* BRAND TEXT */
.brand-title {
  font-size: 46px;
  letter-spacing: 4px;
  margin: 6px 0 6px;
  color: #f6d18b;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}

/* META */
.location {
  font-size: 15px;
  opacity: 0.9;
}

.tagline {
  font-style: italic;
  margin: 14px 0 36px;
  font-size: 18px;
}

/* CTA */
.cta-button {
  padding: 14px 34px;
  background: #c98b2f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a56f1e;
  transform: translateY(-2px);
}

.cta-button.dark {
  background: #2f2a23;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  text-align: center;
}

.section.light {
  background: #ffffff;
}

.section h2 {
  font-size: 32px;
  color: #8b5a15;
  margin-bottom: 18px;
}

.section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
}

/* FEATURES */
.features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-card h3 {
  margin-bottom: 12px;
  color: #7a4a10;
  font-size: 20px;
}

/* FOOTER */
footer {
  background: #2f2a23;
  color: #ddd;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #f0c27a;
  text-decoration: none;
}

.disclaimer {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo {
    width: 300px;
  }

  .brand-title {
    font-size: 34px;
  }

  .subtitle {
    font-size: 20px;
  }

  .tagline {
    font-size: 16px;
  }
}

/* FOOTER RAMANA IMAGE */
.footer-ramana-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer-rlc-logo-img{

 width: 140px;
  margin-top: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}


.footer-copyright {
  margin-top: 18px;
  font-size: 12px;
  opacity: 0.6;
}

.map-section {
    margin: 40px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.map-section iframe {
    border-radius: 12px;
}
/* COMMUNITY VOTES – HERO COUNTER */
.community-count {
  margin-top: -20px;
  font-size: 20px;
  font-weight: 500;
  color: #f6d18b;
  letter-spacing: 0.8px;
}

/* NUMBER ITSELF – THIS IS WHAT PULSES */
.community-count span {
  display: inline-block;
  margin-left: 10px;
  font-size: 80px;
  font-weight: 900;
  color: #ffd77d;

  animation: votePulse 2.4s ease-in-out infinite;
  will-change: transform, filter, opacity;
}

/* REAL PULSE ANIMATION */
@keyframes votePulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(255, 210, 120, 0.3));
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
    filter:
      drop-shadow(0 0 18px rgba(255, 215, 125, 0.85))
      drop-shadow(0 0 36px rgba(255, 180, 70, 0.65));
  }

  100% {
    transform: scale(1);
    opacity: 0.85;
    filter: drop-shadow(0 0 6px rgba(255, 210, 120, 0.3));
  }
}
@media (max-width: 768px) {
  .community-count {
    margin-top: -20px;
    font-size: 16px;
  }

  .community-count span {

    font-size: 70px;
  }
}
/* SITE PLAN SECTION */
.site-plan-section {
  margin: 60px auto;
  text-align: center;
}

.site-plan-section h2 {
  margin-bottom: 20px;
  color: #8b5a15;
}

/* PDF PREVIEW CARD */
.pdf-preview-card {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.pdf-preview-card:hover {
  transform: scale(1.02);
}

.pdf-preview {
  width: 100%;
  height: 100%;
  pointer-events: none; /* important */
}

/* OVERLAY */
.pdf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-preview-card:hover .pdf-overlay {
  opacity: 1;
}

/* MODAL */
.pdf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pdf-modal-content {
  position: relative;
  width: 90%;
  height: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

/* FULL PDF */
.pdf-full {
  width: 100%;
  height: 100%;
  border: none;
}

/* CLOSE BUTTON */
.pdf-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.pdf-close-btn:hover {
  background: rgba(0,0,0,0.85);
}



.greentick{

    width:50px;

}