*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* color: #fff; */
    font-family: "Verdana", sans-serif;
    overflow-x: hidden;
}

/* FIXED NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    border-bottom: 2px solid black;
    background:#c1e3f5; /* IMPORTANT */
}


.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    color: #1c1c1c !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: black !important;
}

/* TOP BANNER */
.top-space {
    margin-top: 100px;
}

.top-space img {
    width: 100%;
    height: auto;
    display: block;
}

/* SECTION SPACING */
section {
    padding: 40px 0;
}

/* SECTION TITLES */
.section-title h2 {
    text-align: center;
    color: #1c1c1c;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 32px;
    
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #1c1c1c;
    margin: 0 auto 20px auto;
}

/* Floating Buttons (Default: Desktop) */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #c79b3b;
}

.float-btn:hover {
    transform: scale(1.12);
}

@media (max-width: 768px) {

    .floating-buttons {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        background: #fff !important;
        border-top: 1px solid #ddd !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15) !important;
        z-index: 99999 !important;
    }

    .float-btn {
        flex: 1 !important;
        border-radius: 0 !important;
        height: 70px !important;        /* Much bigger buttons */
        font-size: 36px !important;     /* Larger icons */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: #fff !important;
        box-shadow: none !important;
        margin: 0 !important;           /* No bottom space */
    }

    .whatsapp-btn {
        background: #19b955 !important;  /* green */
    }

    .call-btn {
        background: #2596be !important;  /* blue */
    }
}
@media (max-width: 768px) {

    .floating-buttons {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        background: #fff !important;
        border-top: 1px solid #ddd !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15) !important;
        z-index: 99999 !important;
    }

    .float-btn {
        flex: 1 !important;
        border-radius: 0 !important;
        height: 60px !important;        /* Much bigger buttons */
        font-size: 32px !important;     /* Larger icons */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: #fff !important;
        box-shadow: none !important;
        margin: 0 !important;           /* No bottom space */
    }

    .whatsapp-btn {
        background: #19b955 !important;  /* green */
    }

    .call-btn {
        background: #2596be !important;  /* blue */
    }
}
@media (max-width: 768px) {

    .floating-buttons {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        margin: 0;              /* No margin bottom */
        gap: 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        background: #ffffff;
        border-top: 1px solid #ddd;
        z-index: 99999;
    }

    .float-btn {
        flex: 1;
        border-radius: 5%;
        height: 80px;           /* slightly taller */
        font-size: 80px;        /* bigger icons */
        box-shadow: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: 600;
        margin: 0;              /* ensures no bottom spacing */
    }

    .whatsapp-btn {
        background: #1ebe5d;   /* mobile green */
    }

    .call-btn {
        background: #2596be;   /* mobile blue */
    }
}



/* ---------------------------
   📱 MOBILE RESPONSIVE RULES
   --------------------------- */
@media (max-width: 992px) {
    .navbar {
        padding: 8px 0;
        /* background-color: black; */
    }
    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .top-space {
        margin-top: 80px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .top-space {
        margin-top: 70px;
    }

    .top-space img {
        height: auto;
    }

    .float-btn {
        width: 47px;
        height: 47px;
        font-size: 20px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}
/* HERO IMAGE WRAPPER */
.top-space {
  position: relative;
  margin-top: 120px;
}

.top-space img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY BOX */
 /* .hero-box {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #000;
  padding: 25px 30px;
  width: 330px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}  */

/* TEXT STYLES */
.booking-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}

.proj-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.proj-location {
  margin: 5px 0 15px;
  font-weight: 500;
  color: #333;
}

/* HIGHLIGHTS BOX */
.highlights-box {
  background: #6bbce9;
  padding: 15px 18px;
  border: 2px dashed #2596be;
  margin: 15px 0;
  border-radius: 8px;
  color:black;
  font-weight: 500;
}

.highlights-box p {
  margin: 5px 0;
}

/* PRICE / BHK DETAILS */
.bhk-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.price {
  font-size: 17px;
  margin-bottom: 20px;
}

/* BROCHURE BUTTON */
.brochure-btn {
  display: inline-block;
  background: #2596be;
  padding: 10px 22px;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* OVERLAY BOX DEFAULT (DESKTOP) */
 .hero-box {
  position: absolute;
  top: 30%; 
  left: 2%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #000;
   padding: 25px 30px; 
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
} 

/* MOBILE VIEW — MOVE BOX BELOW IMAGE */
@media (max-width: 768px) {
  .hero-box {
    position: static;       /* Removes overlay */
    transform: none;        /* Resets translation */
    margin: 15px auto;      /* Adds spacing */
    width: 90%;             /* Larger width for mobile */
  }

  .top-space {
    margin-top: 90px;       /* Reduce top space */
  }
}
/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  width: 80%;
  width: 370px;
  border-radius: 14px;
  padding: 25px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #444;
}

/* TITLES */
.popup-main-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.popup-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

/* INPUTS */
.popup-box input[type="text"],
.popup-box input[type="tel"],
.popup-box input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  font-size: 15px;
}

/* CHECKBOX LINE */
.checkbox-line {
  display: flex;
  align-items: center;
  font-size: 10px;
  margin-bottom: 10px;
  color: #444;
  gap: 8px;
}

.checkbox-line input {
  width: 16px;
  height: 16px;
}

/* PRIVACY POLICY TEXT */
.policy-text {
  font-size: 10px;
  margin-bottom: 15px;
  color: #333;
}

.policy-text a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

/* SUBMIT BUTTON */
.btn-submit {
  width: 100%;
  padding: 10px;
  background: #4a8f7d;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  color: black;
}

/* THANK YOU BOX */
/* .thankyou-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  border-radius: 12px;
} */
/* ================= FOOTER ================= */
.footer-section {
  background-color: #4a2e00;
  color:black;
  padding: 50px 0;
  font-family: 'Poppins', sans-serif;
}
/* about-section */
#about{
  /* border: 1px solid #000; */
  height: 60vh;
}

/* RERA title */
.footer-section .rera-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffcc99;
  letter-spacing: 1px;
}

/* RERA paragraphs */
.footer-section p {
  font-size: 10px;
  line-height: 1.6;
}

/* Logos row */
.footer-section img {
  width: 100%;
}

.footer-section .logo2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Divider between logos */
.footer-section .divider {
  color: #ffcc99;
  font-weight: bold;
  margin: 0 10px;
}

/* QR image center */
/* .qr-codes-row img {
  width: 30px;
  height: 30px;
} */

/* Read more link */
#readMoreBtn {
  cursor: pointer;
  color: #ffcc99;
  font-weight: 600;
}

/* Footer small text */
.footer-section .small {
  color: black;
  font-size: 10px;
}

/* Policy links */
.footer-section a {
  color: #ffcc99;
}
.footer-section a:hover {
  color: #e9b87d;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 767px) {

  .footer-section {
    text-align: center;
    padding: 40px 15px;
  }

  .footer-section .rera-title {
    font-size: 18px;
  }

  .footer-section p {
    font-size: 13px;
  }

  /* Logos stack on mobile */
  .footer-section .d-flex {
    flex-direction: column !important;
    gap: 10px;
  }

  .footer-section .divider {
    display: none;
  }

  .logo2-wrapper img {
    height: 40px !important;
  }

  /* QR code smaller */
  .qr-codes-row img {
    max-width: 250px;
  }
}

/* ================= VERY SMALL MOBILE ================= */
@media (max-width: 480px) {

  .footer-section {
    padding: 35px 10px;
  }

  .footer-section .rera-title {
    font-size: 18px;
  }

  .footer-section .small {
    font-size: 12px;
  }

  p, a {
    font-size: 12px !important;
  }

  /* Make logos small */
  .footer-section img {
    height: 40px;
  }

  .qr-codes-row img {
    max-width: 220px;
  }
}

/* ================= PRICING SECTION ================= */
#pricing {
  padding: 60px 0;
  background: #f8f8f8;
  font-family: "Poppins", sans-serif;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #2596be;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Titles */
.pricing-card h3 {
  color: black;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* Price */
.pricing-card .price {
  font-size: 30px;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 5px;
}

/* Small note */
.pricing-card .small {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* Buttons */
.btn-gold {
  width: 100%;
  background: #2596be;
  color: #fff;
  padding: 12px 0;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #9dd3f0;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  #pricing {
    padding: 50px 10px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-card .price {
    font-size: 26px;
  }

  .btn-gold {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    border-radius: 12px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .pricing-card .price {
    font-size: 24px;
  }
}
/* floor plan section */
/* CARD FIXED BOX */
.plan-card {
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  height: 320px;              /* FIXED HEIGHT */
  width: 100%;                /* Responsive width */
  overflow: hidden;           /* Ensures image does not overflow */
  position: relative;
}

/* IMAGE SHOULD NOT CHANGE CARD SIZE */
.plan-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;          /* Maintain crop, no stretching */
  object-position: center;
  transition: filter 0.4s ease-in-out;
  filter: blur(2px);
}

/* Blur Effect */
.plan-card:hover img {
  filter: blur(3px) brightness(0.8);
}

/* Overlay */
.plan-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card:hover .overlay {
  opacity: 1;
}

/* Overlay Text */
.overlay-text {
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

/* Buttons */
.btn-plan {
  background:  #2596be;
  color: black;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.btn-plan:hover {
  background: #77c1ea;
  transform: translateY(-2px);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .plan-card {
    height: 260px;            /* Slightly smaller */
  }
  .overlay-text {
    font-size: 15px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .plan-card {
    height: 220px;
    border-radius: 12px;
  }
  .overlay-text {
    font-size: 14px;
  }
}
/* Gallary section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease;
  height: 300px; /* ✅ Fixed equal height for all cards */
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Keeps images uniform and fills the frame */
  border-radius: 15px;
  transition: all 0.4s ease;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: #77c1ea;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item h5 {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* ✅ Artistic Impression text */
.artistic-text {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  font-style: italic;
  pointer-events: none;
}

/* ============================
   CLEAN CENTERED FORM WRAPPER
============================ */
/* #contact{ */
  /* border: 1px solid #000; */
  /* height: 115vh; */
/* } */
.enquiry-container {
  width: 70%;           /* You requested 70% */
  max-width: 650px;     /* Makes layout perfect on large screens */
  margin: 10px auto;    /* Center alignment */
  padding: 0 10px;      /* Small side padding */
}

/* ============================
   FORM BOX (Card)
============================ */
.enquiry-box {
  background: gray;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  width: 90%;
  height: 80vh;
  /* border: 1px solid #000; */
}

/* Proper centered heading */
.enquiry-box h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 650;
  color: black;
}

/* ============================
   LABEL FIXES
============================ */
.form-label {
  font-weight: 600;
  color: black;
  display: block;
  margin-bottom: 5px;
  text-align: left !important;  /* important for overriding bootstrap */
}

/* ============================
   INPUT + SELECT FIXES
============================ */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
}

.input-group .form-select {
  max-width: 110px;      /* fixes country code dropdown width */
}

.input-group .form-control {
  border-left: none !important;
  border-radius: 0 12px 12px 0;
}

.input-group .form-select {
  border-radius: 12px 0 0 12px;
}

/* ============================
   MOBILE RESPONSIVE FIX
============================ */
@media (max-width: 768px) {
  .enquiry-container {
    width: 90%; 
    max-width: 450px;
    /* height: 50vh; */
  }

  .enquiry-box {
    padding: 10px 10px;
    background: gray;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    width: 100%;
    height: 50vh;
  }
  .input-group {
    flex-direction: row;
  }
}
/* Amenites */
.amenity-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
}

.amenity-card i {
  font-size: 32px;
  color: #2596be;  /* gold shade */
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 15px;
  font-weight: 600;
  color: black;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(60%) sepia(80%) saturate(300%) hue-rotate(10deg);
}

/* LIST STYLING */
/* .list-group-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 14px 18px;
}

.list-group-item i {
  color: #7a2e2e;
} */

/* DETAILS BOXES */
/* .details {
  display: none;
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.details ul {
  padding: 0;
}

.details ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.details ul li span {
  font-weight: 600;
  color: #7a2e2e;
}

.details ul li:last-child {
  border-bottom: none;
} */

/* MAP IMAGE */
/* .location-map {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
} */

/* MOBILE RESPONSIVE */
/* @media (max-width: 768px) {

  #Location .row {
    text-align: center;
  }

  .list-group-item {
    font-size: 1rem;
  }

  .details ul li {
    flex-direction: column;
    text-align: center;
  }

  .details ul li span {
    margin-top: 4px;
  }

  .location-map {
    margin-top: 20px;
    max-height: 320px;
  }
} */

/* SECTION BACKGROUND */
.location-section {
   color: black;
}

.title-line {
  width: 100px;
  height: 3px;
  background: black;
  margin: 8px auto 0;
}

/* SUMMARY BOX */
.key-distance-box {

  border-left: 4px solid #1c1c1c;
  border-radius: 5px;
}

.key-distance-box h4 {
  color: #1c1c1c;
  font-weight: 700;
}

.key-distance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  color:black;
  border-bottom: 1px solid #222;
}

.key-distance-list li:last-child {
  border-bottom: none;
}

.key-distance-list i {
  color: #1c1c1c;
  font-size: 18px;
}

.key-distance-list strong {
  color: black;
  font-weight: 700;
}

/* MAP */
.location-map {
  border-radius: 8px;
  border: 2px solid #222;
  height: 350px;
}

/* MOBILE */
@media (max-width: 768px) {
  .key-distance-box {
    margin-bottom: 20px;
  }
  .key-distance-list li {
    font-size: 15px;
  }
  .location-map {
    width: 100%;
    margin-top: 20px;
  }
}
/* image slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slides {
  display: none;
  width: 100%;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fade Animation */
.fade {
  animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

/* Artistic Label */
.label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10;
}
