* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */

/* .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    background: transparent;      
    backdrop-filter: none;     
} */


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* hidden state */
.header.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}



.container {
    max-width: 1200px;
    margin: auto;
    padding: 25px 30px;   
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* LOGO */

.header .logo img {
    height: 180px;   
    width: auto;
}

/* .logo img {
    height: 120px;       
    width: auto;
    background: transparent;
} */


/* NAVBAR */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.navbar a:hover {
    color: #f4c430;
}

/* ================= HERO ================= */

.hero {
    position: relative;   
    height: 100vh;
    width: 100%;
    overflow: hidden;
}


/* VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* HERO CONTENT */
.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 120px; /* header height */
}

.tagline {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

/* ================= ABOUT ================= */
/* .about {
  padding: 80px 30px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-content h4 {
  color: #2a6cff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.about-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f5ff;
  padding: 12px;
  border-radius: 8px;
}

.feature span {
  font-size: 22px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2a6cff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #184ed8;
} */

/*---- property----- */

/* SECTION */
.properties {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(#eef2ff, #ffffff);
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e6edff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 14px;
}

.properties h2 {
  font-size: 42px;
  margin: 20px 0 50px;
  color: #0f172a;
}

/* GRID */
.property-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.property-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.image {
  position: relative;
}

.image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TAG */
.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 3px;
}

.tag.rent {
  background: #22c55e;
}

.tag.sale {
  background: #2563eb;
}

/* DETAILS */
.details {
  padding: 20px;
  text-align: left;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.price span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.details h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #111827;
}

/* DESCRIPTION */
.desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* BED / BATH */
.meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.meta div {
  text-align: center;
}

.meta strong {
  font-size: 16px;
  color: #111827;
}

.meta span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

.line {
  width: 1px;
  height: 30px;
  background: #d1d5db;
}

/* SIZE */
.size {
  font-size: 14px;
  color: #6b7280;
  padding-bottom: 10px;
}

.size strong {
  color: #111827;
}

/* AGENT */
.agent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.agent-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-left img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-left h4 {
  font-size: 15px;
  color: #111827;
}

.agent-left p {
  font-size: 13px;
  color: #6b7280;
}

/* AGENT ICONS */
.agent-icons {
  display: flex;
  gap: 8px;
}

.agent-icons span {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4b5563;
  font-size: 14px;
  transition: all 0.3s ease;
}

.agent-icons span:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}


/* STATS SECTION */
.stats-section {
  background: #f7fafc;
  padding: 80px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

/* STAT BOX */
.stat-box {
  background: transparent;
}

.icon {
  font-size: 48px;
  color: #1e70ff;
  margin-bottom: 20px;
}

.stat-box h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

/* SECTION BACKGROUND */
.sketch-section {
  padding: 80px 20px;
  background: linear-gradient(#eef2ff, #ffffff);
}

/* MAIN LAYOUT */
.sketch-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT BLUE BOX */
.sketch-info {
  background: #1468f0;
  color: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sketch-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 22px;
}

.sketch-info p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* DETAILS LIST */
.details-list {
  list-style: none;
}

.details-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
  font-size: 15px;
}

.details-list li span:first-child {
  opacity: 0.9;
}

.details-list li span:last-child {
  font-weight: 600;
}

/* RIGHT IMAGE BOX */
.sketch-image {
  background: #ffffff;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sketch-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

/* AMENITIES SECTION */
.amenities-section {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.amenities-container {
  max-width: 1200px;
  margin: auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e6edff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.amenities-container h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #111827;
}

/* GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* AMENITY BOX */
.amenity-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.amenity-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.amenity-box h4 {
  font-size: 18px;
  color: #1f2937;
}


/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e6edff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-container h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #111827;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #f9fafb;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* STARS */
.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 25px;
}

/* CLIENT */
.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 16px;
  color: #111827;
}

.client-info span {
  font-size: 13px;
  color: #6b7280;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, #156cf0, #1e7cff);
  padding: 60px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-text h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.cta-text p {
  color: #e5edff;
  font-size: 16px;
}

.cta-btn {
  background: #ffffff;
  color: #111827;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

/* FOOTER */
.footer {
  background: linear-gradient(#0b1220, #020617);
  color: #cbd5f5;
  padding-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 0 20px 60px;
}

/* FOOTER COLUMN */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
}

.footer img,
.footer-logo {
  width: 130px;
  margin-bottom: 20px;
  background: #0b1220;   /* footer ka exact color */
  padding: 12px;
  border-radius: 6px;
  filter: brightness(1.15) contrast(1.1);
}


/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* CONTACT */
.contact-list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* SOCIAL */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #2563eb;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #94a3b8;
}

.footer .logo img {
    height: 80px;   /* pehle chhota tha */
    width: auto;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* --responsive-- */

/* ================== TABLET (max-width: 992px) ================== */
@media (max-width: 992px) {

  /* HEADER */
  .container {
    padding: 15px 20px;
  }

  .logo img {
    height: 60px;
  }

  .navbar ul li {
    margin-left: 18px;
  }

  /* HERO */
  .hero .content {
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  /* SKETCH */
  .sketch-container {
    grid-template-columns: 1fr;
  }

  .sketch-info {
    padding: 40px;
  }

  /* CTA */
  .cta-text h2 {
    font-size: 32px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================== MOBILE (max-width: 768px) ================== */
@media (max-width: 768px) {

  /* HEADER */
  .navbar ul {
    flex-direction: column;
    background: rgba(0,0,0,0.85);
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 20px;
    display: none; /* JS / toggle ke liye */
  }

  .navbar ul li {
    margin: 12px 0;
  }

  .navbar ul li a {
    color: #ffffff;
  }

  .logo img{
    height: 120px;
    width: auto;
  }

  /* HERO */
  .hero {
    height: 100vh;
  }

  .hero .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  /* PROPERTIES */
  .properties h2,
  .amenities-container h2,
  .testimonial-container h2 {
    font-size: 32px;
  }

  /* PROPERTY CARD */
  .meta {
    justify-content: space-between;
  }

  /* STATS */
  .stat-box h2 {
    font-size: 36px;
  }

  /* CTA */
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    margin-top: 20px;
  }

  /* FOOTER */

  /* FOOTER LOGO */
  .footer img,
  .footer-logo {
    height: 160px;
    width: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: center;
  }

}
/* ================== SMALL MOBILE (max-width: 480px) ================== */
@media (max-width: 480px) {

  /* LOGO */
  .logo img {
    height: 160px;
    width: auto;

  }

  /* HERO */
  .hero h1 {
    font-size: 28px;
  }

  .tagline {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* ABOUT */
  .about-content h2 {
    font-size: 28px;
  }

  /* SKETCH */
  .sketch-info h2 {
    font-size: 28px;
  }

  /* CTA */
  .cta-text h2 {
    font-size: 26px;
  }

  /* FOOTER LOGO */
  .footer img,
  .footer-logo {
    height: 160px;
    width: auto;
  }

}