* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Maison Neue', sans-serif;
}

:root {
  --font-heading: 'Canela', serif;
  --font-body: 'Maison Neue', sans-serif;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

body,
p,
nav,
button {
  font-family: var(--font-body);
}


/* Buttons */
button,
.btn {
  font-family: var(--font-body);
  font-weight: 500;
}


body {
  overflow-x: hidden;
  color: #222
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #121b3a;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%
}

.logo {
  height: 50px
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  font-weight: 600;
  color: #fff
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
}

/* Hero */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .7), rgba(0, 0, 0, .2))
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2
}

.hero-overlay h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  max-width: 520px
}

.hero-overlay p {
  margin: 15px 0
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* Buttons */
.btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500
}

.primary {
  background: #f4b400;
  color: #000
}

.outline {
  border: 2px solid #fff;
  color: #fff
}

.center {
  display: block;
  width: fit-content;
  margin: 30px auto
}

/* Sections */
section {
  padding: 80px 8%
}

.about {
  text-align: center;
  /* max-width: 850px; */
  margin: auto
}

.about h2 {
  margin-bottom: 15px
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  background: #003c8f;
  color: #fff
}

.stat {
  text-align: center
}

.stat h3 {
  font-size: 2.4rem;
  color: #f4b400
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  background: #f7f9fc
}

.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-8px)
}

.service-card i {
  font-size: 36px;
  color: #003c8f;
  margin-bottom: 15px
}

/* Projects */
.projects {
  text-align: center
}

.project-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 15px 0;
}

.project-slider::-webkit-scrollbar {
  display: none
}

.project {
  min-width: 300px;
  height: 200px;
  border-radius: 18px;
  background-size: cover;
  position: relative;
  scroll-snap-align: center
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  border-radius: 18px
}

.project .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff
}

/* ------ */
/* Projects Page */
.projects-page {
  padding: 100px 8%;
}

/* Project row */
.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  /* margin-bottom: 120px; */
}

/* Reverse layout */
.project-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.project-row.reverse .project-image {
  order: 2;
}

.project-row.reverse .project-content {
  order: 1;
}

/* Image */
/* Projects Page Hero */

/* Enhanced Projects Hero */
.projects-hero.enhanced {
  position: relative;
  height: 320px;
  background: url("/assets/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-hero.enhanced::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.75));
}

.projects-hero-overlay {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.projects-hero-overlay h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.projects-hero-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

.projects-hero {
  padding: 140px 8% 80px;
  text-align: center;
  background: #f7f9fc;
}

.projects-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.projects-hero p {
  font-size: 16px;
  color: #666;
}

/* Projects Section */
.projects-page {
  padding: 70px 0px;
}

/* Row */
.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 20px 8%;
}

/* Alternate backgrounds */
.bg-light {
  background: #ffffff;
}

.bg-dark {
  background: #f2f4f7;
}

/* Reverse layout */
.project-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.project-row.reverse .project-image {
  order: 2;
}

.project-row.reverse .project-content {
  order: 1;
}

/* Image */
.project-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Content */
.project-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.project-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
  margin-bottom: 12px;
}

.project-location {
  font-size: 14px;
  color: #003c8f;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 900px) {

  .project-row,
  .project-row.reverse {
    grid-template-columns: 1fr;
    padding: 5px 6%;
    gap: 35px;
  }

  .project-row.reverse .project-image,
  .project-row.reverse .project-content {
    order: unset;
  }

  .projects-hero h1 {
    font-size: 30px;
  }

  .project-content h2 {
    font-size: 26px;
  }
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px
}

.contact-card {
  background: #f7f9fc;
  padding: 30px;
  border-radius: 18px
}

.socials {
  display: flex;
  gap: 16px
}

.socials a {
  width: 44px;
  height: 44px;
  background: #003c8f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Footer */
.footer {
  background: linear-gradient(to right,
      #0a0a0a,
      #111,
      #0a0a0a);
  color: #ddd;
  padding: 70px 8% 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  align-items: flex-start;
}

/* Brand */
.footer .brand img {
  height: 115px;
  margin-bottom: 0px;
}

.footer .brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Headings */
.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f4b400;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* Text */
.footer p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Icons */
.footer i {
  color: #f4b400;
  /* margin-right: 10px; */
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #f4b400;
  color: #000;
}

/* Footer with image background */
.footer-image {
  position: relative;
  background: url("/assets/footer-bg.jpg") center/cover no-repeat;
  color: #ddd;
}

/* Dark fade overlay */
.footer-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.9));
  z-index: 0;
}

/* Keep content above overlay */
.footer-image .footer-container {
  position: relative;
  z-index: 1;
}

.footer-image {
  backdrop-filter: saturate(120%);
}

.footer h4::after {
  opacity: 0.8;
}


/* Timing */
.footer .timing {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}




/* Floating */
.float-btn {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 9999
}

.call {
  bottom: 90px;
  background: #003c8f
}

.whatsapp {
  bottom: 20px;
  background: #25d366
}

/* Mobile */
@media(max-width:768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #121b3a;
    flex-direction: column;
    width: 220px
  }

  nav a {
    padding: 15px;
    /* border-bottom: 1px solid #eee */
  }

  .menu-toggle {
    display: block
  }

  .hero-overlay {
    left: 6%
  }

  .hero-buttons {
    flex-direction: column
  }

  .hero-buttons .btn {
    width: 90%;
    text-align: center
  }

  .footer {
    padding: 60px 6% 40px;
  }

  .footer-container {
    gap: 35px;
  }
}

/* Our Projects */

/* Projects Gallery Section */
.projects-gallery {
  padding: 90px 8%;
  background: #fff;
}

/* Category Tabs */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  font-weight: 600;
}

.project-tabs span {
  cursor: pointer;
  color: #777;
  position: relative;
}

.project-tabs .active {
  color: #003c8f;
}

.project-tabs .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #003c8f;
  left: 0;
  bottom: -8px;
}

/* Category */
.project-category {
  margin-bottom: 80px;
}

.project-category h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #111;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .project-tabs {
    gap: 20px;
    font-size: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }

  .project-category h2 {
    font-size: 22px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 92%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

/* Intro Video Section */
.intro-video {
  background: #f7f9fc;
  padding: 80px 8%;
}

.video-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.video-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.video-text p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Video styling */
.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: #000;
}

/* Mobile */
@media (max-width: 900px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .video-frame video,
  .video-frame iframe {
    height: 220px;
  }

  .video-text {
    text-align: center;
  }
}


.lazy-video {
  position: relative;
  cursor: pointer;
}

.lazy-video img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
}
/* ---------- */
/* ===== Presence Section ===== */
.presence-section {
  background: linear-gradient(180deg, #0b1a2a, #081421);
  padding: 100px 20px;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 0;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-header p {
  font-size: 16px;
  color: #b5c7dc;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Dark overlay */
.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.6)
  );
}

.map-img {
  width: 100%;
  display: block;
}

/* Legend */
.map-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #dbe6f3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.dot.residential {
  background: #ffd166;
}

.dot.commercial {
  background: #4dabf7;
}

.dot.investment {
  background: #69db7c;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .presence-section {
    padding: 70px 15px;
  }
}

.map-section {
      padding: 30px 5%;
}