/*disclaimer*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: white;
}

/* Popup Background (blur + dim) */
.disclaimer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.685);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Show popup */
.disclaimer-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* Popup Box */
.disclaimer-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.disclaimer-content h2 {
  position: sticky;
  top: -30px;
  background: #fff;
  /* same background as header */
  z-index: 10;
  padding: 20px 0;
  color: #0071bb;
}

/* Scrollbar styling */
.disclaimer-content::-webkit-scrollbar {
  width: 8px;
}

.disclaimer-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

/* Text */
.disclaimer-content h2 {
  margin-top: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.disclaimer-content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #000000;
}

/* Button */
#agreeBtn {
  background: #0071bb;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  float: right;
}

#agreeBtn:hover {
  background: #333;
}

/* Slide animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Global Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #333;
  background: #ffffff;
}

h1 {
  color: white;
}

h2,
h3 {
  color: #0b3954;
}

a {
  text-decoration: none;
  color: #0b3954;
}

.btn {
  background: #00a8cc;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #007a99;
}

/* Navbar */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #f7f7f7;
}

/* Navbar container */

.navbar,
.sticky-navbar {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin: 0 auto;
  padding: 15px 250px;
  display: fixed;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  top: 0;
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
}

.sticky-navbar {
  top: 0;
  transform: translateY(-110%);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  top: 0;
}

sticky-navbar .sticky-navbar {
  top: 0;
  transform: translateY(-100%);
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
}

/* Hamburger Menu */
.menu-toggle {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: rgb(0, 0, 0);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When active (turns into X) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  background: transparent;
  position: fixed;
  top: 100px;
  left: 72%;
  width: 13%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}




.mobile-menu.open {
  height: 44vh;
  overflow-y: auto;
}

/* Menu List */
.mobile-menu ul {
  list-style: none;
  padding: 10px;
  border: none !important;
  outline: none !important;
}

.mobile-menu li {
  margin: 5px 0;
  background: #fffefe;
  transition: background 0.3s;
  border: none !important;
  outline: none !important;
}

.mobile-menu li a {
  display: block;
  padding: 7px 25px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu li a.active,
.mobile-menu li a:hover {
  background: #0071bb;
  color: white;
}

/* Dropdown */
.submenu {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.dropdown.open>.submenu {
  max-height: 300px;
  opacity: 1;
}

.submenu li a {
  padding-left: 25px;
  background: transparent;
}

/* SCROLL CLASSES */
.hide-top {
  transform: translateY(-100%);
}

.show-sticky {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  top: -50px;
  height: 105vh;
  background: url("temfrontbg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-content {
  position: absolute;
  bottom: 1%;
  left: 51%;
  text-align: center;
  transform: translateX(-80%);
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-align: left;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
}

/* Sections */
section {
  padding: 60px 10%;
}

.projects-preview h2,
.projects-list h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* All Project */

/* LUXURY DARK THEME */
body.luxury-dark {
  background: #05090f;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.lux-hero {
  height: 80vh;
  background: url("projects-background-color.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%,
      rgba(0.2, 0.2, 0.2, 0.2),
      rgba(0.2, 0.2, 0.2, 0.2));
  backdrop-filter: blur(6px);
}

.hero-content1 {
  position: relative;
  text-align: center;
  z-index: 5;
}

.hero-content1 p {
  color: white;
}

.hero-title {
  font-size: 55px;
  font-weight: 800;

}

.hero-sub {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 18px;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stat h2 {
  font-size: 40px;
  color: #039aff;
  text-shadow: 0 0 0;
}

.stat p {
  opacity: 0.7;
  font-size: 18px;
  color: white;
}

/* ================= CINEMATIC CARDS ================= */
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  margin-top: 80px;
  margin-left: 60px;
}

.cinema-card {
  margin-top: 60px;
  margin-bottom: 60px;
  height: 430px;
  width: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.308);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.cinema-card:hover {

  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(0, 123, 255, 0.247);
}

.cinema-glass {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 22px;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0);
}

.cinema-glass h3 {
  font-size: 22px;
  font-weight: 700;

}

.cinema-glass p {
  opacity: 0.7;
  font-size: 14px;
  color: white;
}


/* top-right Launching Soon tag */
.launch-tag {
  position: absolute;
  top: 14px;
  /* adjust as needed */
  right: 14px;
  padding: 6px 14px;
  background: #0071bb;
  /* tag color */
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  /* pill shape */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  /* so clicks go through to the link */
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

.cinema-card:hover .launch-tag {
  opacity: 1;
  transform: translateY(0px);
}

.hero-glass:hover .launch-tag {
  opacity: 1;
  transform: translateY(0px);
}


.launched-tag {
  position: absolute;
  top: 14px;
  /* adjust as needed */
  right: 14px;
  padding: 6px 14px;
  background: #23aa01;
  /* tag color */
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  /* pill shape */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  /* so clicks go through to the link */
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

.cinema-card:hover .launched-tag {
  opacity: 1;
  transform: translateY(0px);
}

.hero-glass:hover .launched-tag {
  opacity: 1;
  transform: translateY(0px);
}


.project-card:hover .Sold-tag {
  opacity: 1;
  transform: translateY(0px);
}

.project-card .Sold-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  background: #ff4b4b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

/* frosted glass layer over image in ongoing project */
.glass-overlay {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background: rgba(15, 15, 15, 0.801);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Launching Soon tag on glass in ongoing project */
.gall-launch-tag {
  position: absolute;
  top: 43%;
  right: 33%;
  padding: 6px 16px;
  background: rgba(0, 113, 187, 0.9);
  /* blue pill */
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  /* keep card clickable */
}

/* Project Cards */
.completedwrap {
  padding: 40px 0;
  margin-left: 80px;
}


.projects-list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {

  border-radius: 18px;
  margin-top: 80px;
  position: relative !important;
  height: 520px;
  width: 460px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
}

.project-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(0, 123, 255, 0.226);
}

.project-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.project-card h3 {
  padding: 15px;
}

.project-card p {
  padding: 0 15px 20px;
  color: black;
}

.completed-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
  margin-bottom: 40px;
  position: static !important;
  /* keeps pagination OUTSIDE the rows */
}

.completed-pagination .page-numbers {
  display: flex;
  gap: 8px;
}

.completed-pagination button,
.completed-pagination .page-numbers button {
  border: 1px solid #0071bb;
  background: white;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}

.completed-pagination .page-numbers button.active {
  background: #0071bb;
  color: white;
}


/* ================= SECTION TITLE ================= */
.lux-heading {
  text-align: center;
  color: #0071bb;
  font-size: 40px;
  font-weight: 800;
  margin-top: -30px;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero-title {
    font-size: 40px;
  }
}

/* Base */
* {
  box-sizing: border-box;
}


/* Page transition (fade) */
.page-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.page-fade.loaded {
  opacity: 1;
}

/* 3 porject Page Styles */
/* HERO (parallax background) */
.detail-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px 20px;
  overflow: hidden;
}

.detail-hero .hero-filter {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.884) 0%,
      rgba(2, 8, 20, 0.699) 70%);
  backdrop-filter: blur(6px);
}

.hero-glass {
  position: relative;
  z-index: 3;
  margin: 0 auto 40px;
  max-width: 1100px;
  width: calc(100% - 40px);
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.473),
      rgba(255, 255, 255, 0.253));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-logo {
  height: 48px;
  object-fit: contain;
}

.project-title {
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2px;
}

.project-sub {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, var(--accent), #0071bb);
  color: black;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 120, 255, 0.12);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
}

/* MAIN layout */
.detail-main {
  padding-bottom: 80px;
}

/* Overview grid */
.overview-grid {
  margin-left: 100px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.overview-text h2 {
  font-size: 29px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0071bb;
}

.overview-text p {
  font-size: 18px;
  color: black;
  line-height: 1.8;
}

.project-meta {
  list-style: none;
  font-size: 18px;
  padding: 0;
  margin-top: 12px;
  color: black;
}

.project-meta li {
  margin-bottom: 8px;
}

/* magnetic aside */
.overview-features {
  background: transparent;
  padding: 18px;
  border-radius: 15px;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature {
  margin-bottom: 15px;
}

.feature h4 {
  margin: 0;
  font-size: 20px;
}

.feature p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.amenity-box {
  width: 250px;
  background: transparent;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amenity-img {
  width: 100%;
  /* change size as needed */
  height: auto;
}


/* Gallery */
.gallery-section {
  margin-top: 40px;
}

.section-heading {
  font-size: 35px;
  text-align: center;
  margin: 0 0 14px;
  font-weight: 700;
}

.horizontal-gallery-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.horizontal-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px;
  cursor: grab;
}

.horizontal-gallery:active {
  cursor: grabbing;
}

.gallery-item {
  width: 450px;
  height: 350px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.01);
}

.gallery-btn {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.gallery-btn:active {
  transform: translateY(1px);
}

/* card base */
.grid .card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* image */
.grid .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* frosted glass layer over image */
.grid .card .glass-overlay {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background: rgba(255, 255, 255, 0.897);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}


/* frosted glass layer over image for ABT */
.grid .card .glass-overlay-abt {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.185);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Launching Soon tag on glass in antaaya gallery */
.grid .card .gall-launch-tag {
  position: absolute;
  top: 50%;
  right: 35%;
  padding: 6px 16px;
  background: rgba(0, 113, 187, 0.9);
  /* blue pill */
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  /* keep card clickable */
}





/* small helpers */
.container h2 {
  color: #fff;
}

a {
  color: inherit;
}

.float-btn img {
  height: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-width: 320px;
    height: 220px;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-glass {
    padding: 16px;
  }

  .project-title {
    font-size: 20px;
  }

  .horizontal-gallery {
    padding: 8px;
  }

  .gallery-item {
    min-width: 260px;
    height: 160px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
/* --- GENERAL STYLES --- */


.contact-section {
  width: 90%;
  margin: 0 auto;
  padding: 70px 120px;
  font-family: "Montserrat", sans-serif;
}

.contact-section h1 {
  text-align: center;
  color: black;
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: 600;
}

.contact-section .underline {
  width: 170px;
  height: 3px;
  background: #1a8cd8;
  margin: 0 auto;
}

/* --- FLEX LAYOUT --- */
.contact-container {

  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  flex: 0.05 0.5 48%;
  background: #fff;
}

/* --- FORM STYLES --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent;
  padding: 25px;
  border-radius: 10px;

}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0b3954;
}

.form-row {
  display: flex;
  gap: 15px;
}

.btn {
  background: #0071bb;
  color: #fff;
  width: 100px;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover {
  background: #092f44;
}

.hidden {
  display: none;
}

#successMessage {
  margin-top: 10px;
  color: #0071bb;
  font-weight: 600;
  animation: fadeIn 0.8s ease;
}

/* --- ADDRESS SECTION --- */
.contact-info {
  background: transparent;
  height: 600px;
  text-align: left;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  flex: 1;

}

/* Address column */
.info-left {
  flex: 1;
}

/* Map column */
.info-right {
  margin-top: 60px;
  flex: 1;
  height: 100%;
}

.contact-info h3 {
  font-size: 30px;

  color: #0071bb;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-info p {
  line-height: 1.6;
  color: #333;
  font-size: 18px;
  margin-bottom: 25px;
}

.contact-info a {
  color: #333;

}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* style for project count*/
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;
}

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 80px 20px;
  background-color: #fff;

}

.stats-section .stat-box {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 50px;
  text-align: center;
  width: 280px;

  transition: transform 0.3s ease;
}

.stats-section .stat-box:hover {
  transform: translateY(-5px);
}

.stats-section .stat-box h2 {
  color: #0071bb;
  font-size: 48px;
  margin: 0;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.stats-section .stat-box p {
  margin-top: 10px;
  color: #444;
  font-size: 16px;
}



/* Map */
/* --------------------------- */
/* Location Map Section Styles */
/* --------------------------- */
.location-map {
  margin-top: -60px;
  padding: 80px 0;
  background: white;
  position: relative;
  text-align: center;
}

.location-map .section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: black;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.location-map .underline {
  width: 200px;
  height: 3px;
  background: #0071bb;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

.location-map .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.location-map .map-box {
  position: relative;
  width: 1600px;
  height: 700px;
  right: 200px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  /* disable map scroll */
}

.map-overlay {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.map-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  /* adjust to perfectly cover bar */
  width: 100%;
  background: rgb(255, 255, 255);
  /* transparent white overlay */
  backdrop-filter: blur(7px);
  /* subtle glass-like effect */
  z-index: 2;
  pointer-events: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* about us page */
/* ==== RESET & BASE ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(255, 255, 255);
  color: #222;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

section.about-us {
  width: 100%;
  top: 40px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: white;
  position: relative;
  z-index: 1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: center;
}

/* ==== LEFT SIDE ==== */
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left h4 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 10px;
  position: relative;
}

.about-left h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0071bb;
  margin-top: 6px;
}


.about-logo-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-logo-section img {
  width: 110px;
  height: auto;
}

.divider {
  width: 1px;
  height: 100px;
  background: #ddd;
}

.about-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutimg {
  width: 400px;
  height: auto;
  align-items: left;
  display: flex;
}

.about-stat .number {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  color: #1a1a1a;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
}

.about-stat .plus {
  font-size: 30px;
  transform: translateY(-8px);
  margin-left: 4px;
}

.about-stat p {
  font-size: 12px;
  text-transform: uppercase;
  color: black;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ==== RIGHT SIDE ==== */
.about-right {
  color: black;
  font-size: 16px;
}

.about-right p {
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.about-right p strong {
  font-weight: 700;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid #111;
  padding-bottom: 5px;
  margin-top: 15px;
}

.contact-btn svg {
  transition: transform 0.2s ease;
}

.contact-btn:hover svg {
  transform: translateX(5px);
}

.flip {
  animation: flipIn 2s ease-in-out forwards;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }

  to {
    transform: rotateY(0);
    opacity: 1;
  }
}


/* ==========================================================
   ABOUT BACKGROUND (NO MORE FIXED SIZE)
========================================================== */

.about-bg {
  width: 100%;
  min-height: 70vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
}

/* WHITE CARD */
.about-card {
  background: #fff;

  width: 100%;
  max-width: 1200px;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.about-card h2 img.about-logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.about-card p {
  font-size: 16px !important;
  color: #121212;
  line-height: 1.7 !important;
  margin-bottom: 20px;
  text-align: justify;
}


/* ==========================================================
   FOUNDERS SECTION
========================================================== */

.founders-section {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 30px;
  align-items: flex-start;
}

.founder-box {
  width: 45%;
  text-align: center;
}

.founder-img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.founder-box h3 {
  font-size: 22px;
  color: #0b3954;
  margin-bottom: 5px;
}

.founder-box p {
  font-size: 16px;
  color: #444;
}


/* footer */
/* Footer Base */
.footer {
  position: relative;
  background-color: #000;
  padding: 80px 8% 40px;
  overflow: hidden;
}

/* World Map */
.footer-map-container {
  text-align: left;
  margin-bottom: 20px;
}

.footer-map {
  width: 90%;
  max-width: 550px;
  opacity: 1;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

/* Logo */
.footer-logo img {
  width: 220px;
  margin-bottom: 20px;
  margin-left: 80px;

}

/* Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* Each Column */
.footer-col {
  flex: 10px 1 220px;
}

.footer-col h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  text-decoration: none;
}

.footer-col ul li a {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  text-decoration: none;
}

.footer-col a:hover {
  color: #00aaff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 2px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
  z-index: 2;
  position: relative;
}

.footer-bottom a {
  color: #00aaff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.float-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #0077b6;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
  background-color: #0096d6;
}

.float-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-map {
    width: 80%;
  }

  .footer {
    padding: 60px 6% 30px;
  }
}

/* style for Gallery */
.container {
  margin-top: -40px;
  max-width: 1200px;
  width: 100%;

}

.container h2 {
  text-align: center;
  font-size: 35px;
  color: #0071bb;
  margin-bottom: 30px;
}

/* GRID (4 images → 2x2 on desktop) */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width:700px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.card:hover img {
  transform: scale(1.06);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.panel {
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  position: relative;
}

.panel img {
  width: 100%;
  height: auto;
}

.close-btn,
.nav-btn {
  position: absolute;
  top: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  font-size: 18px;
}

.close-btn {
  right: 20px;
}

.nav-btn.left {
  left: 20px;
  top: 50%;
}

.nav-btn.right {
  right: 20px;
  top: 50%;
}