body {
    scroll-behavior: smooth;
    background-color: #fdfde8;
     font-family: 'Open Sans', sans-serif;
     color: #222;
}

p{
    font-size: 15px;
    line-height: 1.6;
    color: #444 !important;
}
/* HEADER */
.skyline-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
   background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

.skyline-header.scrolled {
 background: rgba(0, 0, 0, 0.35);  
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SOCIAL ICONS */
.header-social a {
  color: #fff;
  margin-right: 14px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.header-social a:hover {
  background: #fff;
  color: #000;
}

/* LOGO */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}

.header-logo img {
  height: 85px;
}

/* MENU */
.header-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  cursor: pointer;
}

.header-menu span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* HAMBURGER */
.menu-icon {
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: #fff;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-social {
    display: none;
  }

  .header-container {
    padding: 15px 20px;
    gap:85px;
  }
  .header-logo img {
    height: 60px;
}

}
.menu-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 14px;
    background: transparent;
}

/* ===== OFFCANVAS MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #2b2b2b;
    transition: 0.4s ease;
    z-index: 1000;
    padding: 25px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #c9a84f;
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin: 15px 0;
}

.mobile-menu .submenu {
    display: none;
    padding-left: 15px;
}

.close-btn {
    color: #c9a84f;
    font-size: 26px;
    cursor: pointer;
}

.skyline-header .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

.skyline-header .overlay.active {
    display: block;
}


/* ===== Footer STYLES ===== */

.site-footer {
  background-color: #edf1d0;
  padding: 60px 20px;
  
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
}

.footer-logo img {
  width: 150px;
}

.footer-brand p {
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* Columns */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #555;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
}

.mt {
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }


}




/* home */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.6)),
    url('../img/project-one.jpg') center/cover no-repeat;
}

.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  
}

/* Slider */
.hero-slider, .slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* CENTERED CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
 font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 em {
  font-style: italic;
  
}

.hero-content p {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #fff !important;
}

/* Button */
.hero-btn {
  border: 1px solid #fff;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* Agents */
.hero-agents {
  position: absolute;
  bottom: 30px;
  left: -180px;
}

.hero-agents img{
  width: 120px;
}

.avatars img:first-child {
  margin-left: 0;
}

.plus {
  background: #fff;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  opacity: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-agents {
    left: 0px;
  }
  .hero-agents img{
  width: 80px;
}
}

@media (max-width: 576px) {
  .hero {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-agents {
    flex-direction: column;
  }
}




.service-card {
    transition: transform .3s ease;
    background: #fff;
}
.service-card:hover {
    transform: translateY(-10px);
}

.project-card {
    position: relative;
    overflow: hidden;
    height:450px
}
.project-card img {
    transition: transform .4s ease;
}
.project-card:hover img {
    transform: scale(1.1);
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}
.project-card:hover .project-overlay {
    opacity: 1;
}

/* about */

.about-section {
  background: #fdfde8;
  padding: 80px 20px;
  
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.about-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 900;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0;
}

.about-content h2 em {
  font-style: italic;
}

.about-desc {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-content h4 {
  margin-top: 25px;
  font-size: 20px;
}

.mission-list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.mission-list li {
  margin-bottom: 8px;
  color: #444;
}

/* CTA */
.about-cta {
  margin-top: 30px;
  background: #1f1f1f;
  color: #fff;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.about-cta em {
  font-style: italic;
}

.about-section .btn-outline {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.about-section .btn-outline:hover {
  background: #fff;
  color: #000;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-cta {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateX(0);
}


/*our services*/

.services-section {
  background: #F4F6E4;
  padding: 80px 20px;
  
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 900;
}

.services-header h2 {
  font-size: 42px;
  margin-top: 15px;
  line-height: 1.2;
}

.services-header em {
  font-style: italic;
}

/* Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  gap: 5px;
  justify-content: center;
}

.service-card {
  padding: 35px 25px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fdfde8;
  width: calc(33.333% - 10px);
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.services-section .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.service-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid #ddd;
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .services-header h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    width: 100%;
  }
}

/* project section */


.projects {
  background: #fdfde8;
 
}

.projects .container {
  max-width: 1200px;
  margin: auto;
  justify-content: center;
}

/* Header */
.projects-header {
  display: flex;
  justify-content: space-between;
  gap: 280px;
  margin-bottom: 55px;
}

.tag {
  font-size: 16px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 900;
}

.header-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-top: 12px;
}

.header-left em {
  font-style: italic;
}

.header-right {
  max-width: 420px;
}

.header-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.projects-header .btn-outline {
  border: 1px solid #000;
  padding: 10px 22px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.projects-header.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.projects-grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
  color: #fff;
}

.location {
  font-size: 12px;
  opacity: 0.85;
}

.card-overlay h3 {
  font-size: 22px;
  margin: 8px 0 14px;
}

.meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  opacity: 0.9;
}

.card-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.btn-card {
  border: 1px solid #fff;
  padding: 6px 16px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}

.btn-card:hover {
  background: #fff;
  color: #000;
}

.info-block .btn-outline{
  border: 1px solid #000;
    padding: 10px 22px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}
.projects h2{
  font-size: 42px;
  line-height: 1.2;
  
}
.project-section h2{
  font-size: 42px;
  line-height: 1.2;
  
}

/* Responsive */
@media (max-width: 992px) {
  .projects-header {
    flex-direction: column;
     gap: 7px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .projects-grids {
    grid-template-columns: repeat(2, 1fr);
  }


  .header-left h2 {
    font-size: 28px;
  }
  .projects h2{
    font-size: 28px;
  }
  .project-section h2{
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-grids {
    grid-template-columns: 1fr;
  }

  .header-left h2 {
    font-size: 28px;
  }
}


.project-image img{
    border-radius:4px;
    display:block;
}

/* Optional luxury spacing */
.info-block h5{
    font-size:22px;
}

/* Mobile alignment */
@media (max-width:768px){
    .info-block{
        text-align:center;
    }
    .project-image img{
      margin-top: 50px;
    }
}


/* animated flats css */

.flat-rotate-section {
  display: flex;
  gap: 130px;
  justify-content: center;
    flex-wrap: wrap;
  width: 100%;
}

.flat-box {
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.image-stage {
  perspective: 1200px;
}


.rotate-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.1s linear;
  transform-style: preserve-3d;
  /* box-shadow: 0 25px 60px rgba(0,0,0,0.35); */
}


/* Mobile */
@media (max-width: 768px) {
  .flat-box {
    max-width: 90%;
  }
  .flat-rotate-section {
    gap: 40px;
     
  }
}








/* why choose us section */

.why-choose {
  position: relative;
  min-height: 100vh;
  background: url("../img/why-choose.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  color: #fff;
  
}
.why-choose .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.why-choose .tag {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.container {
  position: relative;
  max-width: 1200px;
  padding: 60px 20px;
  width: 100%;
}

.content {
  max-width: 600px;
}



.content h2 {
  font-size: 44px;
  margin: 15px 0;
  line-height: 1.2;
}

.content h2 span {
  font-style: italic;
}

.content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
  color: #fff !important;
}

/* Stats */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat small {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 700;
  color: #fff;
}

.stat h3 {
  font-size: 45px;
  margin-top: 5px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose {
    min-height: auto;
    padding: 80px 0;
  }

  .stats {
    gap: 25px;
  }
 .content h2{
    font-size: 28px;
  }

}


/* Gallery section */

.gallery-section {
  background: #f7f9e8;
  padding: 80px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

/* DESKTOP GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* DEFAULT IMAGE */
.gallery-item {
  
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FIRST & THIRD ROW (3 IMAGES) */
.gallery-item {
  grid-column: span 2;
}

/* SECOND ROW (2 BIG IMAGES) */
.gallery-item.big {
  grid-column: span 3;
  
}

/* TABLET */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item.big {
    grid-column: span 1;
    height: 220px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.big {
    height: 200px;
  }
}



/* testimonials section */

.testimonials-section {
 
  padding: 30px 19px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 12px;
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 260px;
}

.heading h2 {
  font-size: 44px;
}

.heading span {
  font-style: italic;
}

.btn {
  border: 1px solid #000;
  padding: 10px 18px;
}
.testimonials{
  padding: 0px 20px;
}
.quote i {
  font-size: 40px;
  color: #c9a84f;
  margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .heading {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .heading h2 {
    font-size: 28px;
 
}
.testimonials{
  padding: 0px 20px;
}

}

#customers-testimonials .item {
  text-align: center;
}

/* Card */
.slide-content {
  background-color: #f4f6e4;
  padding: 30px;
  border-radius: 10px;
  height:300px
}

/* Quote image */
.quote {
  width: 40px;
  margin: 0 auto 15px;
}

/* Text */
.slide-subtext {
  margin-bottom: 16px;
}

.name {
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .slide-content {
    height: auto;
  }
}

/* ================= DOTS ================= */

#customers-testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}

#customers-testimonials .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 5px 7px;
  transition: 0.3s;
}

#customers-testimonials .owl-dot.active span {
  background: #000;
}

/* ================= NAV ARROWS ================= */

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.owl-carousel .owl-prev {
  left: -45px;
}

.owl-carousel .owl-next {
  right: -45px;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
  background: rgba(0,0,0,0.85);
}
.owl-carousel .owl-item img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}




/* Discover more section */

.discover-section {
  position: relative;
  background: url("../img/disc-bg.jpeg") center/cover no-repeat;
  height: 390px;
  display: flex;
  align-items: center;
  color: #fff;
}

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

.discover-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

/* TAG */
.discover-tag {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 900;
  display: inline-block;
  
}

/* GRID */
.discover-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 278px;
}

/* LEFT */
.discover-left h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.discover-left h2 em {
  font-style: italic;
  font-weight: 400;
}

/* USERS */
.discover-users {
  display: flex;
  align-items: center;
}

.discover-users img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -12px;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  font-size: 16px;
}

/* RIGHT */
.discover-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff !important;
  margin-bottom: 30px;
  max-width: 420px;
}

/* BUTTONS */
.discover-actions {
  display: flex;
  gap: 15px;
}

.btn-light {
  background: #fff;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.discover-section .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
}

/* TABLET */
@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .discover-left h2 {
    font-size: 28px;
  }

  .discover-section {
    height: auto;
    padding: 60px 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .discover-section {
    padding: 80px 0;
    min-height: auto;
  }

  .discover-left h2 {
    font-size: 28px;
  }
.btn-light{
    padding: 12px 22px;
    font-size: 14px;}
 
}



/* Blog section */

.blog-section {
  background: #f7f9e8;
 
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 295px;
  
}

.tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 900;
}

.blog-header h2 {
  font-size: 42px;
  line-height: 1.2;
}

.blog-header em {
  font-style: italic;
}

.blog-header p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.blog-section .btn-outline {
  display: inline-block;
  border: 1px solid #111 !important;
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
  color: #111 !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #111;
  color: #fff;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 22px;
}

.blog-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content .meta {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #fff !important;
}

.blog-content a {
  font-size: 14px;
  color: #d6b15a;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 992px) {
  .blog-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 0px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-header h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 220px;
  }
}


/* faq section */

.faq-section {
  background: #edf1d0;
  
}

.container {
  max-width: 1200px;
  margin: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FAQ LEFT */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding:  10px 0px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 5px;
  font-size: 14px;
  line-height: 1.6;
  
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* RIGHT CONTENT */


.faq-right h2 {
  font-size: 44px;
  margin: 15px 0;
}

.faq-right em {
  font-style: italic;
}

.faq-right p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.faq-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #111;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
}

.faq-section .btn-outline {
  border: 1px solid #111;
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
}

.faq-section .icon {
  font-size: 10px;
  transition: transform 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-right h2 {
    font-size: 28px;
  }
}

/*  signup section   */

.newsletter-section {
  position: relative;
  background: url('../img/signup-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  background-attachment: fixed;
}

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

.newsletter-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.newsletter-text h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.newsletter-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.newsletter-text p {
  font-size: 14px;
  color: #fff !important;
  max-width: 480px;
  line-height: 1.6;
}

/* FORM */
.newsletter-form {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid rgba(255,255,255,0.6); */
  padding-bottom: 8px;
  max-width: 420px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-form button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.newsletter-section .btn-outline {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.newsletter-section .btn-outline:hover {
  background: #fff;
  color: #000;
}

/* TABLET */
@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    margin-left: 0;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .newsletter-section {
    padding: 70px 0;
  }

  .newsletter-text h2 {
    font-size: 28px;
  }

  .newsletter-form {
    max-width: 100%;
  }
}



/* -----------------About us Page Styles ----------------------*/

/* ABOUT BANNER */
.about-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../img/signup-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.about-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 90%;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
    margin-left: 110px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
}

/* TITLE */
.about-banner-content h1 {
    font-size: 56px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-banner {
        min-height: 500px;
    }

    .about-banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 500px;
    }

    .about-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        min-height: 40vh;
    }

    .breadcrumb {
        font-size: 12px;
        margin-left: 40px;
    }

    .about-banner-content h1 {
        font-size: 30px;
    }
}


/* -----------------projects Page Styles ----------------------*/

.projects-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../img/signup-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.projects-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.projects-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 90%;
}

/* TITLE */
.projects-banner-content h1 {
    font-size: 56px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .projects-banner {
        min-height: 500px;
    }

    .projects-banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .projects-banner {
        height: 500px;
    }

    .projects-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .projects-banner {
        min-height: 40vh;
    }

    .breadcrumb {
        font-size: 12px;
        margin-left: 40px;
    }

    .projects-banner-content h1 {
        font-size: 30px;
    }
}


/* SECTION */

.spec-container {
    max-width: 1200px;
    margin: auto;
   
    gap: 40px;
    flex-wrap: wrap;
}
.specifications-section{
   font-family:'Poppins', sans-serif;
}

/* TITLE */
.spec-title{
    font-size:42px;
    font-weight:500;
    color:#1c2b2d;
}

/* SPEC BOX */
.spec-box{
    background:#edf1d0;
    padding:16px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:0.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.spec-box:hover{
    transform:translateY(-5px);
}

/* ICON */
.spec-box i{
    font-size:22px;
    color:#0c3b2e;
    min-width:30px;
}

/* TEXT */
.spec-text{
    font-size:16px;
    font-weight:500;
    color:#0c3b2e;
}

/* MOBILE */
@media(max-width:576px){
    .spec-title{
        font-size:28px;
    }
}

.floor-plan-section .container { max-width: 1200px; margin: auto; display: block; gap: 40px; flex-wrap: wrap; }

.floor-plan-section .zoom-img {
    overflow: hidden;        /* hides extra zoom area */
    border-radius: 10px;     /* optional premium look */
}

.floor-plan-section .zoom-img img {
    transition: transform 0.5s ease;
}

.floor-plan-section .zoom-img:hover img {
    transform: scale(1.1);   /* zoom level */
}

/* -----------------services Page Styles ----------------------*/

.services-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("../img/signup-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.services-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.services-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 90%;
}

/* TITLE */
.services-banner-content h1 {
    font-size: 56px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-banner {
        min-height: 500px;
    }

    .services-banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .services-banner {
        height: 500px;
    }

    .services-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .services-banner {
        min-height: 40vh;
    }

    .breadcrumb {
        font-size: 12px;
        margin-left: 40px;
    }

    .services-banner-content h1 {
        font-size: 30px;
    }
}

/* -----------------contact Page Styles ----------------------*/

.contact-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../img/signup-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.contact-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 90%;
}

/* TITLE */
  .contact-banner-content h1 {
      font-size: 56px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-banner {
        min-height: 500px;
    }

    .contact-banner-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 500px;
    }

    .contact-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        min-height: 40vh;
    }

    .breadcrumb {
        font-size: 12px;
        margin-left: 40px;
    }

    .contact-banner-content h1 {
        font-size: 30px;
    }
}


.contact-section {
  padding: 0px 20px;
  background-color: #edf1d0;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.small-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #222;
}

.contact-info h2 {
  font-size: 42px;
  margin: 20px 0 40px;
}

.contact-info em {
  font-style: italic;
  font-family: Georgia, serif;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-grid h3 {
  margin-bottom: 8px;
}

.info-grid p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}
.info-grid a{
  text-decoration: none;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #f7f7e8;
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 10px 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 30px;
}

.contact-form button {
  width: 100%;
  background: #a08c3b;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}


/* MAP SECTION */
.google-map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
}

/* iframe */
.google-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* IMPORTANT */
}

/* Click layer */
.map-click-layer {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

/* Overlay text */
.map-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .google-map-wrapper {
    height: 280px;
  }

  .map-overlay-text {
    font-size: 13px;
    padding: 6px 12px;
  }
}


/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #e7e769, #bdbd3d);
  color: #111;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 
    transform 0.35s cubic-bezier(.4,1.4,.6,1),
    box-shadow 0.35s ease,
    opacity 0.3s ease;
  z-index: 999;
}

/* Hover – GD bounce feel */
#scrollTopBtn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Click ripple */
#scrollTopBtn:active {
  transform: scale(0.92);
}

/* Show animation */
#scrollTopBtn.show {
  display: flex;
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* end of scroll to top button styles */


/* ================= THEME TOGGLE BUTTON ================= */

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: #80e003;
  color: #000;
  border-color: #80e003;
}



/* ================= DARK MODE ================= */

/* ================= DARK MODE ================= */

/* ================= DARK MODE ================= */


.menu-btns {
    border: 1px solid #fff;
    color: #fff;
    padding: 9px;
    background: transparent;
}
.moon-icon {
  color: #F4D35E;   
  font-size: 18px;
}

.sun-icon {
  color: #FF7B00;  
  font-size: 18px;
}


body.dark-mode {
  background-color: #121212; /* soft black */
  color: #fff;
}

/* Global text */
body.dark-mode p,
body.dark-mode li,
body.dark-mode .faq-answer,
body.dark-mode .faq-question {
  color: #fff !important;
}

/* Headings */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #80e003;
}

/* Section backgrounds */
body.dark-mode .about-section,
body.dark-mode .services-section,
body.dark-mode .projects,
body.dark-mode .gallery-section,
body.dark-mode .blog-section,
body.dark-mode .faq-section,
body.dark-mode .contact-section,
body.dark-mode .site-footer,
body.dark-mode .testimonials {
  background: #181818;
}

/* Cards */
body.dark-mode .service-card,
body.dark-mode .slide-content,
body.dark-mode .contact-form {
  background: #1e1e1e;
}

/* Borders */
body.dark-mode .services-grid,
body.dark-mode .service-card,
body.dark-mode .faq-item {
  border-color: rgba(255,255,255,0.15);
}

/* Links */
body.dark-mode .btn-primary,
body.dark-mode .btn-outline,
body.dark-mode a {
  color: #80e003 !important;
  border-color:#80e003 !important;
}
body.dark-mode .btn-light,
body.dark-mode .btn-primary{
  background: #80e003;
  color: #000 !important;
}

body.dark-mode a:hover {
  color: #a6ff2e;
}

body.dark-mode .blog-card {
  background-color: #444;
}

/* Footer text */
body.dark-mode .footer-col h4,
body.dark-mode .footer-col ul li,
body.dark-mode .footer-col ul li a {
  color: #fff;
}

/* FAQ icons */
body.dark-mode .faq-section .icon {
  color: #80e003;
}

/* Scroll to top button (dark mode) */
body.dark-mode #scrollTopBtn {
  background: linear-gradient(135deg, #80e003, #4ea800);
  color: #000;
}
