/*disclaimer*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: white;
}

/* Popup Background (blur + dim) */
.disclaimer-popup {
  position: fixed;
  inset: 0;
  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;
}

.disclaimer-popup.active {
  opacity: 1;
  pointer-events: auto;
}


/* Show popup */
.disclaimer-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* Popup Box */
.disclaimer-content {
  background: #fff;
  width: 90%;
  max-width: 650px;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 0 30px 0;
  /* NO bottom padding */
  animation: slideUp 0.4s ease;
}


.disclaimer-content h2 {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  padding: 20px 0 10px;
  margin: 0;
  border-bottom: 1px solid #ddd;
  color: #0071bb;
  font-size: 28px;
}




.disclaimer-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #000;
}


/* Button */
.diclam-btn {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 15px 0 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  /* 👈 right side */
  font-size: 14px;
}


#agreeBtn {
  background: #0071bb;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  cursor: pointer;
}

#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: 1.9em;
  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: 70vh;
  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%;
}


/* NRI Corner */

/* ================= WRAPPER ================= */
.nri-corner {
  max-width: 1450px;
  margin: 70px auto;
  padding: 0 24px;
}


/* ================= NAV TABS ================= */
.nri-tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 14px;
  margin-bottom: 80px;
  overflow-x: auto;
}

.nri-tabs::-webkit-scrollbar {
  display: none;
}

.nri-tabs .tab {
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  color: #525252;
  letter-spacing: 0.8px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  outline: none;
}

.nri-tabs .tab:focus,
.nri-tabs .tab:focus-visible,
.nri-tabs .tab:active {
  outline: none;
  box-shadow: none;
}

.nri-tabs .tab:hover {
  color: #0071bb;
}


.nri-tabs .tab.active {
  color: #000;
  font-weight: 600;
}

/* ================= CONTENT WRAPPER ================= */
.nri-content {
  position: relative;
}

/* ================= SECTION ================= */
.content-box {
  display: none;
}

.content-box.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 90px;
  align-items: center;
  padding: 70px 80px;
  background: transparent;
}

/* ================= SMOOTH TRANSITION ================= */
.content-box {
  animation: fadeUp 0.45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ================= Legal Information ================= */

/* Outer section */
.legal-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Left text column */
.legal-text {
  flex: 1 1 50%;
}

/* Heading */
.legal-text h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 50px;
  color: #000000;
}

/* Light cream box behind paragraph */
.legal-intro-box {
  background-color: transparent;
  /* adjust to match your design */
  padding: 0 30px 30px 0;
  box-sizing: border-box;
}

.legal-intro-box p {
  position: relative;
  padding-left: 24px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-intro-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 90%;
  background: #0071bb;
  /* gold / brand color */
}

/* Right image */
.legal-image {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.legal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


.legal-points {
  max-width: 1400px;
  /* match .legal-wrapper */
  margin: 40px auto 60px;
  padding: 0 40px;
  /* same side padding as .legal-wrapper */
  box-sizing: border-box;
}

.legal-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.legal-dash {
  position: relative;
  width: 26px;
  height: 12px;
  margin-top: 10px;
}

.legal-dash::before,
.legal-dash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: #000000;
}

.legal-dash::before {
  top: 0;
}

.legal-dash::after {
  bottom: 0;
  background: #0071bb;
}




.legal-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #030303;
}


/* ================= Loan for NRIs ================= */
/* Outer section */
.loan-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Left text column */
.loan-text {
  flex: 1 1 50%;
}

/* Heading */
.loan-text h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 50px;
  color: #000000;
}

/* Light cream box behind paragraph */
.loan-intro-box {
  background-color: transparent;
  /* adjust to match your design */
  padding: 0 30px 30px 0;
  box-sizing: border-box;
}

.loan-intro-box p {
  position: relative;
  padding-left: 24px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loan-intro-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 85%;
  background: #0071bb;
  /* gold / brand color */
}

/* Right image */
.loan-image {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.loan-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* ======= loan second section - accordion style ========== */
.loan-accordion {
  max-width: 1400px;
  margin: 40px 0 60px;
  padding: 0;
  box-sizing: border-box;
  border-top: 1px solid #e5e5e5;

}

/* header row */
.loan-header {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  /* remove focus outline */
}

/* also ensure no default focus style */
.loan-header:focus,
.loan-header:active {
  outline: none;
  box-shadow: none;
}

.loan-header span:first-child {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #000000;
}



/* active (opened item): keep new color */
.loan-item.active .loan-header span:first-child {
  color: #0071bb;
}

/* +/- icon */
.loan-icon {
  font-size: 30px;
  line-height: 1;
  color: #000;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.loan-item.active .loan-icon {
  transform: rotate(45deg) scale(1.1);
  color: #0071bb;
}


/* body (hidden by default) */
.loan-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-12px);
  border-bottom: 1px solid #e5e5e5;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.3s ease;
}

.loan-item.active .loan-body {
  max-height: 800px;
  opacity: 1;
  transform: translateX(0);
}



.loan-body p {
  padding: 18px 0 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

/* active state */
.loan-item.active .loan-body {
  max-height: 800px;
  /* large enough for your biggest content */
}

.loan-item.active .loan-icon {
  transform: rotate(45deg);
  /* turns + into × / minus-ish */
}





/* ================= faq for NRIs ================= */
/* Outer section */
.faq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Left text column */
.faq-text {
  flex: 1 1 50%;
}

/* Heading */
.faq-text h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 50px;
  color: #000000;
}

/* Light cream box behind paragraph */
.faq-intro-box {
  background-color: transparent;
  /* adjust to match your design */
  padding: 0 30px 30px 0;
  box-sizing: border-box;
}

.faq-intro-box p {
  position: relative;
  padding-left: 24px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-intro-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 70%;
  background: #0071bb;
  /* gold / brand color */
}

/* Right image */
.faq-image {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.faq-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}



/* contect faq section */
.faq-contact-box {
  margin-top: 30px;
  padding: 22px 26px;
  background: #14a1ff13;
  border-radius: 6px;
  max-width: 420px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.icon {
  font-size: 18px;
  color: #0071bb;
  border: 1px solid #000000;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item a {
  color: #3b3b3b;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-numbers strong {
  display: block;
  margin-bottom: 6px;
  color: #000000;
}

.contact-numbers p {
  margin: 0;
  font-size: 14px;
  color: #000000;
}

/* ===== faq second section - accordion style ===== */
.faq-heading h1 {
  text-align: left;
  color: #070707;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
}

.faq-heading p {
  text-align: left;
  color: #000000;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.faq-accordion {
  max-width: 1400px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-top: 1px solid #e5e5e5;

}


/* header row */
.faq-header {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  /* remove focus outline */
}

/* also ensure no default focus style */
.faq-header:focus,
.faq-header:active {
  outline: none;
  box-shadow: none;
}

.faq-header span:first-child {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #000000;
}



/* active (opened item): keep new color */
.faq-item.active .faq-header span:first-child {
  color: #0071bb;
}

/* +/- icon */
.faq-icon {
  font-size: 30px;
  line-height: 1;
  color: #000;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg) scale(1.1);
  color: #0071bb;
}


/* body (hidden by default) */
.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-12px);
  border-bottom: 1px solid #e5e5e5;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 800px;
  opacity: 1;
  transform: translateX(0);
}



.faq-body p {
  padding: 18px 0 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

/* active state */
.faq-item.active .faq-body {
  max-height: 800px;
  /* large enough for your biggest content */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  /* turns + into × / minus-ish */
}

.doc-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADERS */
.doc-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.doc-headers h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

/* LINE BELOW HEADERS */
.doc-divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 35px;
}

/* CONTENT */
.doc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.doc-content ul {
  list-style: disc;
  padding-left: 18px;
}

.doc-content ul li {
  font-size: 16px;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 8px;
}

/* ================= Enquire now for NRIs ================= */
/* Outer section */
.enq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Left text column */
.enq-text {
  flex: 1 1 50%;
}

/* Heading */
.enq-text h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 50px;
  color: #000000;
}


/* Light cream box behind paragraph */
.enq-intro-box {
  background-color: transparent;
  /* adjust to match your design */
  padding: 0 30px 30px 0;
  box-sizing: border-box;
}

.enq-intro-box p {
  position: relative;
  padding-left: 24px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enq-intro-box p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 55%;
  background: #0071bb;
  /* gold / brand color */
}


/* Right image */
.enq-image {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
}

.enq-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* contact Enquire new section */
.enq-contact-box {
  margin-top: 30px;
  padding: 22px 26px;
  background: #14a1ff13;
  border-radius: 6px;
  max-width: 420px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.icon {
  font-size: 18px;
  color: #0071bb;
  border: 1px solid #000000;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item a {
  color: #3b3b3b;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-numbers strong {
  display: block;
  margin-bottom: 6px;
  color: #000000;
}

.contact-numbers p {
  margin: 0;
  font-size: 14px;
  color: #000000;
}

/* ====Enquire second form section==== */
.enquiry-form {
  max-width: 1400px;
  margin: 0;
  padding: 0;

}




.enquiry-form h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000000;
}

.sub-text {
  font-size: 16px;
  margin-bottom: 50px;
  color: #000000;
}



.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group label {
  font-size: 14px;
  color: #000000;
}

.form-group input,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 12px 0;
  font-size: 16px;
  color: #000;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: #000;
}




.mobile-box {
  display: flex;
  gap: 10px;
}

.mobile-box select {
  border: none;
  border-bottom: 1px solid #000;
}

.iti {
  width: 100%;
}

/* Remove background from flag container */
.iti__flag-container {
  background: transparent !important;
}

/* Remove background from selected country area */
.iti__selected-flag {
  background: transparent !important;
}


.iti input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 10px 10px 10px 52px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.iti__country-list {
  max-height: 260px;
  font-size: 14px;
}



.full {
  grid-column: 1 / -1;
}

/* Wrapper alignment */
.enquiry-form .checkbox-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 10px;

}

.enquiry-form .custom-checkbox {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  line-height: 1.4;
}

/* hide native checkbox */
.enquiry-form .custom-checkbox input {
  position: absolute;
  opacity: 0;
}

.enquiry-form .checkmark {
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enquiry-form .checkmark::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: none;
}

.enquiry-form .custom-checkbox input:checked+.checkmark {
  background: #0071bb;
}

.enquiry-form .custom-checkbox input:checked+.checkmark::after {
  display: block;
}

.enquiry-form .checkbox-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 15px;
  color: #000000;
}


.enquiry-form .center {
  text-align: center;
}

.enquiry-form button {
  padding: 13px 40px;
  background: #0071bb;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

.enquiry-form button:hover {
  background: #000;
  color: #fff;
}

/* home fest section */
/* Outer content box */
#home-fest {
  margin: 0;
  padding: 0;
}

/* Inner container */
.home-fest-first {
  margin: 0;
  padding: 0;
  border: transparent;
}

/* Image fills container, no gaps */
.home-fest-first img {
  display: block;
  width: 100%;
  height: auto;
}


/* === NRI Property Fest 2025 SECTION ====== */
.why-attend-wrapper {
  margin: 0;
  padding: 0;
  text-align: center;
}

.why-attend-content h2,
.why-attend-content p {
  margin: 16px auto;
  max-width: 1200px;
}

.why-attend-content h2 {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  display: inline-block;
  padding: 0 24px;
}

/* LEFT LINE */
.why-attend-content h2::before,
.why-attend-content h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  /* line length */
  height: 2px;
  background: #0071bb;
  /* light gray like image */
}

/* Left side */
.why-attend-content h2::before {
  left: -100px;
}

/* Right side */
.why-attend-content h2::after {
  right: -100px;
}

.why-attend-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.why-attend-image {
  margin: 0;
  padding: 0;
}

.why-attend-image img {
  display: block;
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;

}


/* === NRI map Fest 2025 SECTION ====== */
.map-fest-wrapper {
  margin: 0;
  padding: 0;
  text-align: center;
}

.map-fest-content h2,
.map-fest-content p {
  margin: 16px auto;
  max-width: 1200px;
}

.map-fest-content h2 {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  display: inline-block;
  padding: 0 24px;
  line-height: 1.2;
  min-height: 40px;
}

/* LEFT LINE */
.map-fest-content h2::before,
.map-fest-content h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  /* line length */
  height: 2px;
  background: #0071bb;
  /* light gray like image */
}

/* Left side */
.map-fest-content h2::before {
  left: -100px;
}

/* Right side */
.map-fest-content h2::after {
  right: -100px;
}



.map-fest-image {
  margin: 0;
  padding: 0;
  justify-items: center;

}

.map-fest-image img {
  display: block;
  width: 50%;
  height: auto;

}


/* home fest register section */
/* ==== Home Fest Registration Form ==== */

.home-fest-register {
  max-width: 1400px;
  margin: 0;
  padding: 0;
}

/* Title */
.home-fest-register .form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
}

.home-fest-register .form-title span {
  flex: 0 1 100px;
  height: 2px;
  background: #0071bb;
}

/* Form grid */
.fest-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Labels */
.fest-form .form-group label {
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 6px;
}

/* Inputs & selects */
.fest-form .form-group input,
.fest-form .form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 12px 0;
  font-size: 16px;
  color: #000;
  outline: none;
  transition: border-color 0.3s ease;
}

.fest-form .form-group input:focus,
.fest-form .form-group select:focus {
  border-bottom-color: #000;
}

.form-group .iti {
  width: 100%;
}

/* Remove background from flag container */
.form-group .iti__flag-container {
  background: transparent !important;
}

/* Remove background from selected country area */
.form-group .iti__selected-flag {
  background: transparent !important;
}

.form-group .iti input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 10px 10px 10px 52px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.form-group .iti__country-list {
  max-height: 260px;
  font-size: 14px;
}


/* Dropdown arrow clean */
.fest-form select {
  appearance: flex;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

/* Checkbox wrapper */
.form-checkbox {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
  font-size: 16px;
  color: #000;
}

.form-checkbox .custom-checkbox {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  line-height: 1.4;
}

/* hide native checkbox */
.form-checkbox .custom-checkbox input {
  position: absolute;
  opacity: 0;
}

.form-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-checkbox .checkmark::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: none;
}

.form-checkbox .custom-checkbox input:checked+.checkmark {
  background: #0071bb;
}

.form-checkbox .custom-checkbox input:checked+.checkmark::after {
  display: block;
}

.form-checkbox .checkbox-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 15px;
  color: #000000;
}

/* Submit button */
.form-submit {
  text-align: center;
  margin-top: 50px;
}

.form-submit button {
  padding: 13px 40px;
  background: #0071bb;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-size: 15px;
}

.form-submit button:hover {
  background: #000;
  color: #fff;
}