 /* Color Palette */
        :root {
            --white: #ffffff;
            --light-green: #c7f2c3;
            --medium-blue: #3a7bd5;
            --brand: var(--medium-blue);
        }
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
}

        /* Luxury Navbar Styling */
        .navbar-custom {
            /*background: linear-gradient(90deg, var(--white), var(--light-green), var(--medium-blue));*/
            box-shadow: 0 4px 25px rgba(0,0,0,0.12);
            padding: 18px 0;
            backdrop-filter: blur(10px);
            transition: all 0.35s ease-in-out;
        }

        /* Shrink on scroll */
        .navbar-custom.scrolled {
            padding: 8px 0 !important;
            background: linear-gradient(90deg, var(--white), var(--light-green));
            box-shadow: 0 6px 28px rgba(0,0,0,0.18);
        }

        /* Logo */
        .navbar-brand img {
            /*height: 55px;*/
            transition: transform 0.3s ease, height 0.3s ease;
        }
      

        /* Nav links */
        .nav-link {
             
            font-weight: 600;
            padding: 12px 18px !important;
            position: relative;
            color: #003566 !important;
            transition: color 0.3s ease;
        }

        /* Hover underline - luxury gradient */
        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--medium-blue), var(--light-green));
            transition: width 0.35s ease;
            border-radius: 3px;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Active indicator */
        .nav-link.active {
            color: var(--medium-blue) !important;
        }
        .nav-link.active::after {
            width: 100%;
        }

        /* Dropdown styling */
        .dropdown-menu {
            border-radius: 14px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
            animation: dropdownFade 0.28s ease forwards;
            background: var(--white);
            overflow: hidden;
        }
        @keyframes dropdownFade {
            0% { opacity: 0; transform: translateY(10px) scale(0.96); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Hover open */
        .dropdown-toggle::after { display: none !important; }
        .nav-item.dropdown:hover .dropdown-menu { display: block; opacity: 1; visibility: visible; }

      /* Smooth Animated Toggler Button */
.custom-toggler {
    border: none;
    outline: none;
    width: 38px;
    height: 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: none !important;
}

/* Toggler Lines */
.toggler-line {
    width: 100%;
    height: 4px;
    background: var(--medium-blue);
    border-radius: 4px;
    transition: all 0.35s ease;
}

/* When toggled (active class added via JS) */
.custom-toggler.active .toggler-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.custom-toggler.active .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active .toggler-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Smooth scale effect */
.custom-toggler:hover {
    transform: scale(1.08);
}

           /* Hero Section */
        .hero-section {
            padding-top: 90px;
            padding-bottom: 90px;
            background: linear-gradient(135deg, var(--white), var(--light-green));
        }

        .hero-title {
            font-family: "Roboto Condensed", sans-serif;
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: #002147;
        }
        .hero-title .highlight {
            color: var(--medium-blue);
        }

        .hero-subtitle {
             font-family: "Montserrat", sans-serif;
            font-size: 17px;
            color: #333;
            max-width: 420px;
        }

        .hero-btn {
            background: var(--medium-blue);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: 0.3s ease;
        }
        .hero-btn:hover {
            background: #2b6ab0;
            transform: translateY(-2px);
        }

        /* Slider luxury look */
        .luxury-slider img {
            height: 420px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            .luxury-slider img {
                height: 300px;
            }
        }
/*about style */


 /* FONT SETTINGS */
  .about-title, 
  .about-title span {
    font-family: "Roboto Condensed", sans-serif;
  }

.about-subtitle{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 32px;
}
  .about-text {
    font-family: "Montserrat", sans-serif;
  }

  .btn-about {
    font-family: "Montserrat", sans-serif;
  }

  /* SECTION STYLE */
  .about-luxury {
    background: linear-gradient(135deg, #ffffff, #f2fff4);
    
  }

  .about-img-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  }

  .about-img {
    width: 100%;
    transition: 0.5s ease;
  }



  .about-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--medium-blue);;
  }

  .higlight {
    color: #58c394;
  }

  .about-text {
     text-align:justify;
    color: #555;
    line-height: 1.8;
    font-size: 13px;
  }

  .btn-about {
    display: inline-block;
    padding: 12px 28px;
    background: var(--medium-blue);;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
  }

  .btn-about:hover {
    background: #58c394;
    color: var(--medium-blue);;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .about-title {
      font-size: 32px;
      text-align: center;
    }
    .about-content {
      text-align: center;
    }
  }
  
  /*progress section construction update */
  
  /* Section Title */
.status-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--medium-blue);;
}
.status-title span {
  color: #58c394;
}

/* Toggle Buttons */
.status-toggle .status-btn {
  font-family: "Montserrat", sans-serif;
  padding: 10px 25px;
  margin: 0 10px;
  background: #e8f9f0;
  border: 2px solid transparent;
  color: var(--medium-blue);;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.status-toggle .status-btn.active {
  background: var(--medium-blue);;
  color: #fff;
  border-color: var(--medium-blue);;
  box-shadow: 0 5px 20px rgba(0, 59, 111, 0.25);
}

/* Project Cards */
.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}
.project-card img {
  width: 100%;
  transition: 0.4s;
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card h5 {
  text-align: center;
  padding: 15px 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  color: var(--medium-blue);;
}

/* Content Toggle */
.status-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}
.status-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .status-title {
    font-size: 32px;
  }
  .status-toggle .status-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}

   /* ---------------- FOOTER ---------------- */

.ensaara-footer {
    background: #0d1b2a;
    color: #d8e3e7;
    padding-top: 60px;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.footer-logo {
    max-width: 180px;
}

.footer-heading {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #a4d4ae;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #d8e3e7;
    opacity: 0.75;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #a4d4ae;
    padding-left: 4px;
}

/* Social Icons */
.footer-social a {
    color: #d8e3e7;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #7abf96;
    transform: translateY(-3px);
}

/* Partner Button */
.partner-btn {
    display: inline-block;
    background: #1e6091;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.partner-btn:hover {
    background: #52a7db;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: #07111c;
    padding: 12px 0;
    margin-top: 40px;
}

.footer-bottom a {
    color: #a4d4ae;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* ---------------- POPUPS ---------------- */

/* Wide Modal */
.custom-wide-modal {
    max-width: 80% !important;
}

/* Smooth zoom effect */
.modal.fade .modal-dialog {
    transform: scale(.85);
    transition: all 0.35s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Scrollable content */
.disclaimer-body {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar */
.disclaimer-body::-webkit-scrollbar {
    width: 6px;
}
.disclaimer-body::-webkit-scrollbar-thumb {
    background: #7aaedb;
    border-radius: 10px;
}
.disclaimer-body::-webkit-scrollbar-track {
    background: #eaf3ff;
}

/* Modal Title */
.modal-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    color: #1e3d59;
    font-weight: 600;
}


/*project page hero section */

 /* Hero wrapper */
.project-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9f8f2 100%);
    overflow: hidden;
}

/* Title */
.project-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Subtitle */
.project-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #4c896d;
    margin-bottom: 20px;
}

/* Description */
.project-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #3c4a57;
    line-height: 1.7;
    max-width: 550px;
}

/* Buttons */
.hero-buttons {
    margin-top: 30px;
}

.btn-hero-primary {
    background: #1e6091;
    padding: 12px 24px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-hero-primary:hover {
    background: #357bb8;
    transform: translateY(-3px);
}

.btn-hero-outline {
    margin-left: 12px;
    padding: 12px 24px;
    border-radius: 6px;
    color: #1e6091;
    border: 2px solid #1e6091;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-hero-outline:hover {
    background: #1e6091;
    color: #fff;
    transform: translateY(-3px);
}

/* Abstract Design Shape */
/* Floating Abstract Shape */
.abstract-shape {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #a4d4ae, #7abf96);
    border-radius: 50% 35% 65% 40%;
    animation: floatShape 6s infinite ease-in-out;
    opacity: 0.95;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* allow image overflow if needed */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* PNG House Image */
.hero-house-img {
    width: 90%;
    height: auto;
    position: absolute;
    bottom: -20px; /* adjust to lift the image out of the blob */
    animation: floatImg 6s infinite ease-in-out;
}

/* Floating animation for blob */
@keyframes floatShape {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Independent image floating for premium look */
@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .abstract-shape {
        width: 240px;
        height: 240px;
    }
    .hero-house-img {
        width: 95%;
        bottom: -10px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .project-title {
        font-size: 48px;
    }
    .abstract-shape {
        width: 220px;
        height: 220px;
        margin-top: 30px;
    }
}
/*project section end */



/*feature section */


  
    /* Section */
.premium-features {
    background: #f5fdf9;
}

/* Title */
.features-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 42px;
    color: #1e3a5f;
    font-weight: 700;
}

.features-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    color: #3c4a57;
    opacity: 0.8;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.35s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: #a4d4ae;
}

/* Icons */
.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #7abf96, #a4d4ae);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 0 auto 18px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Card Headings */
.feature-heading {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    color: #1e3a5f;
    margin-bottom: 10px;
}

/* Text */
.feature-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #3c4a57;
    opacity: 0.85;
}

/*feature section end */

/*Amenities section */

 /* Title */
.amenities-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1e3a5f;
  text-transform: uppercase;
}

.amenities-subtitle {
  font-family: "Montserrat", sans-serif;
  color: #4b5b73;
  margin-top: 5px;
  font-size: 15px;
}

/* Box Style */
.amenity-box,
.amenity-slide {
  text-align: center;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  padding: 12px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.amenity-box img,
.amenity-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.amenity-box h4,
.amenity-slide h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  color: #1e3a5f;
  font-weight: 600;
}

.amenity-box:hover,
.amenity-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* HORIZONTAL SLIDER */
.amenities-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.amenities-slider::-webkit-scrollbar {
  height: 6px;
}

.amenities-slider::-webkit-scrollbar-thumb {
  background: #1e3a5f;
  border-radius: 4px;
}

/* Slide Cards Size */
.amenity-slide {
  min-width: 220px;
}

/*Amenities section end */



/*Specification center */

 .spec-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1e3a5f;
  text-transform: uppercase;
}

.spec-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #5d6d87;
}

/* Layout */
.spec-wrapper {
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr 1fr;
}

@media(max-width: 768px) {
  .spec-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Individual Blocks */
.spec-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 30px;
  border-left: 6px solid #1e3a5f;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.spec-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* Headings */
.spec-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}

/* List Styling */
.spec-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.spec-block ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #3c4a5d;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

/* Custom Bullet */
.spec-block ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #1e3a5f;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}


/*specification center end */


/*location section */

  .location-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.location-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #4c5a70;
  margin-bottom: 25px;
}

.location-map img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform .4s ease;
}

.location-map img:hover {
  transform: scale(1.02);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef6f4; /* light luxury green tint */
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.location-list li:hover {
  background: #dcece7;
  transform: translateY(-3px);
}

.loc-point {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
}

.loc-distance {
  font-size: 15px;
  font-weight: 500;
  color: #2b5e8b; /* medium blue */
}


/*location center end */

/*gallery section */
  /* Section Title */
.gallery-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 42px;
   font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.gallery-subtitle {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  opacity: 0.8;
}

/* Gallery Grid */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effect */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* Masonry Variations */
.gallery-card.tall {
  height: 350px;
}

.gallery-card {
  height: 250px;
}

.gallery-card.wide {
  height: 300px;
}


/*gallery section end */