/* font */
.heading {
  padding-top: 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 6px;
  color: #666;
  font-weight: 500;
}

.sub-heading {
  position: relative;
  text-align: center;
  max-width: 1000px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #0c2040; /* Deep navy blue */
  margin: auto;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

/* ---------- Responsive Breakpoints ---------- */

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .sub-heading {
    font-size: 40px;
  }
  .heading {
    font-size: 13px;
    letter-spacing: 4px;
  }
}

/* Mobile (large) */
@media (max-width: 768px) {
  .sub-heading {
    font-size: 32px;
  }
  .heading {
    font-size: 12px;
    letter-spacing: 3px;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .sub-heading {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .heading {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* Header */
:root{
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --text: #1a1a1a;
  --muted: #6b7280;
  --brand: #4a4a4a;              /* neutral dark, like reference */
  --enquire-bg: #777;            /* grey button (desktop) */
  --enquire-text: #fff;
  --border: #e5e7eb;
  --overlay-bg: #0b0b0c;
  --dim: rgba(0,0,0,.45);
  --whatsapp: #1fa855;
}

/* Reset-ish */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0; color:var(--text); font-family:var(--font); line-height:1.45;
}

/* Container */
.container{
  width:min(1200px, 92vw);
  margin-inline:auto;
}

/* ===== Header ===== */

.site-header{
  position:fixed; top:0; z-index:1000;
  width: 100%;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  height:86px;
  display:flex; align-items:center; gap:24px;
}

/* Logo */
.brand-logo{height:54px; width:auto; display:block}
.brand{display:inline-flex; align-items:center; text-decoration:none}

/* Desktop nav */
.nav-desktop{
  display:flex; align-items:center; gap:28px;
  margin-left:auto; margin-right:auto;
}
.nav-desktop a{
  text-decoration:none; color:var(--brand);
  font-weight:500; letter-spacing:.2px;
}
.nav-desktop a:hover{opacity:.7}

/* Right side (desktop) */
.cta-desktop{display:flex; align-items:center; gap:24px}
.phone-link{
  color:#0f172a; text-decoration:none; font-weight:500;
}
.phone-link:hover{opacity:.8}
.btn-enquire{
  display:inline-flex; align-items:center; justify-content:center;
  height:48px; padding:0 28px; border-radius:4px;
  background:var(--enquire-bg); color:var(--enquire-text);
  text-decoration:none; font-weight:600; letter-spacing:.6px;
}

/* Hamburger (hidden on desktop) */
.hamburger{
  display:none; margin-left:auto;
  width:42px; height:42px; border:0; background:transparent; cursor:pointer;
}
.hamburger span{
  display:block; height:2px; margin:7px 6px; background:#222;
}

/* ===== Overlay Menu ===== */
.overlay{
  position:fixed; inset:0 0 0 auto; /* start off canvas to the right */
  width:min(420px, 86vw);
  background:var(--overlay-bg);
  color:#fff; transform:translateX(100%);
  transition:transform .32s ease;
  z-index:1200;
  display:flex; flex-direction:column;
}
.overlay.open{ transform:translateX(0) }

.overlay-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 18px; border-bottom:1px solid rgba(255,255,255,.1);
}
.overlay-header img{ height:44px }
.close-overlay{
  width:40px; height:40px; border-radius:8px;
  border:1px solid rgba(255,255,255,.2); background:transparent; color:#fff; cursor:pointer;
}

.overlay-nav{ display:flex; flex-direction:column; padding:8px 0 }
.overlay-link{
  padding:16px 18px; text-decoration:none; color:#fff; font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.overlay-link:hover{ background:rgba(255,255,255,.04) }

.overlay-dim{
  position:fixed; inset:0; background:var(--dim);
  opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:1100;
}
.overlay-dim.show{ opacity:1; pointer-events:auto }

/* ===== Bottom Actions (mobile/tablet) ===== */
.bottom-actions{
  position:fixed; left:0; right:0; bottom:0;
  display:none; /* shown on small screens */
  background:#921317d0;           /* elegant warm neutral like ref */
  border-top:1px solid rgba(0,0,0,.08);
  z-index:1050;
}
.bottom-actions .action{
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; padding:10px 6px; text-decoration:none; color:#fff; font-weight:600; font-size:14px;
}
.bottom-actions .action i{ font-size:18px }
.bottom-actions .action:last-child i{ color:#fff }




/* ====== Responsive ====== */

/* Tablet and below: collapse header to hamburger + bottom actions */
@media (max-width: 1287px){
  .nav-desktop, .cta-desktop{ display:none }
  .hamburger{ display:inline-block }
  .header-inner{ height:72px }
  .bottom-actions{ display:flex }
}

/* Small phones: tighten paddings & type */
@media (max-width: 420px){
  .bottom-actions .action{ font-size:13px }
  .brand-logo{ height:46px }
}

/* Header ends here */

/* Banner Section */

.banner {
  margin-top: 85px;   /* same as header height */
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Banner ends here */
/* Global font & base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #444;
  line-height: 1.6;
}

/* Card Section */
.card-section {
  width: 100%;
  background: #f6f6f6;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.card-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 25px 15px;
  max-width: 1200px;
  margin: 0 auto;
  background: #f6f6f6;
  flex-wrap: wrap; /* allow wrapping when screen is small */
  gap: 15px;
}

.card-box {
  flex: 1;
  min-width: 200px; /* keeps cards readable */
  text-align: center;
}

.card-label {
  font-size: 13px;
  color: #999;
  letter-spacing: 2px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.card-value {
  font-size: 18px;
  color: #002f6c;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 768px) {
  .card-wrapper {
    padding: 20px 10px;
  }
  .card-value {
    font-size: 16px;
  }
  .card-label {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .card-wrapper {
    flex-direction: column; /* stack vertically */
    align-items: center;
    padding: 15px 8px;
  }
  .card-box {
    width: 100%;
    max-width: 300px; /* prevents stretching too much */
  }
  .card-value {
    font-size: 15px;
    white-space: normal; /* allow text wrapping */
  }
}


/* Project Overview */
.overview {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.overview .welcome {
  font-size: 14px;
  letter-spacing: 6px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}

.overview .title {
  font-size: 50px;
  font-weight: 700;
  color: #0c2040; /* Deep navy blue */
  margin: auto;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.overview .description {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .overview .title {
    font-size: 30px;
  }
  .description{
    padding: 0 40px;
    text-align: justify;
  }

}

@media (max-width: 768px) {
  .card-section {
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
  }

  .overview .title {
    font-size: 26px;
  }

}

@media (max-width: 480px) {

  .card .value {
    font-size: 18px;
  }
  .overview .title {
    font-size: 22px;
  }
  .overview .description {
    font-size: 15px;
    padding: 0 20px;
  }
}

/* Base state for animation */
.overview .heading,
.overview .sub-heading,
.overview .description {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Active state */
.overview .heading.show,
.overview .sub-heading.show,
.overview .description.show {
  opacity: 1;
  transform: translateY(0);
}

/* overview ends here */
/* master plan configuration  */
/* ========================= */
/* plan-section.css (Updated) */
/* ========================= */

.plan-section-root {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: #2a3445;
  background: #0c2040;
  padding: 20px 0 40px 0;
}

/* Main box */
.plan-section-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  background: #fff;
  padding: 34px 32px;
  gap: 48px;
  box-shadow: 0 8px 36px rgba(24,56,138,0.05);
  flex-wrap: wrap; /* allows stacking when space is tight */
}

/* Image */
.plan-section-image-col {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
}

.plan-section-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e5e9ef;
  
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(24,56,138,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.plan-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.95); /* Default blur */
  transition: transform 0.4s, filter 0.3s ease-in-out;
  cursor: pointer;
}

.plan-section-image-box:hover .plan-section-image {
  transform: scale(1.05);
}

/* Tick Icon (Professional Checkmark) */
.plan-section-tick {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%232778db" stroke-width="3" viewBox="0 0 24 24"><path d="M5 12l5 5L20 7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/20px no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Popup Overlay */
.plan-popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup Image */
.plan-popup-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* Close Button */
.plan-popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}

.plan-popup-close:hover {
  color: #f44336;
}

/* Download Button */
.plan-section-download-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.05rem;
  padding: 18px 36px;
  background: rgba(44, 44, 54, 0.85);
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.4s, box-shadow 0.4s;
  z-index: 2;
}

.plan-section-download-btn:hover {
  background: #396dcf;
  box-shadow: 0 6px 20px rgba(46,95,216,0.2);
}

/* Right Content */
.plan-section-content-col {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}

.plan-section-info {
  width: 100%;
}

.plan-section-description {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2a3445;

}

.plan-section-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.07rem;
}

.plan-section-feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}

.plan-section-tick {
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23666" stroke-width="3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="white" cx="12" cy="12" r="12"/><path d="M7 13.5l3 3 7-7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/20px no-repeat;
  width: 20px;   
  height: 20px;  
  display: inline-block;
}

.plan-section-feature-list strong {
  font-weight: 700;
  color: #101836;
}

/* Table */
/* Table Wrapper */
.plan-section-table-container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
  overflow-x: auto;   /* enable horizontal scroll */
}

/* Make table not shrink */
.plan-section-table {
  width: 100%;
  min-width: 600px;  /* force scroll on smaller screens */
  border-collapse: collapse;
  margin-top: 28px;
  background: #0a1a3f;
  color: #fff;
  /* border-radius: 0px; */
  overflow: hidden;

}

.plan-section-table th,
.plan-section-table td {
  padding: 16px 18px;
  text-align: center;
  letter-spacing: 0.08rem;
  white-space: nowrap;   /* prevent word breaking */
  border: 2px solid rgb(255, 255, 255);
  /* border-radius: 0px; */
}

/* Unlock Button */
.plan-section-unlock-btn {
  background: #232a41;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.plan-section-unlock-btn:hover {
  background: #2778db;
  box-shadow: 0 3px 10px rgba(39,120,219,0.3);
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

@media (max-width: 992px) {
  .plan-section-root{
    padding: 30px 40px;
  }
  .plan-section-main {
    gap: 28px;
    align-items: center;
    padding: 24px 30px;
  }
  .plan-section-table-container{
    padding: 0 30px;
  }
  .plan-section-download-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .plan-section-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .plan-section-image-col,
  .plan-section-content-col {
    flex: 1 1 100%;
  }
  .plan-section-description {
    font-size: 1rem;
  }
  .plan-section-feature-list {
    font-size: 1rem;
  }
  .plan-section-table th,
  .plan-section-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .plan-section-root {
    font-size: 14px;
    padding: 30px 30px;
  }
  .plan-section-main {
    padding: 20px 16px;
    gap: 20px;
  }
  .plan-section-download-btn {
    font-size: 0.9rem;
    padding: 12px 22px;
  }
  .plan-section-unlock-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .plan-section-feature-list li {
    gap: 8px;
  }
  .plan-section-table-container{
    padding: 0 10px;
  }
}
@media (max-width: 511px) {
  .plan-section-table-container {
    margin-right: 20px;
  }
}
/* ========================= */
/* Scroll Animations */
/* ========================= */

/* Hidden state */
.plan-section-root [data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Active (when visible) */
.plan-section-root [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Extra effects */
.fade-in-up {
  transition-delay: 0.1s;
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in-right {
  transform: translateX(40px);
}
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  transform: translate(0,0);
}

/* plan ends here */

/* Amenity section */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500&display=swap');

/* =============================
   Amenity Section
============================= */
.amenity-section {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-carousel-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}

.amenity-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3.4;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
}

.amenity-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.amenity-image-card:hover img {
  transform: scale(1.05);
  filter: brightness(.78);
}

/* Label */
.amenity-actual-label {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.9rem;
  background: rgba(216, 17, 17, 0.47);
  padding: 7px 22px 7px 18px;
  border-radius: 4px;
  font-weight: 500;
  color: #fff;
  z-index: 3;
}

/* Search icon */
.amenity-search-icon {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 14px;
  font-size: 1.8rem;
  opacity: 0;
  z-index: 5;
}

.amenity-image-card:hover .amenity-search-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =============================
   Modal Lightbox
============================= */
.amenity-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.amenity-modal.active {
  display: flex;
}

.amenity-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.amenity-modal-img-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#amenityModalImg {
  max-width: 80vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform .25s ease;
}


/* =============================
   Controls
============================= */
.amenity-modal-close,
.amenity-modal-prev,
.amenity-modal-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}

.amenity-modal-close {
  top: 20px;
  right: 20px;
  font-size: 2rem;
  width: 42px;
  height: 42px;
}

.amenity-modal-prev,
.amenity-modal-next {
  transform: translateY(-50%);
  background: #244572;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  top: 50%;
}

.amenity-modal-prev { left: 20px; }
.amenity-modal-next { right: 20px; }

.amenity-modal-close:hover,
.amenity-modal-prev:hover,
.amenity-modal-next:hover {
  background: rgba(37,63,86,0.85);
}

/* Zoom controls */
.amenity-modal-zoom-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.amenity-modal-zoom-controls button {
  background: #244572;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s;
}

.amenity-modal-zoom-controls button:hover {
  background: #162c48;
}

/* =============================
   Responsive
============================= */
@media (max-width: 1100px) {
  .amenity-carousel-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #amenityModalImg {
    max-width: 95vw;
    max-height: 70vh;
  }
}

@media (max-width: 600px) {
  .amenity-section {
    padding: 20px 40px;
  }
  .amenity-carousel-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .amenity-image-card {
    border-radius: 0;
  }
  .amenity-modal-prev,
  .amenity-modal-next {
    font-size: 1rem;
    width: 40px;
    height: 40px;
  }
  .amenity-modal-zoom-controls {
    right: 10px;
    bottom: 10px;
  }
  .amenity-search-icon {
    font-size: 1.5rem;
    padding: 12px;
  }
}
/* =============================
   Scroll Animations
============================= */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-fade-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

.scroll-animate.show {
  animation: fadeUp 0.8s ease-out forwards;
}

.scroll-scale.show {
  animation: fadeScale 0.8s ease-out forwards;
}

/* amenity ends here  */



/* gallery section  */
.gallery-container {
  width: 100%;
  text-align: center;
  background: #f1f4f6;
  padding: 20px 0;
}

.gallery-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 calc(100% / 3);
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 20px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.gallery-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.gallery-lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e3a8a;
  border: none;
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.gallery-lightbox-prev { left: -50px; }
.gallery-lightbox-next { right: -50px; }

.gallery-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.gallery-zoom-controls {
  position: absolute;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 15px;
}

.gallery-zoom-controls button {
  background: #1e3a8a;
  border: none;
  color: white;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 100%;   /* full image on mobile */
    padding: 5px;     /* reduce padding for neat fit */
  }

  .gallery-lightbox-btn {
    font-size: 18px;
    padding: 6px 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-item {
    flex: 0 0 50%;   /* 2 images on tablets */
    padding: 8px;
  }
}

@media (min-width: 1025px) {
  .gallery-item {
    flex: 0 0 calc(100% / 3);  /* 3 images on desktops */
    padding: 10px;
  }
}

/* Request Callback Button */
/* Wrapper for the button */
/* Wrapper for the button */
.gal-callback-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Button styling */
.gal-callback {
  position: relative;
  overflow: hidden; /* hide extra animation outside */
  padding: 12px 30px;
  background: #666;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: color 0.3s ease;
}

/* Pseudo-element for hover effect */
.gal-callback::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%) scale(0);
  width: 300%;
  height: 300%;
  background: #174094; /* hover color */
  border-radius: 50%;
  transition: transform 0.5s ease;
  z-index: 0;
}

/* Text stays above */
.gal-callback span {
  position: relative;
  z-index: 1;
}

/* When hovered, expand the fill */
.gal-callback:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .gal-callback {
    width: 80%;
    font-size: 14px;
    padding: 12px;
  }
}
/* gallery ends here */

/* Location */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.location-section {
  background: #fafbfc;
  width: 100%;
  padding: 48px 0 30px;
  font-family: 'Roboto', Arial, sans-serif;
}

.location-container {
  display: flex;
  gap: 50px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  padding: 0 24px;
  flex-wrap: wrap; /* ensures wrapping on smaller screens */
}

/* Accordion */
.location-accordion-area {
  flex: 1 1 370px;
  max-width: 430px;
  min-width: 260px;
}

.location-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-accordion-item {
  background: #fff;
  box-shadow: 0 6px 30px rgba(65,72,108,0.09);
  border-radius: 2px;
  overflow: hidden;
}

.location-accordion-header {
  width: 100%;
  background: #0f1a33;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  padding: 16px 22px;
  cursor: pointer;
  transition: background 0.23s;
}

.location-accordion-icon {
  font-size: 26px;
  line-height: 1;
}

.location-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.location-accordion-item.active .location-accordion-content {
  max-height: 500px;
  padding: 16px 22px 22px;
}

.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.location-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444d57;
  margin-bottom: 12px;
}
.location-list li:last-child {
  margin-bottom: 0;
}
.location-tick {
  color: #8c97ab;
  margin-right: 10px;
  font-size: 18px;
}

/* Map */
.location-map-area {
  flex: 1 1 430px;
  max-width: 510px;
  min-width: 260px;
}
.location-map-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 2px;
  box-shadow: 0 6px 30px rgba(65,72,108,0.09);
}

/* Button */
.location-sitevisit-container {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.location-sitevisit-btn {
  font-size: 18px;
  background: #706e6b;
  color: #fff;
  padding: 14px 50px;
  border: none;
  border-radius: 2px;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 10px rgba(30,49,78,0.07);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.location-sitevisit-btn:hover {
  background: #174094;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablets (<= 991px) */
@media (max-width: 991px) {
  .location-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }
  .location-accordion-content{
    width: 75vw;
  }
  .location-accordion-area,
  .location-map-area {
    max-width: 100%;
  }
    .location-map-iframe {
    height: 360px;
    width: 80vw;
  }
  .location-sitevisit-btn {
    width: 100%;
    max-width: 400px;
  }
}

/* Phones (<= 600px) */
@media (max-width: 600px) {
  .location-section {
    padding: 32px 0 24px;
  }
  .location-container {
    gap: 15px;
    padding: 0 16px;
  }
  .location-accordion-header {
    font-size: 16px;
    padding: 14px 18px;
  }
  .location-accordion-icon {
    font-size: 22px;
  }
  .location-list li {
    font-size: 14px;
  }
  .location-sitevisit-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

/* Base state (hidden before scroll) */
.location-section .heading,
.location-section .sub-heading,
.location-accordion-item,
.location-map-area,
.location-sitevisit-container {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When in view */
.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays for elegance */
.location-section .heading {
  transition-delay: 0.1s;
}
.location-section .sub-heading {
  transition-delay: 0.3s;
}
.location-accordion-item:nth-child(1) {
  transition-delay: 0.5s;
}
.location-accordion-item:nth-child(2) {
  transition-delay: 0.7s;
}
.location-accordion-item:nth-child(3) {
  transition-delay: 0.9s;
}
.location-accordion-item:nth-child(4) {
  transition-delay: 1.1s;
}
.location-map-area {
  transition-delay: 1.3s;
}
.location-sitevisit-container {
  transition-delay: 1.5s;
}
/* Location ends here */
/* contact us */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500&display=swap');

.contact-section {
  background: #e8ebee;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto;
  background: transparent;
  gap: 48px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.contact-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 32px;
  min-width: 320px;
}

.contact-subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  color: #848a99;
  text-transform: uppercase;   /* ✅ fixed */
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.15em;      /* ✅ fixed */
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #191f2a;
  line-height: 1.13;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.contact-description {
  color: #6e7587;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-right {
  flex: 1 1 50%;
  max-width: 470px;
  position: relative;
  background: #fff;
  border-radius: 2px;
  box-shadow: none; /* ✅ matches screenshot */
  padding: 42px 44px 52px 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-width: 290px;
  z-index: 1;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

.contact-input {
  border: none;
  border-bottom: 1px solid #cfd2da;
  background: transparent;
  font-size: 14px;
  padding: 14px 2px 10px 2px;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: #22273d;
}
.contact-input:focus {
  border-bottom: 1.5px solid #005cb9;
}

.contact-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.contact-checkbox {
  margin-top: 4px;
  accent-color: #005cb9;
}

.contact-checkbox-label {
  color: #7b8796;
  font-size: 13px;
  user-select: none;
  line-height: 1.2;  /* ✅ tighter spacing */
  font-family: 'Roboto', Arial, sans-serif;
}

.contact-submit-btn {
  margin-top: 14px;
  background: #555;   /* ✅ closer to screenshot */
  color: #fff;
  border: none;
  font-size: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 0;
  border-radius: 2px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(30,49,78,0.07);
  transition: background 0.23s;
}
.contact-submit-btn:hover,
.contact-submit-btn:focus {
  background: #174094;
}

.contact-corner-dots {
  position: absolute;
  left: -36px;
  bottom: -46px;
  width: 112px;
  height: 112px;
  pointer-events: none;
  background: radial-gradient(circle at 3px 3px,#b1b6c3 0.7px,transparent 1px), radial-gradient(circle at 3px 3px,#b1b6c3 0.7px,transparent 1px);
  background-size: 18px 18px;
  background-position: 0px 0px, 8px 8px;
  opacity: 0.25;
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    max-width: 96vw;
    padding: 0 40px;
  }
  .contact-left, .contact-right {
    padding: 0;
    min-width: 0;
    max-width: 100%;
  }
  .contact-right {
    padding: 34px 22px 44px 22px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    min-height: unset;
    padding: 0 0 36px 0;
  }
  .contact-title {
    font-size: 30px;
  }
  .contact-description {
    font-size: 16px;
  }
  .contact-right {
    padding: 28px 6vw 32px 6vw;
  }
}
/* ---------- ANIMATIONS ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Apply fade-in-up to specific elements */
.contact-left .contact-subtitle,
.contact-left .contact-title,
.contact-left .contact-description,
.contact-right .contact-form,
.contact-right .contact-corner-dots {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.contact-left .contact-subtitle.show,
.contact-left .contact-title.show,
.contact-left .contact-description.show,
.contact-right .contact-form.show,
.contact-right .contact-corner-dots.show {
  opacity: 1;
  transform: translateY(0);
}
/* contact us end here */

/* footer */

/* footer section */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

.site-footer {
  background: #0c2040;
  color: #eaeaea;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 50px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Logo Section */
.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #fff;
}
.footer-logo-title span {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: goldenrod;
}

/* Info Section */
.footer-info-row {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-block {
  max-width: 330px;
  text-align: left;
}
.footer-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: goldenrod;
  text-transform: uppercase;
}
.footer-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}
.footer-block a {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-block a:hover {
  color: goldenrod;
  text-decoration: underline;
}

/* Contact Icon */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
}

/* Divider */
.footer-line {
  width: 90%;
  max-width: 1280px;
  margin: 20px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
}
.footer-disclaimer .footer-label {
  margin-bottom: 8px;
  color: goldenrod;
}

/* Bottom */
.footer-bottom {
  font-size: 0.85rem;
  color: #fff;
}
.footer-bottom a {
  color: goldenrod;
  font-weight: 700;
  letter-spacing: 0.07rem;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------------------- RESPONSIVE ---------------------- */

@media (max-width: 1287px)
{
  .footer-bottom{
    margin-bottom: 60px;
  }
}
/* Tablets */
@media (max-width: 992px) {
  .footer-info-row {
    gap: 40px;
  }
  .footer-logo-title {
    font-size: 1.8rem;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .footer-info-row {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .footer-block {
    text-align: center;
  }
  .footer-logo-title {
    font-size: 1.5rem;
  }
  .footer-logo-title span {
    font-size: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    text-align: center;
  }
}
/* ---------- ANIMATIONS ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for children */
.footer-info-row .footer-block,
.footer-logo-row,
.footer-disclaimer,
.footer-bottom,
.footer-line {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.footer-info-row .footer-block.show,
.footer-logo-row.show,
.footer-disclaimer.show,
.footer-bottom.show,
.footer-line.show {
  opacity: 1;
  transform: translateY(0);
}

/* pop-up form */
/* Overlay background */
.popup-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border: 1px #ccc ;
}

/* Popup container */
.popup-form-container {
  background: #2d2d2d;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  width: 90%;
  max-width: 500px;
  border-radius: 4px;
  position: relative;
  color: #fff;
  font-family: "Georgia", serif;
  
}
.popup-box{
  border: 1px solid rgba(255,255,255,0.2);
  padding: 25px;
}
/* Close button */
.popup-form-close {
  position: absolute;
  right: 10px;
  top: 1px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* Title */
.popup-form-title {
  text-align: left;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}

/* Labels */
.popup-form label {
  display: block;
  margin: 10px 0 6px;
  font-size: 14px;
  font-weight: 500;
}

/* Inputs */
.popup-form input,
.popup-form select {
  width: 100%;
  padding: 10px 8px;
  margin-bottom: 12px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.popup-form input:focus,
.popup-form select:focus {
  outline: none;
  border-bottom: 1px solid #fff;
}

/* Submit Button */
.popup-form-submit {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
}

.popup-form-submit:hover {
  background: #ddd;
}

/* Responsive */
@media (max-width: 600px) {
  .popup-form-container {
    width: 95%;
    padding: 30px;
  }
  .popup-form-title {
    font-size: 18px;
  }
}