* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.section{
  padding: 70px 8%;
}
@media(max-width:768px){
  .section{
    padding: 50px 6%;
  }
}

.top-bar {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;      /* 👈 नीचे गिरने से रोकता है */
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Left side */
.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social icons */
.top-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;                /* 👈 icons के बीच gap */
}

.top-social-icons a {
    color: #fff;              /* 👈 white icons */
    font-size: 14px;
    transition: 0.3s;
}

.top-social-icons a:hover {
    color: #25d366;
    transform: translateY(-2px);
}

/* call back */
.call-btn{
  background:linear-gradient(135deg,#111,#1f2933);
  color:#fff;
  padding:8px 14px;
  border-radius:40px;
  font-size:8px;
  font-weight:600;
  text-decoration:none;

  display:inline-flex;
  align-items:center;
  gap:10px;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  position:relative;
  overflow:hidden;

  animation:callShake 3s infinite;
  transition:all .35s ease;
}

/* GREEN CALL ICON */
.call-btn i{
  color:#22c55e;
  font-size:14px;
  animation:ring 1.3s infinite;
}

/* hover = luxury gold */
.call-btn:hover{
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  transform:translateY(-3px);
}

/* subtle button shake */
@keyframes callShake{
  0%,100%{transform:translateX(0)}
  90%{transform:translateX(0)}
  92%{transform:translateX(-3px)}
  94%{transform:translateX(3px)}
  96%{transform:translateX(-2px)}
  98%{transform:translateX(2px)}
}

/* phone ringing animation */
@keyframes ring{
  0%{transform:rotate(0)}
  15%{transform:rotate(18deg)}
  30%{transform:rotate(-18deg)}
  45%{transform:rotate(12deg)}
  60%{transform:rotate(-12deg)}
  75%{transform:rotate(6deg)}
  100%{transform:rotate(0)}
}





/* menu baar */
.navbar {
  position: absolute;
  top: 40px; 
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);

}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

/* LOGO CONTAINER */
.logo{
  display:flex;
  align-items:center;
}

/* LOGO IMAGE */
.logo img{
  height:70px;                 /* perfect for menu */
  width:auto;
  max-width:240px;
  object-fit:contain;

  /* clean visibility on dark image */
  filter:
      drop-shadow(0 1px 1px rgba(0,0,0,1))
    drop-shadow(0 6px 12px rgba(0,0,0,0.85))
    contrast(1.15)
    brightness(1.1);
}



nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 200;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
}

/* ===============================
   NEWS MENU – TRANSPARENT STYLE
   =============================== */

.news-link {
  position: relative;
  color: #ff5722 !important; /* sirf News ka color */
  font-weight: 600;
}

/* Bell icon positioning */
.news-bell {
  position: absolute;
  top: -6px;        /* thoda upar */
  right: -14px;    /* News ke right side chipka hua */
}

/* Bell icon style + animation */
.news-bell i {
  font-size: 13px;
  color:white;
  animation: bellShake 1.6s infinite;
  transform-origin: top center;
}

/* Bell shake animation (soft & realistic) */
@keyframes bellShake {
  0% { transform: rotate(0); }
  8% { transform: rotate(12deg); }
  16% { transform: rotate(-12deg); }
  24% { transform: rotate(8deg); }
  32% { transform: rotate(-8deg); }
  40% { transform: rotate(4deg); }
  48% { transform: rotate(-4deg); }
  56% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

/* Hover effect (clean) */
.news-link:hover {
  color: #ffa000 !important;
}




/* hero section */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100vw;         /* Full width */
  object-fit: cover;    /* Zoom and fill without distortion */
  z-index: -1; 
}

.hero-video video {

  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-overlay {
  /* position: absolute;
  z-index: 1;
  text-align: center;
  color: #fff;
  top: 30%;
  width: 100vw; */


  position: absolute;
  inset: 0;
  z-index: 2;
  text-align: center;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

/* vodeo over lay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); 
  z-index: 1;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-overlay h1 {
  font-size: 56px;
  color: #fff;
}

/* TYPING EFFECT */
.typing {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #caa169;   /* cursor */
  width: 28ch;                      /* EXACT text length */
  animation: typing 4s steps(28, end) infinite,
             blink 0.8s step-end infinite;
}

/* LEFT TO RIGHT TYPING */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 28ch;
  }
}

/* CURSOR BLINK */
@keyframes blink {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: #caa169;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 34px;
  }
}



.hero-overlay p {
  font-size: 18px;
  margin-bottom: 30px;
}

.property-type-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.property-type-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
}


/* SAME SIZE BUTTONS */
.type-btn {
  width: 170px;              /* 👈 sabka size same */
  height: 46px;              /* 👈 fixed height */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover Effect */
.type-btn:hover {
  background: #caa169;       /* Luxury Gold */
  color: #000;
  border-color: #caa169;
  
}

/* Active Button */
.type-btn.active {
  background: #caa169;
  color: #000;
  border-color: #caa169;
}


/* pagese  css                                  */
.contact-section {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("images/cont-us.jpg") center/cover no-repeat;

  padding-top: 120px;   /* title ke liye space */
  padding-bottom: 80px;
}
.section-title {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  padding: 12px 30px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.contact-map {
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}


/* office address */
.office-info {
  background: #f5f7fa;
  padding: 70px 20px;
}

.office-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.office-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.office-item p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.office-item a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
}

.office-item a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .office-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}








/* about us */
/* ===== Cover / Facebook-like horizontal banner ===== */
.cover-banner {
  width: 100%;
  height: 220px;                 /* desktop height */
  background-image: url('images/about.jpg'); /* <-- अपनी image path लगाएं */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

/* dark overlay for better text readability */
.cover-banner::before {
  content: "";
  position: absolute;
  inset: 0;                      /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.35);  /* adjust opacity */
  pointer-events: none;
}

/* content inside banner */
.cover-overlay {
  position: relative;            /* above the ::before overlay */
  color: #fff;
  text-align: center;
   padding-top: 120px;
  max-width: 1100px;
  z-index: 2;
}

.cover-overlay h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.cover-overlay p {
  margin: 10px 0 0;
  font-size: 18px;
  opacity: 0.95;
}

/* optional: subtle parallax-like effect when scrolling (pure CSS) */
.cover-banner {
  background-attachment: scroll; /* keep default; for parallax change to fixed (but mobile issues) */
}

/* ===============================
   ABOUT PAGE CONTENT (AFTER BANNER)
   =============================== */

.about-content {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-content h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

.about-content p {
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* ===============================
   TEAM SECTION
   =============================== */

.about-team {
  padding: 100px 20px;
  background: #f5f7fa;
  font-family: 'Poppins', sans-serif;
}

.about-team h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
  color: #222;
}

.team-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: teamReveal 0.9s ease forwards;
}

.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.4s; }

.team-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* IMAGE */
.team-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #caa169;
  margin-bottom: 18px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #222;
}

.team-card span {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

/* ANIMATION */
@keyframes teamReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .about-team h2 {
    font-size: 34px;
  }
}

/* ===== Responsive adjustments ===== */
@media (max-width: 992px) {
  .cover-banner { height: 260px; }
  .cover-overlay h1 { font-size: 36px; }
  .cover-overlay p  { font-size: 16px; }
}

@media (max-width: 600px) {
  .cover-banner { height: 180px; background-position: center 30%; }
  .cover-overlay h1 { font-size: 22px; }
  .cover-overlay p  { font-size: 14px; }
  .cover-overlay { padding: 0 12px; }
}


/* feacture properity */
.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head h3 {
  font-size: 34px;
  font-weight: 600;
  color: #0b2c3d;
  position: relative;
  display: inline-block;
  
}

/* Luxury underline */
.section-head h3::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #caa169;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

.single-project {
  padding: 100px 8%;
  background: #ffffff;
}

.sp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
  /* margin-top: -100px; */
}

/* IMAGE */
.sp-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.sp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.sp-image:hover img {
  transform: scale(1.08);
}

/* BADGE */
.sp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #caa169;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* CONTENT */
.sp-content h2 {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  color: #0b2c3d;
  margin-bottom: 10px;
}

.sp-location {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.sp-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}

/* FEATURES */
.sp-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.sp-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

/* PRICE */
.sp-price {
  font-size: 18px;
  margin-bottom: 30px;
}

.sp-price span {
  font-size: 26px;
  font-weight: 700;
  color: #caa169;
}

/* BUTTONS */
.sp-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sp-btn {
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

/* Primary */
.sp-btn.primary {
  background: #0b2c3d;
  color: #fff;
}

.sp-btn.primary:hover {
  background: #caa169;
  color: #000;
}

/* Secondary */
.sp-btn.secondary {
  border: 1.5px solid #0b2c3d;
  color: #0b2c3d;
}

.sp-btn.secondary:hover {
  background: #0b2c3d;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .sp-content h2 {
    font-size: 32px;
  }
}



/* why chhose us */
.why-choose-us {
  padding: 100px 8%;
  /* background: #f8f9fb; */
  background: #8c8e91;
}

.wcu-head {
  text-align: center;
  margin-bottom: 60px;
}

.wcu-head h2 {
  font-size: 38px;
  /* font-family: 'Playfair Display', serif; */
  color: #0b2c3d;
}

.wcu-head p {
  margin-top: 8px;
  color: #666;
}

/* GRID */
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px; */
  .wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 cards in row */
  gap: 30px;
  max-width: 1200px; /* container limit */
  margin: 0 auto;     /* center align */
}


/* CARD */
.wcu-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.wcu-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.wcu-card i {
  font-size: 38px;
  color: #caa169;
  margin-bottom: 18px;
}

/* TITLE */
.wcu-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b2c3d;
}

/* TEXT */
.wcu-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .wcu-head h2 {
    font-size: 30px;
  }
}



/* our bying process */
.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:40px;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.step{
  text-align:center;
  padding:30px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.step i{
  font-size:36px;
  color:#c59d5f;
  margin-bottom:15px;
}


/* =========================
   DEFAULT (DESKTOP)
========================= */

/* WhatsApp – always visible */
.whatsapp-float{
  position:fixed;
  bottom:30px;
  right:25px;
  width:60px;
  height:60px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  text-decoration:none;

  box-shadow:
    0 15px 35px rgba(37,211,102,.45),
    inset 0 0 0 2px rgba(255,255,255,.15);

  animation:pulseGlow 2.5s infinite;
}

.whatsapp-float i{
  color:#fff;
  font-size:30px;
  animation:iconShake 1.8s infinite;
}

/* Call – desktop me hide */
.call-bar{
  display:none;
}

/* =========================
   MOBILE ONLY (CALL + WHATSAPP)
========================= */

@media (max-width:768px){

  /* =========================
   CALL BUTTON FIX (MOBILE)
========================= */

@media (max-width:768px){

  .call-bar{
    display:flex;
    position:fixed;
    bottom:20px;
    right:90px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#22c55e,#16a34a);

    align-items:center;
    justify-content:center;
    z-index:9999;

    box-shadow:
      0 15px 35px rgba(34,197,94,.45),
      inset 0 0 0 2px rgba(255,255,255,.15);

    animation:pulseGlowGreen 2.5s infinite;
  }

  .call-bar a{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:0;              /* 👈 text hide */
    text-decoration:none;
  }

  /* ICON ONLY – PERFECT CENTER */
  .call-bar a::before{
    content:"📞";
    font-size:26px;
    animation:ringCall 1.5s infinite;
  }
}

  /* WHATSAPP (RIGHT) */
  .whatsapp-float{
    bottom:20px;
    right:20px;
    width:56px;
    height:56px;
  }

  .whatsapp-float i{
    font-size:28px;
  }
}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}
  70%{box-shadow:0 0 0 18px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

@keyframes pulseGlowGreen{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
  70%{box-shadow:0 0 0 18px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}

@keyframes iconShake{
  0%,100%{transform:rotate(0)}
  20%{transform:rotate(15deg)}
  40%{transform:rotate(-15deg)}
  60%{transform:rotate(10deg)}
  80%{transform:rotate(-10deg)}
}

@keyframes ringCall{
  0%{transform:rotate(0)}
  15%{transform:rotate(20deg)}
  30%{transform:rotate(-20deg)}
  45%{transform:rotate(14deg)}
  60%{transform:rotate(-14deg)}
  75%{transform:rotate(8deg)}
  100%{transform:rotate(0)}
}


/* testimonals */
.testimonials-section{
  background:linear-gradient(135deg,#111,#1f1f1f);
  color:#ffffff;
}
.section-titlet,h2{
  color: white;
  text-align: center;
  margin-bottom:50px;
 
}

.section-title{
  color: #fff;
  text-align:center;
  font-size:36px;
  margin-bottom:10px;
}
/* 
.section-sub{
  text-align:center;
  color:#bbb;
  margin-bottom:50px;
  font-size:17px;
} */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 cards per row */
  gap: 30px;
  max-width: 1200px; /* grid ka max width fix karo */
  margin: 0 auto;     /* center align */
}

/* CARD */
.testimonial-card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
  transform:translateY(40px);
  opacity:0;
  animation:fadeUp .8s ease forwards;
}

.testimonial-card:nth-child(2){animation-delay:.1s}
.testimonial-card:nth-child(3){animation-delay:.2s}
.testimonial-card:nth-child(4){animation-delay:.3s}

.review{
  font-size:16px;
  line-height:1.7;
  margin-bottom:20px;
  color:#eee;
}

.testimonial-card h4{
  font-size:18px;
  margin-bottom:4px;
}

.testimonial-card span{
  font-size:14px;
  color:#c59d5f;
}

/* hover effect */
.testimonial-card:hover{
  transform:translateY(-6px) scale(1.02);
  transition:.4s ease;
}

/* animation */
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}


/* popular placess */
.locations{
  background:#f8f8f8;
}

/* .location-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
} */

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 cards per row on desktop */
  gap: 25px;
  max-width: 1200px;  /* Grid width fix karo */
  margin: 0 auto;      /* Center align */
}

.location-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  height:220px;
}

.location-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.location-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:.4s;
}

.location-card:hover img{
  transform:scale(1.12);
}

.location-card:hover::after{
  opacity:1;
}

.overlay{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#fff;
  font-size:22px;
  font-weight:600;
  z-index:2;
  transform:translateY(20px);
  opacity:0;
  transition:.4s;
}

.location-card:hover .overlay{
  transform:translateY(0);
  opacity:1;
}


/* cta */
.cta-section{
  background:linear-gradient(135deg,#111,#1e1e1e);
  color:#fff;
}

.cta-box{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.cta-box h2{
  font-size:38px;
  margin-bottom:15px;
}

.cta-box p{
  font-size:18px;
  color:#ccc;
  margin-bottom:35px;
}

/* buttons */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:16px 36px;
  border-radius:50px;
  font-size:18px;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  position:relative;
}

/* CALL BUTTON */
.call-btn{
  background:#c59d5f;
  animation:shake 1.8s infinite;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
  background:#25d366;
  animation:pulse 1.6s infinite;
}

/* animations */
@keyframes shake{
  0%{transform:translateX(0)}
  25%{transform:translateX(-3px)}
  50%{transform:translateX(3px)}
  75%{transform:translateX(-3px)}
  100%{transform:translateX(0)}
}

@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.6);
  }
  70%{
    box-shadow:0 0 0 15px rgba(37,211,102,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}


/* FAQ */
.faq-section{
  padding: 50px 20px;
  background: #f7f7f7;
}

.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:30px;
  color: #000;
}

.faq-container{
  max-width:800px;
  margin:auto;
}

.faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.faq-question{
  padding:20px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.icon{
  font-size:26px;
  transition:0.3s;
}

.faq-answer{
  display:none;
  padding:0 20px 20px;
  color:#555;
  font-size:16px;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .icon{
  transform:rotate(45deg);
}





/* footer section */
.footer {
  margin-top: 20px;
  position: relative;
  background: url("images/footer.jpg") center/cover no-repeat;
  color: #fff;
  padding: 90px 20px 30px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  z-index: 2;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 22px;
}

.footer-col p {
  color: #ddd;
  line-height: 1.7;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4caf50;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #4caf50;
  transform: translateY(-4px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}




/* rinsponsive */  


@media (max-width: 768px){
  .call-btn{
    display: none;
  }
}

@media (max-width: 992px){
  .top-bar .container{
    padding:0 15px;
  }

  .top-left{
    gap:10px;
  }

  .call-btn{
    padding:6px 12px;
    font-size:11px;
  }
}

@media (max-width: 768px){
  .top-bar .container{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }

  .top-left{
    flex-direction:column;
    gap:6px;
  }

  .top-social-icons{
    justify-content:center;
  }

  .call-btn{
    font-size:11px;
    padding:6px 14px;
    animation:none;
  }
}

@media (max-width: 480px){
  .top-bar{
    padding:8px 0;
  }

  .top-left span{
    font-size:12px;
  }

  .top-social-icons a{
    font-size:13px;
  }

  .call-btn{
    font-size:10px;
    padding:6px 12px;
    border-radius:30px;
  }

  .call-btn i{
    font-size:12px;
  }
}

/* =========================
   GLOBAL SECTION RESPONSIVE
========================= */

@media(max-width:992px){
  .section{
    padding:60px 6%;
  }
}

@media(max-width:768px){
  .section{
    padding:50px 5%;
  }
}

@media(max-width:480px){
  .section{
    padding:40px 4%;
  }
}

/* =========================
   SAFETY FIX
========================= */

@media(max-width:768px){
  body{
    overflow-x:hidden;
  }
}


/* navbar */
/* =========================
   NAVBAR RESPONSIVE ONLY
========================= */

 @media (max-width: 992px){
  .navbar{
    top:40px;
  }

  .logo img{
    height:60px;
    max-width:200px;
  }

  nav ul{
    gap:16px;
  }

  nav ul li a{
    font-size:16px;
  }
}

@media (max-width: 768px){
  .navbar{
    top:40px;
  }

  .navbar .container{
    flex-direction:row;
    padding:10px 15px;
  }

  .logo img{
    height:52px;
    max-width:180px;
  }

  nav ul{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    background:rgba(0,0,0,0.9);
    gap:0;
    text-align:center;
    max-height:0;
    overflow:hidden;
    transition:all .35s ease;
  }

  nav ul.active{
    max-height:400px;
  }

  nav ul li a{
    display:block;
    padding:14px 0;
    font-size:16px;
  }
}

@media (max-width: 480px){
  .logo img{
    height:45px;
    max-width:160px;
  }

  nav ul li a{
    font-size:15px;
  }
}

/* safety */
@media (max-width:768px){
  body{
    overflow-x:hidden;
  }
} 

/* toggle button */
.menu-toggle{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

@media (max-width:768px){
  .menu-toggle{
    display:block;
    float: right;
  }
}  


/* =========================
   HERO RESPONSIVE ONLY
========================= */

/* Tablet */
@media (max-width: 992px){
  .hero-video{
    height:90vh;
  }

  .hero-overlay{
    top:32%;
    padding:0 20px;
  }

  .hero-overlay h1{
    font-size:44px;
  }

  .typing{
    width:24ch;
    animation:typing 3.5s steps(24,end) infinite,
              blink .8s step-end infinite;
  }
}

/* Mobile */
@media (max-width: 768px){
  .hero-video{
    height:85vh;
    width:100%;
  }

  .hero-overlay{
    top:35%;
    padding:0 15px;
  }

  .hero-overlay h1{
    font-size:32px;
    line-height:1.3;
  }

  .typing{
    width:20ch;
    border-right:2px solid #caa169;
    animation:typing 3s steps(20,end) infinite,
              blink .8s step-end infinite;
  }
}

/* Small Mobile */
@media (max-width: 480px){
  .hero-video{
    height:80vh;
  }

  .hero-overlay{
    top:38%;
  }

  .hero-overlay h1{
    font-size:26px;
  }

  .typing{
    width:18ch;
    animation:typing 2.8s steps(18,end) infinite,
              blink .7s step-end infinite;
  }
}

/* SAFETY */
@media (max-width:768px){
  body{
    overflow-x:hidden;
  }
}




/* why choose us rensponsive */
/* Tablet */
@media (max-width: 992px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
}


/* testominals rensponsive */
/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* popular place rensponsive */

/* Tablet: 2 per row */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 576px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}




/* newssss,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */
/* .news-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.news-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 5px solid #ff6b00;
  padding-left: 12px;
}

#newsList li {
  list-style: none;
  margin-bottom: 15px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 6px;
}

#newsList li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

#newsList li a:hover {
  color: #ff6b00;
}









 */
/* Transparent Header (News Page) */
/* header {
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 100;
} */

/* NEWS SECTION */
.news-section {
  padding: 140px 40px 60px;
  max-width: 1200px;
  margin: auto;
}

.news-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  border-left: 6px solid #ff6b00;
  padding-left: 14px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card h3 {
  padding: 15px;
  font-size: 18px;
  color: #222;
}

.news-card a {
  text-decoration: none;
  color: inherit;
}





/*  button rensponsive */
/* MOBILE RESPONSIVE ONLY */
@media (max-width: 768px) {
  .property-type-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 60px;
  }

  .property-type-buttons .type-btn {
    width: 100%;
    padding: 14px 10px;
    font-size: 16px;
  }
}
