body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  padding: 15px 40px;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  /* height: 80px; */
  text-decoration: none !important;
  /* underline yahin se hat-ta hai */
  color: #000;

}

.logo img {
  width: 270px;
  /* Increase logo size safely */
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-weight: 700;
  /* Extra Bold */
  font-size: 1.6rem;
  /* Height / Size bada */
  line-height: 1.2;
  color: #000;

}


/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4a762;
}

/* ===== Contact Us Button ===== */
.contact-btn {
  background-color: #ecc577;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #d4a762;
  color: #fff !important;
}

/* ===== Hamburger (Hidden by Default) ===== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}

/* ===== Mobile/Tablet Responsive ===== */
@media (max-width: 1024px) {

  /* Mobile navbar ko teen sections me divide karo */
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Left | Center | Right */
    align-items: center;
    padding: 10px 15px;
  }

  /* Logo image LEFT me */
  .logo img {
    width: 90px;
    height: 90px;
  }

  /* Logo span CENTER me perfectly */
  .logo span {
    grid-column: 2 / 3;
    text-align: center;
    font-size: 1.2rem;
  }

  /* Logo container ko grid follow karane ke लिए adjust */
  .logo {
    display: contents;
    /* image left + text center */
  }

  /* Hamburger RIGHT me */
  .menu-toggle {
    display: block;
    grid-column: 3 / 4;
    justify-self: end;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    z-index: 2000;
  }

  /* Nav links dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    width: 200px;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
}




/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("sampadainfradevelopers.png");
  /* Replace with final image if needed */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  overflow: hidden;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.3);
  /* translucent layer for readability */
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-block;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.3);
  /* translucent layer for readability */
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-block;
}

/* Watch Video Button + Play Icon */
.video-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* .watch-btn {
  background-color: #6cc644;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.watch-btn:hover {
  background-color: #5cbf3f;
} */

.watch-btn {
  background-color: #d4a762;
  /* ORANGE */
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  position: relative;
  animation: pulse 1.8s infinite;
}

/* Hover */
.watch-btn:hover {
  background-color: #d4a762;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #d4a762(255, 140, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}



/* about */
.about-section {
  padding: 100px 40px;
  /* background-color: #f5f5f5; */
  background: #f9f9f9 url('https://www.transparenttextures.com/patterns/white-wall-3.png');
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.about-text {
  flex: 1;
  color: #333;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-text .primary {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text .secondary {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 30px;
}

.learn-more {
  display: inline-block;
  padding: 10px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #555;
}

.about-image img {
  width: 360px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1.2s ease-out forwards;
}

/* Animation keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Feature Highlight Section */
.feature-highlight {
  background-color: #151a20;
  color: white;
  text-align: center;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

/* background soft light shimmer */
.feature-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.15) 20%,
      transparent 60%,
      transparent 100%);
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%) skewX(-15deg);
  }

  100% {
    transform: translateX(50%) skewX(-15deg);
  }
}

/* heading animation */
.feature-highlight h2 {
  font-size: 5rem;
  font-weight: bold;
  color: #d4a762;
  margin: -10px 0 10px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: fadeZoomUp 1.5s ease-out forwards;
}

/* paragraph animation */
.feature-highlight p {
  font-size: 3.8rem;
  color: #e0e0e0;
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpGlow 1.8s ease-out 0.5s forwards;
}

/* smooth fade + zoom up */
@keyframes fadeZoomUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* subtle glowing float */
@keyframes fadeUpGlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
    text-shadow: none;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 10px rgba(212, 167, 98, 0.4);
  }
}


/* Template Gallery Section */

.custom-template {
  background: linear-gradient(135deg, #a67c52, #8d693f);
  /* premium brown tone */
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
}

.custom-template::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shine 6s infinite linear;
}

.custom-template p {
  color: white;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.8s ease forwards;
}

/* Animation for Text */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle background light sweep */
@keyframes shine {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*  WHY-CHOOSE */
.why-choose {
  background: #f9f9f9 url('https://www.transparenttextures.com/patterns/white-wall-3.png');
  padding: 100px 40px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.why-choose>p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 70px;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 40px;
  text-align: left;
}

.feature-box.reverse {
  flex-direction: row-reverse;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.image-box {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  height: 220px;

}

.image-box img {
  width: 100%;
  border-radius: 6px;
  display: block;
  position: relative;
  z-index: 2;
  height: 220px;
}

.image-box::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  z-index: 1;
}

.content-box {
  flex: 1;
  padding: 0 40px;
  color: #333;
}

.quote {
  color: #e91e63;
  font-size: 40px;
  margin-bottom: 10px;
}

.content-box h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.content-box span {
  font-size: 0.9rem;
  color: black;
}

@media (max-width: 900px) {

  .feature-box,
  .feature-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    padding: 30px 0 0 0;
  }

  .image-box::before {
    top: 15px;
    left: 15px;
  }
}



/* Contact-section */

.contact-section {
  padding: 100px 40px;
  background-color: #e7f0ea;
  /* background-color: #f3eee7; */
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  margin-top: -85px;
}

.contact-line {
  width: 200px;
  height: 4px;
  background-color: #000;
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Right Side: Form */
.contact-form,
.form-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .form-row {
  display: flex;
  gap: 20px;
} */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #281601;
}


/* Foorte */
/* ===== FOOTER BASE ===== */
.realestate-footer {
  background: linear-gradient(135deg, #0e1a24 0%, #1b2735 100%);
  color: #e8eef2;
  padding: 80px 60px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.realestate-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  filter: blur(100px);
}

/* ===== GRID ===== */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 50px;
  text-align: left;
}

/* ===== ABOUT SECTION ===== */
.footer-col.about h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-col.about p {
  font-size: 0.95rem;
  color: #bfc7d1;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 350px;
}

/* ===== LINKS & CONTACT ===== */
.footer-col h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #00b4d8;
  left: 0;
  bottom: -5px;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #bfc7d1;
  line-height: 1.6;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bfc7d1;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00b4d8;
}

.contact-info ul li i {
  margin-right: 10px;
  color: #00b4d8;
}

/* ===== CENTERED SOCIAL ICONS ===== */
.social-center {
  text-align: center;
  margin-top: 20px;
}

.social-center a img {
  width: 48px;
  height: 48px;
  margin: 0 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-center a img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  font-size: 0.9rem;
  color: #bfc7d1;

}

.footer-link {
  color: inherit;
  /* parent text ka color use kare */
  text-decoration: none;
  /* underline remove */
  font-weight: 500;
  /* thoda clean look */
}

.footer-link:hover {
  text-decoration: underline;
  /* optional: hover pe underline */
}

/* ===== Floating Chat Widget ===== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}





/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .realestate-footer {
    padding: 60px 30px 0;
  }

  .footer-col.about p {
    max-width: 100%;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .social-center {
    flex-wrap: wrap;
  }
}







/* 🌍 Global Responsive Tweaks */
html,
body {
  overflow-x: hidden;
}


/* ✅ Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    height: auto;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .watch-btn {
    padding: 10px 20px;
  }
}

/* ✅ About Section Responsive */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 90%;
    margin-top: 30px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text .primary {
    font-size: 1rem;
  }
}


/* ✅ Feature Highlight Responsive */
@media (max-width: 768px) {
  .feature-highlight h2 {
    font-size: 3rem;
  }

  .feature-highlight p {
    font-size: 1.8rem;
  }
}

/* ✅ Template Grid Responsive
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .template img {
    width: 100%;
  }
} */

/* ✅ Why Choose Responsive */
@media (max-width: 768px) {

  .feature-box,
  .feature-box.reverse {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .image-box {
    width: 100%;
  }

  .content-box {
    padding: 20px 0 0;
  }

  .why-choose h2 {
    font-size: 2rem;
  }

  .why-choose>p {
    font-size: 0.9rem;
  }
}

/* ✅ Contact Section Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-left h2 {
    text-align: center;
    margin-top: 0;
  }

  .contact-form {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}

/* ✅ Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-col.about p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .realestate-footer {
    padding: 50px 20px 0;
  }

  .social-center {
    flex-wrap: wrap;
  }

  .chat-widget {
    bottom: 20px;
    right: 20px;
  }

  .chat-btn {
    font-size: 1.4rem;
    padding: 10px 12px;
  }
}

/* ✅ Small Devices (Phones < 480px) */
@media (max-width: 480px) {
  .logo span {
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .feature-highlight h2 {
    font-size: 2.4rem;
  }

  .feature-highlight p {
    font-size: 1.3rem;
  }

  .custom-template p {
    font-size: 1.3rem;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }
}

/* ✅ Form Message Styling */
.form-message {
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}

/* ✅ Success Style */
.form-message.success {
  color: #1a8f3d;
  opacity: 1;
  transform: translateY(0);
  background: #e8f9ee;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
}

/* ✅ Error Style */
.form-message.error {
  color: #e63946;
  opacity: 1;
  transform: translateY(0);
  background: #ffe8e8;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
}