/* General body styles */
/* General body styles */
body {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    background-color: #050F17;
}

/* banner */
/* Banner styling */

#banner-main{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    background-color: #050f17;

}

.banner {
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: white; /* Text color */
    background-image: url('../images/banner/5.png');
    opacity: 0.8;
}


.banner-commercial{
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: white; /* Text color */
    background-image: url('../images/banner/2.png');
    opacity: 0.8;
}

.banner-plotting{
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: white; /* Text color */
    background-image: url('../images/banner/3.png');
    opacity: 0.8;
}

.banner {
    background-size: cover;
    background-position: center;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

/* Overlay for better text visibility */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 73%);    /* Dark overlay */
    z-index: 1;
}

/* Content inside the banner */
.banner-content {
    position: relative;
    text-align: center;
    z-index: 2; /* Ensures content is above the overlay */
}



/* Heading styling */
.banner h2 {
    color: #E8E8E8;
    font-family: "Italiana", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.3em;
}

/* Breadcrumb styling */
.banner p {
    font-size: 14px; /* Set font size to 14px */
    font-family: 'Lexend', sans-serif; /* Lexend font for breadcrumbs */
    margin: 10px 0 0; /* Space below the heading */
    text-align: center;
}

/* Links inside the breadcrumbs */
.banner p a {
    color: #e8e8e8; /* Gold color for links */
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

/* Hover effect for links */
.banner p a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #A8894D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Reduce height for smaller screens */
    }

    .banner h1 {
        font-size: 36px; /* Smaller font for mobile */
    }

    .banner p {
        font-size: 12px; /* Adjust breadcrumb text size on smaller screens */
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 28px; /* Further reduction for very small screens */
    }

    .banner p {
        font-size: 12px; /* Breadcrumb font size */
    }
}

/* end banner */



/* call to action */

#main-call{

    padding-left: 30px;
    padding-right: 30px;
    background-color: #050f17;
    padding-top: 150px;
    padding-bottom: 100px;
}

.call-to-action {
    /* background-color: #050f17; */
    position: relative;
    background-image: url('../images/bannerf.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-height: 700px;
}

.hero-section {
    
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.overlay {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px;
    /* border-radius: 10px; */
}

.call-to-action p{
    text-align: center;
    color: #e8e8e8;
    font-size: 14px;
    font-family: "Lexend", Sans-serif;
    max-width: 700px;
}

h2 {
    color: #E8E8E8;
    font-family: "Italiana", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

.banner-bread {
    text-align: left;
    color: #e8e8e8;
    font-size: 14px;
    font-family: "Lexend", Sans-serif;
    max-width: 700px;
}

.btn {
    background-color: #A8894d;
    color: #050f17;
    padding: 15px 30px;
    /* text-decoration: none; */
    font-size: 15px;
    /* font-weight: bold; */
    font-family: 'Lexend'sans-serif;
    border-radius: 0px;

}

.btn:hover {
    background-color: #fff;
}

/* end call to action */






/* enquire button */


/* Modal and form container styling */
#enquiryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#enquiryModal .form-container {
    position: relative;
    max-width: 500px;
    margin: 40px auto;
    background: #5c5c5c;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#enquiryModal h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333333;
    text-align: center;
    /* Centering the h3 */
}

/* Input fields styling with black placeholder */
#enquiryForm input[type="text"],
#enquiryForm input[type="email"],
#enquiryForm input[type="tel"],
#enquiryForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

/* Placeholder color styling */
#enquiryForm input::placeholder,
#enquiryForm textarea::placeholder {
    color: #000000;
    /* Black placeholder text */
    opacity: 1;
    /* Ensures placeholder is fully opaque */
}

/* Focus effect on input fields */
#enquiryForm input[type="text"]:focus,
#enquiryForm input[type="email"]:focus,
#enquiryForm input[type="tel"]:focus,
#enquiryForm textarea:focus {
    border-color: #000000;
    outline: none;
}

/* Submit and close buttons styling */
#enquiryForm button[type="submit"],
#enquiryForm button#closeModal {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#enquiryForm button[type="submit"] {
    background-color: #A8894D;
    color: #ffffff;
    width: 100%;
}

#enquiryForm button[type="submit"]:hover {
    background-color: #050F17;
}

#enquiryForm button#closeModal {
    color: #333;
    margin-left: 10px;
}

#enquiryForm button#closeModal:hover {
    background-color: #999;
}










/* button */
/* Container for the button */
#enquireButtonContainer {
    position: fixed;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 999;
}

/* Button styling */
#enquireButton {
    padding: 10px 20px;
    background-color: #A8894d;
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    font-weight: 100;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    z-index: 99px;
    /* Smooth transition for background color */
}

/* Hover effect */
#enquireButton:hover {
    background-color: #f5f5f5;
    /* Darker shade of the original color */
}

/* end enquire */

.gallery-item {
    display: none;
}
.gallery-item.show {
    display: block;
}


.nav-pills .nav-item {
    margin: 5px; /* Add gap between buttons */
}

.apply-btn {
    padding: 10px 20px;
    border: 2px solid #A8894D;
    background-color: white;
    color: #be933d;
    /* border-radius: 20px; */
    transition: all 0.3s ease;
    
}

.apply-btn.active,
.apply-btn:hover {
    background-color: #A8894D;
    color: white;
}
