/* body {
  margin: 0;
  
  font-family: 'Roboto', ui-sans-serif, system-ui, sans-serif;

 
} */

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}



/* h1,h2,h3{
    font-family: 'Roboto', ui-sans-serif, system-ui, sans-serif !important;
    font-size: 40px !important;
} */

h1 {
  font-weight: 500 !important;
}

p {
  font-weight: 400 !important;
}





/* NAVBAR (overlay on hero) */
.navbar {
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(5px);
  position: fixed;
  top: -0px;
  left: 0;
  right: 0;
  width: 100%;
  /* border: navajowhite; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  color: rgb(0, 0, 0);
  z-index: 999;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  top: 20;
  color: #000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}



/* NAVBAR LEFT - Logo & Menu */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 55px;
  width: auto;
}


.menu {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-content: start;
  margin: 0;
  padding: 0;
}

.menu li {
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

.menu li:hover {
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right i {
  cursor: pointer;
}


.navbar-image {
  width: 100vw !important;   /* 🔥 FORCE FULL SCREEN */
  margin: 0;
  padding: 0;
  position: relative;
  left: 0;
}


.navbar-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block; 
  overflow-x: hidden;
}

/* =================================================================================================== */
/* GLOBAL RESET (IMPORTANT) */


/* IMAGE SECTION */
.navbar-image {
  width: 100%;            /* 🔥 safer than 100vw */
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* IMAGE */
.navbar-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* ================= TABLET ================= */
@media (max-width: 768px) {
  .navbar-image img {
    height: 80vh; /* 🔥 thoda reduce */
  }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .navbar-image img {
    height: 70vh;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 300px) {
  
  .navbar-image img {
    height: 60vh; /* 🔥 ultra small devices */
  }

}



/* ==================================quietle section bottom to top carousle image=================== */

/* DETAIL SECTION */
.detail-section {
  background: #bd9443;
  color: #fff;
  padding: 80px 5%;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.detail-subtitle {
  display: inline-block;
  color: #070707;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.detail-left h2 {
  font-size: 3rem;
  margin: 0 0 2.5rem;
  line-height: 1.05;
}

.detail-stats {
  display: grid;
  gap: 2rem;
}

.detail-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.detail-stat-label {
  color: #030303;
  font-size: 0.95rem;
}

.detail-right h1 {
  font-size: 2.8rem;
  margin: 0 0 1.5rem;
  line-height: 1.05;
}

.detail-right p {
  max-width: 780px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn.icon-btn {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* =========================video section========================== */

.video-section {
    padding: 10px 80px 80px 80px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-button {
  pointer-events: auto;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.video-button i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-left h2,
  .detail-right h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .detail-section {
    padding: 60px 3%;
  }

  .detail-stat-value {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }
}

/* LEFT TEXT */
.bottom-bar .left strong {
  display: block;
  font-size: 14px;
}

.bottom-bar .left span {
  font-size: 13px;
  color: #666;
}

/* BUTTONS */
.btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.btn.light {
  background: white;
  border: 1px solid #333;
}

.btn.light:hover {
  background: #333;
  color: white;
}

.btn.dark {
  background: #000000;
  color: white;
}

.btn.dark:hover {
  background: #000;
}

/* ======================================================================== */
/*================== FIXED BOTTOM BAR (DESKTOP) ============================*/
/* ============================= ==========================================*/




/* end section===================================================== */

/* carousel section start====================================================== */



/* NAV */
.carousel-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  background: white;
  /* z-index: 100; */
  width: 90%;
}

.carousel-nav::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
  margin-right: 20px;
}

.carousel-nav button {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* CAROUSEL */
.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: calc(100% / 3); /* 3 images visible */
  position: relative;
}


.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* NAV */
.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px;
}

.carousel-nav button {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

/* CONTENT */
.slide-content {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.slide-content button {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
}

/* ================sedction end================================ */

/* =======================zigzag section======================== */
 


/* ====================card carousel ========================== */


.units {
  padding: 60px 5%;
  background: #f5f5f5;
  text-align: center;
  
  
}

.units h2 {
  /* font-size: 38px; */
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/* GRID */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  align-items: start;
  justify-content: center;
  gap: 30px;
}

/* CARD */
.unit-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.image-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.image-slider:hover .prev,
.image-slider:hover .next {
  opacity: 1;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4c08a;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

/* HEART */
.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 5px 8px;
  border-radius: 50%;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

.card-content h3 {
  margin: 0;
  text-align: left;
  font-size: 26px !important;
}

.location {
  color: #777;
  font-size: 14px;
  text-align: left;
  padding: 10px 0;
}

.price {
  font-weight: bold;
  margin: 10px 0;
  text-align: left;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.explore-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.unit-card:hover .explore-btn {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */
@media(max-width: 992px){
  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 10px;
  }
}

/* MOBILE */
@media(max-width: 600px){
  .unit-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .unit-card {
    width: 100%;
  }

  .slides img {
    height: 200px;
  }

  .explore-btn {
    opacity: 1;
    transform: none;
  }

  .prev, .next {
    opacity: 1;
  }
}

 /* ==========================car map scrolling section================== */

.title {
  text-align: center;
  font-size: 40px;
  margin: 40px 0;
}

/* SECTION */
.map-section {
  height: 150vh;
  position: relative;
}

/* STICKY */
.map-sticky {
  position: sticky;
  top: 120px; /* navbar adjust */
  height: calc(100vh - 120px);
  overflow: hidden;
}

/* MAP */
.map {
  width: 100%;
  height: 100%;
  border: none;
}

/* OVERLAY */
.car-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* LINE */
.line {
  position: absolute;
  top: 8%;
  width: 100%;
  height: 2px;
  background: #aaa;
}

/* CAR */
.car {
  position: absolute;
  top: 6%;
  left: 10%;
  transform: translateY(-50%);
  transition: 0.2s;
}

.car img {
  width: 120px;
}

/* RADIUS */
.radius {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/* LOCATION */
.location {
  position: absolute;
  border: 2px solid green;
  background: white;
  color: black;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.location.active {
  opacity: 1;
  transform: translateY(0);
}
    


/* =====================last section of card============================ */




/* =========================FQ section============================ */


/* ====================================title section================================== */
/* ================= BASE ================= */
.expertise {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* LEFT */
.expertise-left {
  width: 55%;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* RIGHT */
.expertise-right {
  width: 45%;
}

.expertise-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING */
.expertise-left h4 {
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 20px;
}

/* TEXT */
.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* STATS */
.stats {
  display: flex;
  flex-wrap: wrap; /* 🔥 important */
  gap: 30px;
  margin-bottom: 40px;
}

.stats div {
  min-width: 120px;
}

.stats h3 {
  font-size: 24px;
  margin: 0;
}

.stats p {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

/* BUTTON */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #222;
  color: white;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: black;
}

/* ================= TABLET ================= */
@media (max-width: 992px){

  .expertise {
    flex-direction: column;
  }

  .expertise-left,
  .expertise-right {
    width: 100%;
  }

  .expertise-left {
    padding: 60px 40px;
  }

  .expertise-right img {
    height: 400px;
  }

}

/* ================= MOBILE ================= */
@media (max-width: 768px){

  .expertise-left {
    padding: 40px 20px;
  }

  /* 🔥 STATS GRID */
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 column */
    gap: 15px;
  }
.stats h2{
  font-size: 18px !important;
}
  .stats h3 {
    font-size: 15px ;
  }

  .stats p {
    font-size: 11px;
  }

  /* BUTTON CENTER */
  .xbtn {
    margin: auto;
    display: flex;
    justify-content: center;
  }

}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px){

  .desc {
    font-size: 13px;
  }

  .stats {
    grid-template-columns: 1fr; /* 🔥 1 column */
  }

  .expertise-right img {
    height: 300px;
  }

}

/* ================= EXTRA SMALL ================= */
@media (max-width: 320px){

  .expertise-left {
    padding: 30px 15px;
  }

  .btn {
    width: 100%;
  }

}

/* ===========================end-==================================== */

/* ==========================footer======================================= */


