:root {
    --brand-green: #0d4511;
    --brand-purple: #4c1d95;
    --accent-gold: #eeb01e;
    --text-main: #333333;
    --light-bg: #f8faf9;
    --white: #ffffff;
    --brand-orange: #fbb03b;
    --light-gray: #f8f9fa;
    --base-font: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
}

section {
    overflow-x: hidden;
}

.py-100 {
    padding: 100px 0;
}

/* .pb-150 {
    padding-bottom: 150px;
} */

.text-accent {
    color: var(--accent-gold);
}

.text-justify {
    text-align: justify;
}

.bg-brand-green {
    background-color: var(--brand-green);
}

.hero-section {
    width: 100%;
    height: 100vh;
    /* full screen height */
    position: relative;
    overflow: hidden;
}

.hero-section picture,
.hero-section img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;   */
    object-position: center;
}

.z-index-1 {
    z-index: 1;
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--brand-green);
    position: relative;
}

/* Navbar */

@media screen and (max-width: 990px) {
    .navbar-nav {
        margin-top: 15px;
    }

    .navbar .nav-item {
        border-bottom: 1px solid #f3f3f3;
        padding: 5px 0;
    }

    .nav-link {
        margin: 0 !important;
    }
}


.nav-link {
    margin: 0 10px;
    transition: 0.3s;
    color: #000 !important;
}

.nav-link:hover {
    color: var(--brand-green) !important;
}

/* Container for the link to position the line correctly */
.navbar-nav .nav-link {
    position: relative;
    padding-top: 10px !important;
    /* Add space for the top line */
    transition: color 0.3s ease;
}

/* Creating the line using ::before */
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    /* Start with no width */
    height: 3px;
    /* Thickness of the line */
    background-color: #d4af37;
    /* Use your "gold" or theme color */
    transition: width 0.3s ease;
}

/* Hover State: Expand the line */
.navbar-nav .nav-link:hover::before {
    width: 100%;
}

/* Active State: Keep the line visible if you add an 'active' class */
.navbar-nav .nav-link.active::before {
    width: 100%;
}

/* Optional: Change text color on hover */
.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

.section-gap {
    padding: 120px 0;
}

.about-project-section {
    position: relative;
    padding: 100px 0 200px 0;
    min-height: 80vh;
    /* Replace the URL below with your image path */
    background:
        url(../img/about-img.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.project-title {
    color: var(--brand-green);
    /* Bright greenish yellow for visibility */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.project-description {
    color: #000;
    font-size: 1.15rem;
    line-height: 1.7;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); */
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.custom-input-group {
    margin-bottom: 10px;
    border-bottom: 2px solid #5b5b5b;
}

.custom-input-group label {
    display: block;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0;
}

.custom-input-group input {
    border: none;
    width: 100%;
    padding: 5px 0;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

.btn-submit {
    background-color: var(--brand-orange);
    color: #000;
    border: none;
    padding: 12px 50px;
    border-radius: 30px;
    /* font-weight: 700; */
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e69a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .about-project-section {
        text-align: center;
    }

    .form-card {
        margin-top: 50px;
    }

    .custom-input-group {
        text-align: left;
    }
}

.features-section {
    /* Background image with overlay to match the misty sunrise look */
    background: url(../img/features-img.webp);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #fbb03b;
    /* Orange border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.feature-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: #fff;
}

.icon-circle .icon {
    font-size: 3rem;
    color: var(--brand-orange);
    /* width: 50px;
    height: 50px;
    object-fit: contain; */
}

.feature-text {
    color: #444;
    font-size: 0.95rem;
    max-width: 180px;
    line-height: 1.4;
    font-weight: 500;
}

/* Centering the bottom row of 3 items on large screens */
@media (min-width: 992px) {
    .justify-lg-center {
        justify-content: center !important;
    }
}


.amenities-section {
    background-color: #f9f9f980;
    overflow: hidden;
}

.section-title {
    color: var(--brand-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Responsive Leaf Shapes */
.mask-top-left {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0 80px 0 80px;
}

.mask-bottom-right {
    width: 100%;
    /* aspect-ratio: 1/1.5; */
    object-fit: cover;
    border-radius: 0 80px 0 80px;
}

.amenity-title {
    color: var(--brand-green);
    font-weight: 800;
    line-height: 1.1;
    font-size: calc(1.1rem + 0.5vw);
    margin-bottom: 15px;
}

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

.amenity-list li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Desktop: Align text to the gap in the middle */
@media (min-width: 768px) {
    .amenity-list {
        text-align: right;
    }

    .amenity-list li {
        justify-content: flex-end;
    }

    .amenity-list li::after {
        content: '●';
        color: var(--brand-orange);
        margin-left: 10px;
        font-size: 0.6rem;
    }
}

/* Mobile: Standard list alignment */
@media (max-width: 767px) {
    .amenity-list {
        text-align: left;
    }

    .amenity-list li {
        justify-content: flex-start;
    }

    .amenity-list li::before {
        content: '●';
        color: var(--brand-orange);
        margin-right: 10px;
        font-size: 0.6rem;
    }

    .mask-top-left,
    .mask-bottom-right {
        border-radius: 40px 0 40px 0;
        /* Softer curves for smaller screens */
    }
}

.main-hero-img {
    width: 100%;
    height: auto;
    /* border-radius: 15px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Adjusting the column spacing for mobile */
.mobile-order-swap {
    display: flex;
    flex-direction: column;
}


/* .location-section {
    background-color: #fff;
    background-image: url(../img/royal-bloom-shape.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 500px;
} */

.section-header {
    color: var(--brand-green);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Map Container with Curved Border */
.map-frame {
    border: 2px solid var(--brand-green);
    overflow: hidden;
    border-radius: 50px 0 50px 0;
    background: #fff;
    /* height: 100%; */
}

.map-frame img {
    width: 100%;
    height: auto;
    border-radius: 40px 0 40px 0;
    height: 100%;
}

/* List Styling */
.category-title {
    color: var(--brand-green);
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 4px;
    font-weight: 500;
}

.location-item .dash {
    display: none;
    /* flex-grow: 1;
    text-align: center;
    color: #999; */
}

.distance {
    min-width: 70px;
    text-align: right;
    font-weight: 600;
}

/* Vertical Divider for Desktop */
@media (min-width: 992px) {
    .v-divider {
        border-left: 2px solid #0d4511a6;
        padding-left: 40px;
    }
}

.gallery-section {
    background-color: var(--brand-green);
    position: relative;
}

/* Watermark Background (Optional) */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: url('tulip-logo-watermark.png') no-repeat center;
    opacity: 0.05;
    pointer-events: none;
}


.gallery-item {
    padding: 10px;
}

.gallery-item img {
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    width: 100%;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Owl Navigation Customization */
.owl-theme .owl-nav {
    margin-top: 30px;
}

/* .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
} */

.owl-theme .owl-dots .owl-dot.active span {
    background: #fbb03b;
    width: 30px;
    transition: all 300ms linear;
}

.about-rld-section {
    position: relative;
    /* background: #eef6fb; */
    /* Light sky blue base */
    overflow: hidden;
    padding: 80px 0 250px 0;
    /* No bottom padding to let the grass touch the bottom */
    min-height: 500px;
}

.blue-bg-accent {
    position: absolute;
    right: 0;
    top: 0;
}

.blue-bg-accent img {
    width: 500px;
    height: auto;
}

.about-content {
    position: relative;
    z-index: 3;
    /* Above the blue background */
}

.about-title {
    color: #000;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 600px;
}

.grass-plot-container {
    position: relative;
    z-index: 4;
    margin-top: -50px;
    /* Pulls the image slightly up into the sky */
    text-align: center;
}

.grass-plot-img {
    max-width: 80%;
    height: auto;
    display: inline-block;
}

/* Clouds background effect */
.sky-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/clouds.png');
    opacity: 0.5;
}

@media (max-width: 991px) {
    .about-rld-section {
        padding: 60px 0 300px 0;
    }

    .blue-bg-accent img {
        display: none;
        /* width: 300px;
        z-index: -1; */

    }

    .about-text {
        max-width: 100%;
    }

    .grass-plot-img {
        max-width: 100%;
    }
}


.enquiry-section {
    background-color: var(--brand-green);
    padding: 80px 0;
    color: white;
}

/* Map Styling */
.map-wrapper {
    /* border: 8px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 15px; */
    overflow: hidden;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
    /* Optional aesthetic touch */
}

/* Form Card Styling */
.enquiry-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #333;
}

.enquiry-title {
    color: var(--brand-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
}

/* Custom Minimalist Inputs */
.form-group-custom {
    margin-bottom: 12px;
    border-bottom: 2px solid #5b5b5b;
    transition: border-color 0.3s;
}

.form-group-custom:focus-within {
    border-bottom-color: var(--brand-orange);
}

.form-group-custom label {
    display: block;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0;
}

.form-group-custom input {
    border: none;
    width: 100%;
    /* padding: 5px 0; */
    outline: none;
    font-weight: 500;
    background: transparent;
}

.btn-submit-large {
    background-color: var(--brand-orange);
    color: #000;
    border: none;
    padding: 10px 45px;
    border-radius: 30px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background-color: #e69a2e;
    transform: scale(1.05);
}

.map-caption {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
    font-style: italic;
}

.watermark-img {
    position: absolute;
    top: 5%;
    /* left: 10%; */
    right: 13%;
    opacity: 0.20;
    pointer-events: none;
    z-index: 0;
}

.watermark-img img {
    max-width: 550px;
    width: 100%;
}


.watermark-img1 {
    position: absolute;
    top: 10%;
    /* left: 10%; */
    right: 13%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.watermark-img1 img {
    max-width: 650px;
    width: 100%;
}


.features-section1 {
    background-color: var(--brand-green);
    overflow: hidden;
    position: relative;
}

.features-card {
    position: relative;
    text-align: center;
    padding: 20px;
}

.img-wrapper {
    position: relative;
    /* border-radius: 50%; */
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    margin-bottom: 20px;
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.features-card:hover img {
    transform: scale(1.08);
    transition: all 300ms linear;
}

.badge-number {
    position: absolute;
    top: 38px;
    left: 38px;
    background: #fbb03b;
    color: white;
    width: 45px;
    height: 45px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 2px solid white;
    /* border-radius: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
}

.features-card h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    line-height: 25px;
}

/* Container styling */
.park-amenities {
  /* padding: 50px 0; */
  background: #f9f9f980;
}

.park-card {
  max-width: 1100px;
  margin: 0 auto;
  /* padding: 20px; */
  padding-bottom: 10px;
}

.park-grid {
  display: flex;
  /* align-items: center; */
  gap: 40px;
}

.park-image {
  flex: 2; /* Takes up more space */
}

.park-image img {
  width: 100%;
  height: auto;
  display: block;
}

.park-details {
  flex: 1; /* Takes up less space */
  text-align: left;
}

/* Typography matching your image */
.park-title {
  color: #004d2c; /* Dark Green */
  font-family: sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.legend-title {
  color: #004d2c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.legend-list li {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 5px;
  display: flex;
}

.legend-list li span {
  min-width: 25px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .park-grid {
    flex-direction: column;
    text-align: center;
  }
  .park-details {
    text-align: left;
    padding: 0 15px;
  }
}
/* Customizing Owl Navigation */


@media (max-width: 1200px) {
    .owl-nav {
        display: none;
    }

    /* Hide side nav on smaller screens */
}

@media (max-width: 991px) {
    .enquiry-card {
        margin-top: 50px;
    }

    .enquiry-title {
        text-align: center;
    }

    .section-gap {
        padding: 80px 0;
    }

    /* .watermark-img {
        position: absolute;
        bottom: 100px;
        right: 0px;
        opacity: 0.20;
        pointer-events: none;
        z-index: 0;
    }

    .watermark-img1 {
        position: absolute;
        bottom: 0 !important;
        right: 0;
        opacity: 1;
        pointer-events: none;
        z-index: 0;
    }

    .watermark-img1 img {
        max-width: 450px;
        width: 100%;
    } */
}

/* styles for floating icon */
.floating-icons.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.floating-icons .float_icon {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.floating-icons .icon:hover {
  transform: scale(1.1);
}

.call {
  background-color: #28a745;
  /* Green for call */
}

.whatsapp {
  background-color: #25d366;
  /* WhatsApp green */
}

.brochure {
  background-color: var(--brand-green);
  /* Blue for browser */
}

.fixed-buttons {
  display: none;
  /* hidden on desktop */
}

@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }

  .fixed-buttons {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .fixed-buttons .btn {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
  }

  .enquiry-btn {
    /* background: linear-gradient(45deg, #5775a1, #ee1823); */
    background-color: var(--brand-green);
    color: #fff;
  }

.brochure-btn {
    /* background: linear-gradient(45deg, #ee1823, #5775a1); */
    background-color: #e18908;
    color: #fff;
}

  .enquiry-btn:hover {
    background-color: #000;
    color: #fff;
  }

  .brochure-btn:hover {
    background-color: var(--brand-green);
    color: #fff;
  }
}