* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

header {
    background: #000;
    padding: 15px 0;
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: #ff741f;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay Dark Effect */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
}

/* Arrow Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  background: #d4af37;
  color: #000;
}


.section {
    padding: 60px 10%;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #333;
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

button {
    padding: 10px 20px;
    background: #ff741f;
    border: none;
    cursor: pointer;
}

.location-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

.map-box {
    flex: 1;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 8px;
}

.form-box {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.form-box h3 {
    margin-bottom: 20px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-box button {
    width: 100%;
    padding: 12px;
    background: #ff741f;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

@media(max-width: 768px) {
    .location-wrapper {
        flex-direction: column;
    }
}

.image-text-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.image-text-section img {
    width: 100%;
    border-radius: 8px;
}

.image-box {
    flex: 1;
}

.text-box {
    flex: 1;
}

.text-box h2 {
    margin-bottom: 20px;
}

.text-box ul {
    list-style: none;
}

.text-box ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.text-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff741f;
}

@media(max-width:768px){
    .image-text-section {
        flex-direction: column;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.floor-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.floor-card:hover {
    transform: translateY(-5px);
}

.floor-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.floor-content {
    padding: 20px;
}

.floor-content h3 {
    margin-bottom: 10px;
}

.floor-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.floor-content ul li {
    margin-bottom: 6px;
}

.floor-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #ff741f;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
}

.logo img {
    height: 65px;
    width: 110px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ===== Main Footer ===== */
.main-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

/* Container */
.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT & RIGHT */
.footer-left,
.footer-right {
    display: flex;
    gap: 60px;
    flex: 1;
}

/* Logo */
.footer-logo img {
    max-width: 150px;
}

/* Headings */
.main-footer h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #c5a047; /* golden */
}

/* Quick Menu */
.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu ul li a:hover {
    color: #c5a047;
    padding-left: 6px;
}

/* Address */
.footer-address p {
    line-height: 2;
    color: #ccc;
}
/* Default icon style */
.social-icons a {
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s ease;
}

/* Facebook */
.social-icons a .fa-facebook-f {
    color: #1877F2;
}

/* Instagram */
.social-icons a .fa-instagram {
    color: #E1306C;
}

/* LinkedIn */
.social-icons a .fa-linkedin-in {
    color: #0077B5;
}

/* YouTube */
.social-icons a .fa-youtube {
    color: #FF0000;
}

/* Hover effect */
.social-icons a:hover i {
    transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}


/* ===== AMENITIES SECTION ===== */
.amenities {
  padding: 80px 0;
  background: #f8f9fc;
}

.amenities .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.amenities h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #222;
  position: relative;
}

.amenities h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d4af37; /* golden accent */
  display: block;
  margin: 15px auto 0;
}

/* Grid Layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Design */
.card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card i {
  font-size: 40px;
  color: #d4af37; /* golden */
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .amenities h2 {
    font-size: 28px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* ===== ABOUT PAGE ZIG-ZAG SECTION ===== */

.about-section {
  padding: 80px 0;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #d4af37; /* Golden Accent */
  display: block;
  margin-top: 10px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Light Background Option */
.light-bg {
  background: #f8f9fc;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container,
  .about-container.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* ===== Common Container ===== */
.container {
    width: 85%;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

/* ===== Site Plan Section ===== */
.site-plan-section {
    padding: 60px 0;
}

.site-plan-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ===== Floor Plan Section ===== */
.floor-plan-section {
    padding: 70px 0;
}

.flex-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.reverse {
    flex-direction: row-reverse;
}

.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-box {
    flex: 1;
}

.content-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.content-box p {
    line-height: 1.7;
    color: #555;
}

/* Alternate Background */
.alt-bg {
    background-color: #f9f9f9;
}

/* ===== Responsive ===== */
@media(max-width: 768px) {
    .flex-section {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }
}

/* ===== Common Container ===== */
.fp-container {
    width: 85%;
    margin: auto;
}

/* ===== Intro Content Section ===== */
.fp-content-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f8f8;
}

.fp-content-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.fp-content-section p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

/* ===== Site Plan Section ===== */
.fp-site-section {
    padding: 80px 0;
    text-align: center;
}

.fp-site-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.site-img-box img {
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== Floor Plan Sections ===== */
.fp-plan-section {
    padding: 90px 0;
}

.fp-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.reverse {
    flex-direction: row-reverse;
}

.fp-image {
    flex: 1;
}

.fp-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.fp-image img:hover {
    transform: scale(1.03);
}

.fp-text {
    flex: 1;
}

.fp-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.fp-text p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Alternate Background */
.alt-bg {
    background: #f4f4f4;
}

/* ===== Responsive ===== */
@media(max-width: 768px) {

    .fp-flex {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .site-img-box img {
        width: 100%;
    }

    .fp-content-section h2,
    .fp-site-section h2 {
        font-size: 26px;
    }
}

/* ===== Brochure Button ===== */
.brochure-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #c5a047;   /* Golden tone */
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border-radius: 30px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brochure-btn:hover {
    background: #a8832f;
    transform: translateY(-3px);
}

/* ===== Footer Main Layout ===== */
.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left & Right Wrapper */
.footer-left,
.footer-right {
    display: flex;
    flex: 1;
    justify-content: space-between;  /* Equal spacing */
    gap: 20px; /* Same gap everywhere */
}

/* Make all blocks equal */
.footer-logo,
.footer-menu,
.footer-address,
.footer-social {
    flex: 1;
}

/* Equal internal spacing */
.footer-logo img {
    max-width: 150px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-address p {
    line-height: 1.7;
}

/* Responsive */
@media(max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}


/* ===== Privacy Policy Page ===== */
.privacy-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.privacy-container {
    width: 80%;
    margin: auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.privacy-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.last-updated {
    color: #888;
    margin-bottom: 30px;
}

.privacy-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #c5a047;
}

.privacy-container p {
    line-height: 1.8;
    color: #555;
}

/* ===== OWNERS SECTION ===== */
.owners-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.owners-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.owners-section p {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.owners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.owner-card {
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  max-width: 300px;
  transition: transform 0.3s;
}

.owner-card:hover {
  transform: translateY(-5px);
}

.owner-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.owner-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.owner-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
