/* Basic Reset */
:root {
    --dropkicker: 'Dropkicker';
    --montserrat: 'montserrat';
    --green-color: #14693C;
    /* --green-color: #177845; */
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: var(--bs-font-sans-serif);
    background-color: #f6f9e1;
    color: #212529;
    line-height: 1.6;
}
img, svg {
    vertical-align: middle;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6, span {
    /* font-family: var(--dropkicker); */
    font-family: math !important; 
}

.h6, h6{
    font-size: 1rem;
}
body, p, a {
    /* font-family: "Montserrat"; */
    /* font-family: var(--montserrat) !important; */
}

.contact-icons {
    position: fixed;               /* Fix the icons to the screen */
    top: 35%;                       /* Position them vertically in the middle */
    right: 0;                       /* Position them on the right side of the screen */
    transform: translate(0%, 0%);   /* No transformation needed for desktop */
    display: grid;                  /* Align the icons vertically */
    gap: 20px;                      /* Space between the icons */
    z-index: 1000;                  /* Ensure icons are above other content */
}

/*Style for individual icons */
.contact-icon {
    font-size: 24px;
    background-color: var(--green-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 150px;
    padding: 10px;
}

.contact-icon:hover {
    color: #007bff; /* Change color on hover */
}

/* Mobile view */
@media (max-width: 768px) {
    .contact-icons {
        background-color: var(--green-color);
        top: auto;                    /* Reset top for mobile */
        bottom: 0px;                 /* Position at the bottom of the page */
        left: 0;                      /* Position at the left of the screen */
        right: 0;                     /* Position at the right of the screen */
        display: flex;                /* Use flex for horizontal alignment */
        justify-content: space-around;      /* Center icons horizontally */
        gap: 20px;                    /* Space between icons */
        transform: translate(0, 0);   /* Reset translation */
    }
    .contact-icon {
        font-size: 24px;
        background-color: var(--green-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 150px;
        padding: 10px;
    }
    hr {
     display: none;
      /* margin-top: 5px; */
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.enquire-button-nav{
    color: black;
    /* border: 1px solid #ed9d07; */
    border-radius: 30px;
    padding: 5px 10px;
    font-size: 14px;
    background: #fff;
}
#navbar {
   
    color: black;
    /* padding: 10px; */
    text-align: center;
    transition: background-color 0.3s ease;  /* Smooth transition */
}

#navbar ul {
    list-style: none;
}

#navbar ul li {
    display: inline;
    margin: 0 15px;
}

#navbar ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.main-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    /* background-color: #333; */
    color: white;
}

.logo {
    width: 140px; /* Adjust the width */
    height: auto; /* Keep the aspect ratio */
    display: block; /* Prevents image from displaying inline */
    margin: 0 auto; /* Centers the image horizontally */
}
.enquire-toggle{
    display: flex; 
    justify-content: center;
     align-items: center; 
     /* margin-left: 30px; */
     gap: 15px;
}

@media (max-width: 1024px) {
    .main-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        /* background-color: #333; */
        color: white;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Rearrange the elements for mobile */
    .main-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .nav-container {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    /* Adjust the position of logo and toggle bar */
    .logo {
        margin-left: 0; /* Remove any left margin if added */
    }

    /* Center the enquire button and phone on mobile */
    .enquire-button-nav {
        display: none;
    }

    /* Position the toggle bar to the right for mobile */
    .toggle-bar {
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
    }

    .enquire-toggle{
        display: flex; 
        justify-content: space-between;
         align-items: center; 
         margin-left: 190px;
    }
    /* Modal and links style for mobile */
    .modal-content-nav {
        padding: 20px;
    }

    /* Optional: Add other mobile adjustments */
}


.newModal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center; /* Align the modal at the center */
    z-index: 1000;
    padding-top: 20px;
}
@keyframes slideIn {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Optional: Smooth fade for the background */
#popup.show {
    display: flex;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.new-modal-content {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    animation: slideIn 1s ease-out;
    max-width: 900px;
    position: relative;
    margin-top: 60px;

}

/* Logo at the top center */
.modal-logo {
    position: absolute;
    top: -12px;
    left: 63%;
    transform: translateX(-50%); /* Center the logo horizontally */
    z-index: 2;
}

.modal-logo img {
    width: 100px; /* Adjust logo size */
    height: auto;
}

/* Main content of the modal (image and form) */
.new-modal-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}

.modal-image {
    width: 50%; /* Image takes up 48% of the container width */
    text-align: center;
}

.modal-form {
    width: 48%; /* Form takes up 48% of the container width */
}
.modal-form-logo{
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal-form-logo img{
    width: 100px;
}

/* Image styling */
.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners */
}

/* Form styling */
.modal-form form {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.modal-form input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-form input:focus {
    border-color: #4CAF50;
}

.modal-form button {
    padding: 10px;
    font-size: 16px;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.modal-form button:hover {
    background-color: #45a049;
}

.new-close-btn {
    background: transparent;
    border: none;
    font-size: 30px;
    color: black;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 0;
}

.new-close-btn:hover {
    color: red;
}

/* Responsive styles */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .new-modal-content {
        padding: 20px; /* Reduce padding for mobile */
        width: 100%;
        max-width: 90%; /* Adjust the width on small screens */
        /* top: 90px; */
    }

    .new-modal-main-content {
        flex-direction: column; /* Stack image and form on top of each other */
        align-items: center;
    }

    .modal-image, .modal-form {
        width: 100%; /* Make both sections take full width */
        margin-bottom: 20px; /* Add space between image and form */
    }

    .modal-logo img {
        width: 80px; /* Make logo smaller on mobile */
    }

    .modal-form input, .modal-form button {
        font-size: 14px; /* Smaller input and button font size on mobile */
    }
}

/* Tablet (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .new-modal-content {
        padding: 25px; /* Reduce padding for tablet */
        max-width: 80%;
    }

    .new-modal-main-content {
        flex-direction: column; /* Stack image and form on top of each other */
        align-items: center;
    }

    .modal-image, .modal-form {
        width: 100%; /* Make both sections take full width */
        margin-bottom: 20px; /* Add space between image and form */
    }

    .modal-logo img {
        width: 90px; /* Adjust logo size for tablets */
    }

    .modal-form input, .modal-form button {
        font-size: 15px; /* Slightly smaller font size for tablet */
    }
}
/* h1, .nav-container {
    flex: 1;
} */

.toggle-bar {
    font-size: 30px;
    cursor: pointer;
    /* position: fixed; */
    top: 20px;
    left: 20px;
    color: #120404;
    z-index: 1000; /* Keep the toggle bar on top */
}

/* Modal styles */
.modalNav {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    top: 0;
    right: -100%; /* Initially off-screen to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto;
    transition: right 1.5s ease;


    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}

.modalNav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

/* Modal content */
.modal-content-nav {
    position: relative; /* Relative positioning to place logo and close button */
    background-color: white;
    /* margin: 10% auto; */
    padding: 100px 90px;
    width: 40%; /* Adjust the width as needed */
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 1.5s ease-out forwards;
}

/* Modal header */
.modal-header {
    display: flex;
    justify-content: center; /* Position items at the ends */
    align-items: center; /* Align items vertically */
    position: absolute;
    top: 20px; /* Position the header from top */
    left: 5%;
    transform: translateX(-50%); /* Center the header horizontally */
    width: 100%;
    margin-top: 10px;
}

/* Logo styles */
.modal-logo {
    max-width: 140px; /* Adjust logo size */
    height: auto;
}

/* Close button */
.close {
    font-size: 40px;
    color: #333;
    cursor: pointer;
    background: transparent;
    border: none;
    position: absolute;
    /* top: 5px; */
    right: 10px;
}

.close:hover {
    color: red; /* Change color on hover */
}

/* Links styling */
.modal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 70px; /* Adjust padding to make space for the header */
}

.modal-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    /* line-height: 0px; */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    padding-bottom: 5px; /* Space between text and line */
    border-bottom: 1px solid #00000038; /* Line below each link */
    transition: border-color 0.3s; /* Smooth transition on hover */
}

.modal-links a:hover {
    /* color: #a9ec2d; */
    cursor: pointer;
    border-color: var(--green-color); /* Change line color on hover */
}



#nav-menu {
    display: none; /* Hide navigation menu by default */
}

#nav-menu.active {
    display: block; /* Show the menu when active */
}

#nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#nav-menu ul li {
    padding: 15px;
    text-align: center;
}

#nav-menu ul li a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .modalNav {
        width: 100%;  /* Make modal take full width on mobile */
    }

    .modal-content-nav {
        width: 100%;  /* Adjust modal width for mobile to 90% */
        height: 100%; /* Allow modal to adjust height based on content */
        padding: 20px 15px; /* Reduce padding for mobile */
    }

    .modal-header {
        justify-content: center;  /* Center the logo */
    }

    .modal-links {
        padding:100px 50px; /* Reduce padding on the left for mobile */
    }

    .modal-links a {
        font-size: 12px;  /* Increase link text size for mobile */
        letter-spacing: 1px;
    }

    .toggle-bar {
        font-size: 30px;  /* Make toggle button larger on mobile */
        margin-left: -70px;
    }
}
@media (max-width: 1024px) {
    /*  */

    .modal-content-nav {
        width: 100%;  /* Adjust modal width for mobile to 90% */
        height: 100%; /* Allow modal to adjust height based on content */
        padding: 20px 15px; /* Reduce padding for mobile */
    }

    .modal-header {
        justify-content: flex-start;  /* Center the logo */
    }

    .modal-links {
        padding:150px 65px; /* Reduce padding on the left for mobile */
    }

    .modal-links a {
        font-size: 12px;  /* Increase link text size for mobile */
        letter-spacing: 1px;
    }

    .toggle-bar {
        font-size: 30px;  /* Make toggle button larger on mobile */
        /* margin-left: -75px; */
    }
    .modal-logo {
        max-width: 140px;
        height: auto;
    }
    .modal-logo {
        position: absolute;
        top: -10px;
        left: 65%;
        /* transform: translateX(-50%); */
        z-index: 2;
}
}

@keyframes slideIn {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}

/* Animation for sliding out */
@keyframes slideOut {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}


/* #banner {
   
    width: 100%;
    height: 680px;  
    overflow: hidden;
} */
 #banner{
    position: relative;
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
 }


#banner img {
    width: 100%;
    height: auto;
   display: block;
}

/* Text overlay positioning (center the heading) */
/* .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
} */

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
  }

  .top-text p,
  .top-title,
  .text-head,
  .bottom-text {
    margin: 0;
    padding: 0.5rem 0;
  }

.top-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: #000;
    top: 27%;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 35px;
    font-size: 25px;
}

.top-title{
    display: block;
    color: var(--green-color);
}

.top-text p {
    margin: 0;
    font-size: 1em;
}

/* Heading centered vertically in the middle of the image */
.text-head {
    margin-bottom: 7rem;
    color: #e5e2dd;
    font-size: 3em;
    z-index: 1;
}

/* Bottom text section below the image, horizontally arranged */
.bottom-text {
    display: flex;
    justify-content: space-around; /* This will space the items evenly */
    align-items: center;
    position: absolute;
    bottom: 20px; /* Adjust this value to move the bottom group of divs */
    /* left: 95px; */
    width: 95%;
    color: #c7bebe;
    z-index: 1;
    padding-bottom: 50px;
}

.payment-plan {
    background: #595A54;
    font-size: 12px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-weight: 300;
    padding: 10px 30px;
    margin: 0;
    min-width: 200px

}
.status{
    background: #595A54;
    font-size: 12px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-weight: 300;
    padding: 10px 20px;
    margin: 0;
    min-width: 200px;
    text-align: center;
}

.bottom-text .start-price{
    background: #595a54;
    padding: 15px 20px;
    letter-spacing: 3px;
    font-weight: 300;
    border-radius: 50px;
    margin: 0;
    position: relative;
    text-transform: uppercase;

}
/* @media (min-width: 768px) {
    .top-text{
        display: contents;
        top: -25px;
        color: var(--green-color);
    }
} */

@media (max-width: 768px) {
    #homePage {
        flex-direction: column;
    }

    .text-overlay {
        position: relative;
        padding: 2rem;
        /* display: block; */
        background: none;
    }
    .top-text{
        display: contents;
        top: -25px;
        color: var(--green-color);
    }

    .top-text p {
        font-size: 1.5rem;
    }
    #banner img{
        width: 100%;
    height: 630px;
    object-fit: cover;
    }
    .bottom-text .start-price{
        font-size: 1rem;
        padding: 5px 15px;
        margin-top: 5px;
        border-radius: 40px;
    }
    

    .text-head {
        font-size: 1.5rem;
        margin: 12px 0px;
        color: grey;
    }

    .bottom-text {
        display:contents;
        font-size: 12px;
        gap: 20px; /* Increase the gap between elements on mobile */
        padding: 15px; 
        
    }
    .bottom-text div{
        margin-top: 5px;

    }

    .start-price {
        font-size: 1.2rem;
    }
}

/* Tablet/Small Laptop Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .text-overlay {
        /* position: absolute; */
        padding: 20px;
        text-align: center;
        height: 100%;
        /* background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%); */
    }

    .text-head {
        font-size: 2.2rem;
        /* margin-top: 70%; */

    }

    .top-text p {
        font-size: 1.4rem;
    }
    #banner{
    width: 100%;
    height: 100%;  /* Adjust height of banner */
    overflow: hidden;
    }

    #banner img{
        width: 100%;
    height: 1360px;
    object-fit: cover;
}
.bottom-text div{
    margin-top: 5px;
    font-size: 8px;
}

.bottom-text .start-price {
    font-size: 12px;
    padding: 5px 35px;
    border-radius: 40px;
}


}
/* Sections */


/* Section */
section {
    text-align: center;
    /* padding: 60px 20px; */
    /* margin: 20px 0; */
    /* background-color: #fff; */
}

.project, .specifications, .amenity, .price, .master, .visual, .location, .contact{
    margin: 50px 0;

}
.project{
    position: relative;
    /* padding-top: 70px; */
}
.project h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.project-subHead{
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.project::before{
    position: absolute;
    content: '';
    width: 24%;
    height: 40%;
    left: 2%;
    top: 0;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 310px;
}

/* Default Styles for larger screens */
.project-content {
    display:flex;
    justify-content: center;
    align-items: flex-start;  /* Align text and image at the top */
    margin-top: 20px;
    padding: 45px;
    width: 100%;
    
}

.project-text {
    padding: 24px;
    width: 50%;
    max-width: 600px; /* Prevent text from stretching too wide */
}

.project-text p{
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 32px;
    padding: 20px;
}

.project-enquire {
    display: block;
    text-align: start;
    margin-top: 25px;
}

.project-enquire a {
    color: #fff;
    background: var(--green-color);
    padding: 12px 25px;
    font-size: 14px;  /* Increase button font size */
    letter-spacing: 1px;  /* Slightly less spacing */
    text-transform: uppercase; /* Make button text uppercase */
    transition: background 0.3s;
}



.project-image {
    width: 50%;
    padding: 20px;
}


.project .project-image::before{
    position: absolute;
    content: '';
    left: 50%;
    top: 30%;
    width: 20%;
    height: 50%;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 200px;
}

.project .project-image::after{
    position: absolute;
    content: '';
    right: 5%;
    bottom: -12%;
    width: 15%;
    height: 35%;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 200px;
    transform: scaleX(-1);
}


.project-image img {
    width: 70%;
    object-fit: cover;
    
}

/* Mobile Styles - For screens smaller than 768px */
@media (max-width: 768px) {
/* .project{
    margin-top: 150px;
} */

    .project-content {
        flex-direction:column-reverse;  /* Stack the text and image */
        align-items: center;
        padding: 5px;
    }

    .project-text p{
        letter-spacing: 1px;
        font-size: 14px;
        line-height: 22px;
        padding: 0px;
    }

    .project-text {
        width: 100%;  /* Full width for text */
        padding: 15px;
        text-align: center;  /* Center align text */
    }

    .project-enquire {
        text-align: center; /* Center the "Enquire Now" button */
    }

    .project h2{
        font-size: 20px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }

    .project-subHead{
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 25px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }

    .project-enquire a {
        padding: 12px 30px;
        font-size: 16px;  /* Increase font size for mobile */
    }

    .project-image {
        width: 100%;  /* Full width for image */
        padding: 15px;
    }

    .project-image img {
        height: 300px;  /* Adjust image height for mobile */
         width: 100%;
    }
    .project::before{
        left: 1%;
        top: 2%;
       background-size: 90px;
    }

    .project .project-image::after{
        
        right: 1%;
        bottom: -10%;
        width: 65%;
        height: 25%;
        
    }
    
}

/* Tablet Styles - For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .project-content {
        flex-direction:column-reverse;  /* Stack text and image for tablet */
        align-items: center;
    }


    .project-image {
        width: 70%;
        padding: 20px;
        height: auto;
    }


    .project-text {
        width: 100%;  /* Full width on tablets */
        text-align: center;
        padding: 0;
    }

    .project-enquire a {
        font-size: 16px;
        padding: 10px 20px;
    }

    .project-image img {
        height: 350px;  /* Adjust image size for tablets */
        width: 100%;

    }
    .project-enquire {
        /* display: block; */
        text-align: center;
        margin-top: 25px;
    }
}

/* General Styles for larger screens */
.specifications{
    position: relative;
}

.specifications-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.specifications h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.specifications::before{
    position: absolute;
    content: '';
    left: 2%;
    top: 50%;
    width: 28%;
    height: 32%;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 300px;
}

.specifications::after{
    position: absolute;
    content: '';
    right: 2%;
    top: 50%;
    width: 28%;
    height: 32%;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 300px;
    transform: scaleX(-1);
    /* transform: rotate(322deg) scaleX(-1); */
}


.specifications-imp-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 150px;
}

.highlights-button, .specifications-button {
    color: black;
    /* background-color: var(--green-color) !important; */
    font-family: 'Dropkicker';
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    padding: 10px 30px;
    border: 1px solid black;
    border-radius: 0 !important;
    background-color: transparent;
    cursor: pointer
    /* border: 1px solid #14693c !important; */
}

.highlights-button.active, .specifications-button.active {
    background-color: var(--green-color); /* Blue background for active button */
    color: white;
}
.highlights-area, .specifications-area {
    display: none;
}
#highlightsArea.show, #specificationsArea.show {
    display: flex;
    width: 100%;
}

/*  */

.specifications-area {
    /* display: flex; */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px;
}

.highlights-area {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    margin-top: 20px;
    box-sizing: border-box;
}

.imp-highlight-image {
    width: 100%; /* Adjust as needed */
  max-width: 500px;
    
}


.imp-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
  }
.highlights-area-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* width: 50%; */
    max-width: 600px;
    /* margin-top: 30px; */
    padding: 16px;
    -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.highlights-area-right-content {
    display: flex;
      justify-content: start;
        align-items: flex-start;
        gap: 20px;
        /* padding: 4px 0; */
}
.highlights-area-right-content img {
    width: 18px;
  height: auto;
  flex-shrink: 0;
  /* position: relative; */
  display: block;
  margin-top: 0.3em;
 
  }
  
.highlights-area-right-content p{
    margin: 0;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlights-area {
        flex-direction: column; /* Stack the images and the list vertically */
        align-items: center;
        gap: 20px;
        justify-content: center;
    }
    
    .highlights-area-right {
      width: 100%;
      gap: 10px;
    }

    .imp-highlight-image img{
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .highlights-area-right-content {
        text-align: center; /* Center the content on smaller screens */
         gap: 10px;
    }
    .highlights-area-right-content p{
        margin: 0;
        letter-spacing: 1px;
        font-size: 12px;
    }

    .specifications-subHead {
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 25px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }
    
    .specifications h2{
        font-size: 18px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
}
.info {
    width: 25%;
    margin: 10px;
    text-align: center;
}

.info img {
    width: 45px;
}

.info-text {
    padding-top: 15px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 26px;
}

.info-video-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 80px 0 0;
}

.info-video-head {
    color: var(--green-color);
    font-size: 26px;
    letter-spacing: 2px;
}

.info-video-button {
    text-decoration: none;
    color: #fff;
    background: var(--green-color);
    padding: 12px 40px;
    letter-spacing: 2px;
    font-family: var(--dropkicker);
    position: relative;
    font-size: 13px;
}

.info-video-button::before,
.info-video-button::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 100%;
    top: 0;
    background-color: var(--green-color);
}

.info-video-button::before {
    left: -15px;
}

.info-video-button::after {
    right: -15px;
}

/* Mobile Styles - For screens smaller than 768px */
@media (max-width: 768px) {
    /* Text and buttons in a single column */
    .specifications-subHead {
        width: 90%;
        text-align: center;
        font-size: 18px;
    }

    .specifications-imp-button {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .highlights-button,
    .specifications-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .specifications-area {
        flex-direction: column;
        padding: 20px;
        width: 100%;
    }

    .info {
        width: 100%;  /* Full width for smaller screens */
        margin-bottom: 20px;
    }

    .info-text {
        font-size: 14px;
    }

    .info-video-view {
        padding: 60px 0;
        gap: 20px;
    }

    .info-video-head {
        font-size: 22px;
    }

    .info-video-button {
        padding: 10px 30px;
        font-size: 16px;
    }

    .specifications::before{
        right: 0%;
        top: 22%;
        width: 25%;
        height: 10%;
        background-size: 100px;
       opacity: 0.5;
    }
    
    .specifications::after{
        
        right: 0%;
        top: 22%;
        width: 25%;
        height: 10%;
        background-size: 100px;
       opacity: 0.5;
        /* transform: rotate(322deg) scaleX(-1); */
    }

    .highlights-button.active, .specifications-button.active {
        background-color: var(--green-color); /* Blue background for active button */
        color: white;
        font-size: 12px;
        padding: 9px 28px;
    }
}

/* Tablet Styles - For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .specifications-subHead {
        width: 70%;
        text-align: center;
        font-size: 20px;
    }

    .specifications-imp-button {
        gap: 40px;
    }

    .specifications-area {
        flex-direction: row;
        justify-content: space-between;
    }
    .highlights-area, .specifications-area {
        display: none;
    }
    .info {
        width: 30%;  /* Reduce width for tablet */
    }

    .info-text {
        font-size: 14px;
    }

    .info-video-view {
        padding: 60px 0;
        gap: 30px;
    }

    .info-video-head {
        font-size: 24px;
    }
    .highlights-area {
        /* display: flex;  */
        flex-wrap: unset;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 20px;
        margin-top: 20px;
        box-sizing: border-box;
    }
    .imp-highlight-image {
        width: 100%;
    }
    .highlights-area-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 39%;
        max-width: 600px;
        /* margin-top: 30px; */
        padding: 16px;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}


/* General Styles for larger screens */
.amenity-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.amenity h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.amenity-images {
    display: flex; 
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    gap: 40px;
}

.amenity-img {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2 columns for images */
    gap: 10px;
    width: 33%;
}
.amenity-img button {
    background-color: #34d175;
     border: none;
     cursor: pointer;
  }

.amenity-img button.active {
    /* background-color: var(--green-color) !important; */
    border: 2px solid #a8522a;
    color: #fff;
  }

.amenity-img div {
    display: inline-block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 2px;
}

.amenity-img img {
    width: 40px;
    /* height: 60px; */
    margin-bottom: 10px;
}

.amenity-poster img{
    width: 100%;

}

.amenity-img p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    padding: 8px 0 3px;
}

.amenity-button {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.amenity-button button {
    background: var(--green-color);
    color: #fff;
    padding: 11px 30px;
    border: 0;
    letter-spacing: 2px;
    font-family: var(--dropkicker);
    font-weight: 300;
    font-size: 14px;
}

/* Mobile Styles - For screens smaller than 768px */
@media (max-width: 768px) {
    .amenity-subHead {
        width: 90%;
        text-align: center;
        font-size: 18px;
    }
    .amenity-poster img {
        width: 90%;
    }

    .amenity-images {
        flex-direction: column;
        align-items: center;
    }

    .amenity-img {
        
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 30px;
    }

    .amenity-img div {
        width: 45%; /* Makes each image container take up less space */
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 10px;
    }

    .amenity-img img {
        width: 50px; /* Smaller icons on mobile */
        height: 50px;
    }

    .amenity-button {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .amenity-button button {
        width: 90%;
        padding: 12px;
        font-size: 16px;
    }

    .amenity-subHead {
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 35px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }
    
    .amenity h2{
        font-size: 18px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
    
}

/* Tablet Styles - For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .amenity-subHead {
        width: 80%;
        text-align: center;
        font-size: 20px;
    }

    .amenity-images {
        flex-direction: column;
        align-items: center;
    }

    .amenity-img {
        width: 90%; 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenity-img div {
        width: auto;
    }

    .amenity-img img {
        width: 60px; /* Slightly larger icons for tablets */
        height: 60px;
    }

    .amenity-button button {
        width: 80%;
        padding: 12px;
        font-size: 16px;
    }
    .amenity-poster img {
        width: 100%;
    }
}

/* Large Desktop Styles - For screens larger than 1024px */
@media (min-width: 1024px) {
    .amenity-subHead {
        width: 50%;
        font-size: 22px;
        text-align: center;
    }

    .amenity-images {
        display: flex;
        justify-content: center;
        padding: 48px 100px;
    }

    .amenity-img {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 50%;
    }

    .amenity-img div {
        padding: 15px;
    }

    .amenity-img img {
        width: 40px;
        /* height: 60px; */
    }

    .amenity-button button {
        width: auto;
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* General Styles for larger screens */

.price{
    position: relative;
}

.price-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.price h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.price-main-card {
    display: inline-grid;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 8px;
    background-color: white;
    margin-top: 30px;
    width: 27%;
    height: auto;
    max-width: 500px;
    text-align: center;
}

.price::after{
    position: absolute;
    content: '';
    right: 8%;
    top: 0%;
    width: 28%;
    height: 50%;
    background: url(./images/leaf-background-image.png) no-repeat;
    background-size: 300px;
    transform: scaleX(-1);
}

.price-main-card > div {
    text-align: center;
}

hr {
    width: 22%;
    margin: 10px 0;
    border-color: rgba(255,255,255,0.3);
}

.apart {
    font-size: 20px;
    letter-spacing: 3px;
    border: 1px solid;
    padding: 12px;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.crore {
    font-size: 24px;
    letter-spacing: 3px;
    padding-bottom: 8px;
    border-bottom: 1px solid #c1c1c157;
    margin: 0;
}

.size {
    font-size: 1.2rem;
}

.request {
    font-size: 1.2rem;
}

.enquire {
    text-decoration: none;
    color: #fff;
    background: var(--green-color);
    padding: 12px 25px;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Mobile Styles - For screens smaller than 768px */
@media (max-width: 768px) {
    .price-subHead {
        width: 90%;
        font-size: 18px;
        text-align: center;
    }

    .price-main-card {
        width: 90%; /* Makes the card take up more space on smaller screens */
        /* padding: 70px; */
        margin: 20px auto; /* Add margin for spacing */
    }

    .apart {
        font-size: 15px;
        padding: 10px;
    }

    .crore {
        font-size: 22px;
        padding-bottom: 6px;
    }

    .enquire {
        padding: 10px 20px;
        font-size: 12px;
    }
    .price::after{
        right: 4%;
        top: 28px;
        background-size: 110px;
    }

    .price-subHead {
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 35px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }
    
    .price h2{
        font-size: 20px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
}

/* Tablet Styles - For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .price-subHead {
        width: 80%;
        font-size: 19px;
        text-align: center;
    }

    .price-main-card {
        width: 45%; /* Slightly smaller card on tablet-sized screens */
        padding: 25px;
    }

    .apart {
        font-size: 18px;
        padding: 12px;
    }

    .crore {
        font-size: 22px;
        padding-bottom: 6px;
    }

    .enquire {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Large Desktop Styles - For screens larger than 1024px */
@media (min-width: 1024px) {
    .price-subHead {
        width: 50%;
        font-size: 20px;
        text-align: center;
    }

    .price-main-card {
        width: 45%; /* Ensures the card takes up 27% of the container */
        padding: 40px;
    }

    .apart {
        font-size: 20px;
        padding: 12px;
    }

    .crore {
        font-size: 24px;
        padding-bottom: 8px;
    }

    .enquire {
        padding: 12px 25px;
        font-size: 13px;
    }
}
/* General Styles for larger screens */
.master{
    position: relative;
    padding-top: 100px ;
}

.master-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.master h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.master::before{
    position: absolute;
    content: '';
    width: 24%;
    height: 40%;
    left: 2%;
    top: 0;
    background: url(../images/leaf-background-image.png) no-repeat;
    background-size: 310px;
}

.master-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    gap: 40px; /* Optional: Adds space between master-plan and floor-plan */
}

.master-plan img,
.floor-plan img {
    max-width: 75%;
    height: auto;
}

.master-plan div, .floor-plan div {
    text-align: center;
    letter-spacing: 3px;
    border-bottom: 1px solid #c1c1c157;
    width: fit-content;
    margin: auto;
    padding-bottom: 6px;
}

.floor-plan div {
    font-size: 18px;
    font-family: var(--dropkicker);
    padding-bottom: 8px;
}

.view-plan a {
    text-decoration: none;
    color: #fff;
    background: var(--green-color);
    padding: 12px 22px;
    font-size: 11px;
    letter-spacing: 2px;
}

/* Mobile Styles - For screens smaller than 768px */
@media (max-width: 768px) {
    .master{
        padding-top: 0px;
    }
    .master-subHead {
        width: 90%;
        font-size: 18px;
        text-align: center;
    }

    .master-content {
        flex-direction: column; /* Stacks the master-plan and floor-plan vertically */
        justify-content: center;
        align-items: center;
    }

    .master-plan img,
    .floor-plan img {
        max-width: 90%; /* Increase image width on small screens */
    }

    .master-plan div, .floor-plan div {
        font-size: 16px;
        padding-bottom: 10px; /* Adds more space between the text and the images */
    }

    .view-plan a {
        padding: 10px 20px;
        font-size: 13px;
    }
    .master::before{
        left: 2%;
        top: 50px;
        background-size: 90px;
    }

    .master-subHead {
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 35px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }
    
    .master h2{
        font-size: 20px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
}

/* Tablet Styles - For screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .master-subHead {
        width: 80%;
        font-size: 19px;
        text-align: center;
    }

    .master-content {
        flex-direction: row; /* Keeps the layout in a row for tablets */
        justify-content: space-between; /* Adds space between the two images */
    }

    .master-plan img,
    .floor-plan img {
        max-width: 80%;
    }

    .master-plan div, .floor-plan div {
        font-size: 17px;
        padding-bottom: 8px;
    }

    .view-plan a {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Large Desktop Styles - For screens larger than 1024px */
@media (min-width: 1024px) {
    .master-subHead {
        width: 50%;
        font-size: 20px;
        text-align: center;
    }

    .master-content {
        flex-direction: row;
        justify-content: center;
    }

    .master-plan img,
    .floor-plan img {
        max-width: 75%;
    }

    .master-plan div, .floor-plan div {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .view-plan a {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* General Styles for larger screens */
.visual{
    position: relative;

}

.visual-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}

.visual h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.visual::before{
    position: absolute;
    content: '';
    width: 24%;
    height: 50%;
    right: 8%;
    top: 0;
    background: url(../images/leaf-background-image.png) no-repeat;
    background-size: 310px;
    transform: scaleX(-1);
}

.visual-main-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns for large screens */
    gap: 10px;
    width: 100%;
    margin: 40px 0;
    padding: 90px;
}

.visual-main-content div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.visual-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-image-name {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    color: white;
}

.image-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure the modal is above other content */
    transition: opacity 0.3s ease-in-out;
}

.img-modal-content {
    /* position: relative; */
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 100%;
    max-height: 80%;
    overflow: hidden; /* Prevent overflow if the image is too large */
    transition: transform 0.2s ease-in-out;
}

.img-modal-content img {
    width: 100%; /* Set the image to take up as much space as the container */
    height: 500px;
    object-fit: contain; /* Ensure the image maintains aspect ratio */
    max-width: 100%; /* Ensure the image doesn't exceed modal size */
    max-height: 100%;
    transform: scale(0.8); /* Start with the image scaled down */
    transition: transform 0.5s ease-in-out; /* Smooth transition for zoom effect */
}

.img-close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.img-close:hover {
    color: red; /* Change color on hover */
}
.image-modal.open .img-modal-content img {
    transform: scale(1); /* Scale the image to its normal size */
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .visual-subHead {
        width: 90%;
        font-size: 18px;
        text-align: center; /* Center text on smaller screens */
    }

    .visual-main-content {
        grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns on small screens */
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .visual-main-content img {
        width: 100%; /* Ensure images scale correctly */
    }

    .img-modal-content{
        max-width: 95%; /* Allow modal to take up more width on smaller screens */
        max-height: 90%; /* Adjust height for smaller screens */
        padding: 5px; /* Reduce padding on smaller screens */
    }

    .img-modal-content img {
        width: 100%; /* Image fills the modal width */
        height: auto; /* Maintain aspect ratio */
    }

    .img-close {
        font-size: 30px; /* Smaller close button for smaller screens */
        top: 5px;
        right: 10px;
    }
    .visual::before{
        opacity: 1;
        right: 4%;
        top: 0px;
        background-size: 90px;
    }
    .visual-subHead {
        width: 100%;
        letter-spacing: 2px;
        color: var(--green-color);
        font-weight: 400;
        line-height: 35px;
        padding-top: 25px;
        margin: auto;
        font-size: 18px;
    }
    
    .visual h2{
        font-size: 20px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
    
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100%; /* Take up full width on smaller devices */
        max-height: 80%; /* Ensure the modal doesn't exceed screen height */
    }

    .modal-content img {
        width: 100%;
        height: auto;
    }
}

/* Tablet Styles (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .visual-subHead {
        width: 80%;
        font-size: 19px;
        text-align: center;
    }

    .visual-main-content {
        grid-template-columns: repeat(4, 1fr); /* 3 equal-width columns for tablets */
        padding: 20px;
    }

    .visual-main-content img {
        width: 100%;
    }
}

/* Large Desktop Styles (min-width: 1024px) */
@media (min-width: 1024px) {
    .visual-subHead {
        width: 50%;
        font-size: 20px;
        text-align: center;
    }

    .visual-main-content {
        grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns for larger desktops */
        padding: 90px;
    }

    .visual-main-content img {
        width: 100%;
    }
}

.modal {
    display: none;                /* Hidden by default */
    position: fixed;              /* Stay in place */
    z-index: 1;                   /* Sit on top */
    left: 0;
    top: 10px;
    width: 100%;                  /* Full width */
    height: 100%;                 /* Full height */
    background-color: rgba(0, 0, 0, 0.7); /* Dark background with transparency */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background-color: #fff;       /* White background for modal content */
    padding: 10px;
    border-radius: 10px;
    width: 80%;                   /* Adjust the width of the modal */
    max-width: 700px;             /* Maximum width */
    position: relative;
}

/* Close button for the modal */
.close-btn {
    /* color: #aaa; */
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;   /* Optional padding */
    right: 10px; /* Optional padding */
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1; /* Ensure it stays above */
}


.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* General Styles for larger screens */
.location{
    position: relative;
}

.location-subHead {
    width: 50%;
    letter-spacing: 2px;
    color: var(--green-color);
    font-weight: 400;
    line-height: 35px;
    padding-top: 25px;
    margin: auto;
    font-size: 20px;
}
.location h2{
    font-size: 28px;
        letter-spacing: 4px;
        line-height: 50px;
        margin: 0;
}

.location::before{
   
        position: absolute;
        content: '';
        width: 24%;
        height: 40%;
        left: 2%;
        top: -8%;
        background: url(../images/leaf-background-image.png) no-repeat;
        background-size: 310px;
        /* transform: scaleX(-1); */
    }
    


.location-map-image {
    padding: 50px 0;
    position: relative;
}

.location-button {
    position: absolute;
    bottom: 10%;
    right: 20%;
    z-index: 1;
    background: var(--green-color);
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 25px;
    cursor: pointer;
}

.location-button:hover {
    background-color: var(--green-color);
}

.location-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default for large screens (2 columns) */
    gap: 30px;
    width: 100%;
    justify-items: center;
    padding: 0px 80px;
}

.location-map-image img {
    width: 65%;
}

.location-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.location-icon {
    background: var(--green-color);
    padding: 5px;
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 54px;
    min-width: 64px;
}
.location-icon p{
    margin: 7px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px
}

.location-query-button {
    display: block;
    text-align: center;
    margin-top: 25px;
}

.location-query-button a {
    text-decoration: none;
    color: #fff;
    background: var(--green-color);
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 2px;
}

.location-item img {
    width: 60px;
    height: 60px;
}

.location-container div {
    padding: 2px;
    text-align: center;
    border-bottom: 2px solid #333;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .location-subHead {
        width: 100%;
        font-size: 18px;
        text-align: center; /* Center the text */
    }

    .location-container {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        padding: 20px; /* Reduce padding */
    }

    .location-map-image img {
        padding: 10px;
        width: 100%;
    }

    .location-button {
        bottom: 15%; /* Adjust button position for mobile */
        right: 19%;
        font-size: 12px; /* Adjust font size */
    }

    .location-item img {
        width: 50px; /* Smaller icons on mobile */
        height: 50px;
        padding: 7px 7px;
    }

    .location-query-button a {
        font-size: 14px; /* Adjust button text size */
        padding: 10px 20px;
    }
    .location::before{
        background-size: 90px;
        top: 40px;
        left: 5%;
    }

    .location h2{
        font-size: 20px;
            letter-spacing: 4px;
            line-height: 50px;
            margin: 0;
    }
}

/* Tablet Styles (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .location-subHead {
        width: 80%;
        font-size: 19px;
        text-align: center;
    }

    .location-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        padding: 40px;
    }

    .location-map-image img {
        width: 80%; /* Adjust map size for tablets */
    }

    .location-button {
        bottom: 8%; /* Adjust button position */
        right: 10%;
    }

    .location-item img {
        width: 55px; /* Slightly larger icons for tablets */
        height: 55px;
    }
}

/* Large Desktop Styles (min-width: 1024px) */
@media (min-width: 1024px) {
    .location-subHead {
        width: 50%;
        font-size: 20px;
        text-align: center;
    }

    .location-container {
        grid-template-columns: repeat(2, 1fr); /* 3 columns for larger desktops */
        padding: 40px 100px;
    }

    .location-map-image img {
        width: 65%;
    }

    .location-button {
        bottom: 10%;
        right: 20%;
    }

    .location-icon img {
        width: 60px; /* Default icon size */
        height: 60px;
        padding: 8px;
    }
}


.enquire-contact {
    display: flex;                          /* Use Flexbox to align two divs side by side */
    justify-content: space-around;         /* Space between the two divs */
    gap: 20px;                              /* Space between the content inside each div */
    padding: 40px;
    width: 100%;
}

/* Base styles for larger screens */
.about-build {
    /* flex: 1; */
    padding: 20px;
    border-radius: 8px;
    width: 100%;
}

.about-build h3{
    font-size: 28px;
                letter-spacing: 4px;
                line-height: 50px;
                margin: 0; 
                text-align: left;
}

.builder-details {
    position: relative;
    width: 58%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}
 .enquire-contact::after{
    position: absolute;
    content: '';
    /* bottom: 0; */
    right: 48%;
    width: 24%;
    height: 60%;
    margin-top: 10%;
    background: url(../images/leaf-background-image.png) no-repeat;
    background-size: 250px;
    transform: scaleX(-1);
 }

.builder-details::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    background: #5E5E5E;
}

.builder-details::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    background: #5E5E5E;
}

.builder-details p {
    letter-spacing: 2px;
    font-family: var(--dropkicker);
    font-size: 17px;
    color: #272727;
    margin: 0;
}

.builder-details span {
    font-size: 21px;
    color: var(--green-color);
}

.enquire-now {
    /* flex: 1; */
    padding: 20px;
    border-radius: 8px;
    width: 100%;
}
.enquire-now h3{
    font-size: 28px;
                letter-spacing: 4px;
                line-height: 50px;
                margin: 0; 
                text-align: left; 
}

.enquire-now form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.enquire-now form input, .enquire-now form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.enquire-now form button {
    background-color: var(--green-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.enquire-now form button:hover {
    background-color: #45a049;
}

/* Responsive styles */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .enquire-contact {
        display: block; /* Stack the sections */
        padding: 10px;
    }

    .about-build, .enquire-now {
        width: 100%;
        margin-bottom: 20px; /* Add space between the two sections */
    }

    .builder-details {
        width: 100%; /* Make the builder details section take full width */
        display: flex;
        flex-direction: row; /* Stack the builder details vertically */
        gap: 20px;
    }

    
    

    .builder-details::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        background: #5E5E5E;
    }
    
    .builder-details::after {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
        background: #5E5E5E;
    }
    

    .builder-details p {
        font-size: 14px; /* Slightly smaller font size for mobile */
    }

    .builder-details span {
        font-size: 12px; /* Adjust span font size */
    }

    .enquire-now form input, .enquire-now form textarea {
        font-size: 14px; /* Slightly smaller font for inputs */
    }

    .enquire-now form button {
        font-size: 14px; /* Adjust button font size */
    }

    .about-build h3{
        font-size: 20px;
                    letter-spacing: 4px;
                    line-height: 50px;
                    margin: 0; 
                    text-align: center;
    }

    .enquire-now h3{
        font-size: 20px;
                letter-spacing: 4px;
                line-height: 50px;
                margin: 0; text-align: center; 
    }
}

/* Tablet (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .enquire-contact {
        display: flex;
                flex-wrap: wrap;
                flex-direction: column;
                align-items: center;
    }

    .about-build, .enquire-now {
     
        margin-bottom: 20px; /* Space between the two sections */
    }

    .builder-details {
        width: 100%; /* Make builder details take full width on tablets */
        flex-direction: column; /* Stack vertically on tablets */
        gap: 20px;
    }

    .builder-details p {
        font-size: 16px; /* Adjust font size for tablet */
    }

    .builder-details span {
        font-size: 18px; /* Adjust font size for tablet */
    }



    .builder-details::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        background: none;
    }
    
    .builder-details::after {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
        background: none;
    }
    
}

/* Large Desktop (min-width: 1024px) */
@media (max-width: 1024px) {
    .enquire-contact {
        display: flex; /* Keep sections side by side */
        flex-direction: column;
    }

    .about-build, .enquire-now {
        width: 100%; /* Two columns for large screens */
        margin-bottom: 0; /* No margin at the bottom */
    
    }

    .builder-details {
        width: 100%; /* Make builder details section a bit wider */
        /* text-align: center; */
    }
    .about-build h3{
        text-align: center;
    }
    .enquire-now h3{
        text-align: center;
    }
}
/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: var(--green-color);
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
}


.footer-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-section p{
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.footer-section a{
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.footer-disclaimer p{
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 22px;
    margin-bottom: 25px;
}

.footer-media p{
    margin: 0;
    padding-bottom: 30px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-media p a{
    color: #fff;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-size: 14px;
}
    /* text-align: center; */