body{
    font-family: 'Lato', sans-serif;

}
.logo{
    width: 80px;
    height: 60px;
}
.hero-section {
    position: relative;
    background: url('../images/newimg/herojungle.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    z-index: 1;
}

.hero-content {
    margin-top: 10px;
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

form {

    border-radius: 12px;
}

.form-control {
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-group-text {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px 0 0 8px;
}

.btn-submit {
    width: 30%;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    background-color: #c35f31;
    border: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c95d2b;
}

h1, p {
    margin-bottom: 20px;
}



.video-section {
    position: relative;
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px 15px;
}

.video-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.video-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper img {
    width: 100%;
    display: block;
    cursor: pointer;
}

.video-wrapper iframe {
    display: none;
    width: 100%;
    height: 500px;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}



/* slider */
.owl-carousel .item img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.owl-carousel .item {
    /* margin: 10px; */
}

.owl-carousel .owl-nav button {
    background: #000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Default Styles */
.lifestyle-section {
    padding: 50px 15px;
    background-color: #f9f9f9;
}

.lifestyle-section img {
    border-radius: 10px;
    height: 50%; /* Ensures the image height adapts to the container */
    max-width: 70%; /* Prevents the image from overflowing horizontally */
    object-fit: cover; /* Ensures the image scales nicely without stretching */
    width: 100%; /* Ensures the image fits the container width */
}

.lifestyle-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.lifestyle-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.lifestyle-section .btn-primary {
    background-color: #C35F31;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.lifestyle-section .btn-primary:hover {
    background-color: #4d7abe;
}

.special-section {
    padding: 60px 15px;
    background-color: rgba(70, 79, 75, 1);
    text-align: center;
}

.special-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.special-section p {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

/* Media Queries */

/* For screens smaller than 768px (Tablets and Mobile Portrait) */
@media (max-width: 768px) {
    .lifestyle-section h2 {
        font-size: 2rem; /* Smaller font for titles on mobile/tablets */
    }

    .lifestyle-section p {
        font-size: 1rem; /* Adjust paragraph text size */
    }

    .special-section h2 {
        font-size: 2rem; /* Smaller heading */
    }
    .lifestyle-section img {
        border-radius: 10px;
        height: 100%; /* Ensures the image height adapts to the container */
        max-width: 100%; /* Prevents the image from overflowing horizontally */
        object-fit: cover; /* Ensures the image scales nicely without stretching */
        width: 100%; /* Ensures the image fits the container width */
    }
    
    .special-section p {
        font-size: 1rem; /* Adjust paragraph text size */
        max-width: 100%; /* Ensures text width adapts to screen size */
        margin: 0 10px; /* Adds some padding to the sides */
    }
}

/* For screens smaller than 480px (Mobile Devices in Portrait Mode) */
@media (max-width: 480px) {
    .lifestyle-section {
        padding: 40px 10px; /* Reduce padding for smaller screens */
    }

    .lifestyle-section h2 {
        font-size: 1.75rem; /* Even smaller font size for smaller screens */
    }

    .lifestyle-section img {
        border-radius: 10px;
        height: 100%; /* Ensures the image height adapts to the container */
        max-width: 100%; /* Prevents the image from overflowing horizontally */
        object-fit: cover; /* Ensures the image scales nicely without stretching */
        width: 100%; /* Ensures the image fits the container width */
    }
    
    .lifestyle-section p {
        font-size: 0.9rem; /* Adjust paragraph text size */
    }

    .special-section {
        padding: 40px 10px; /* Reduce padding on smaller screens */
    }

    .special-section h2 {
        font-size: 1.8rem; /* Adjust heading size */
    }

    .special-section p {
        font-size: 0.9rem; /* Adjust paragraph text size */
        max-width: 100%; /* Ensures text width fits screen */
        margin: 0 10px; /* Adds side margin */
    }
}

/* For larger screens (Laptop/Tablet Landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
    .lifestyle-section {
        padding: 50px 30px; /* Adjust padding for larger tablets and small desktops */
    }

    .lifestyle-section h2 {
        font-size: 2.25rem; /* Slightly larger font size for medium screens */
    }

    .lifestyle-section p {
        font-size: 1.1rem; /* Adjust text for medium screens */
    }

    .special-section h2 {
        font-size: 2.2rem; /* Adjust heading size */
    }

    .special-section p {
        font-size: 1.1rem; /* Adjust paragraph text size */
        max-width: 90%; /* Allow text width to be slightly wider */
    }
}

/* For large screens (Desktop) */
@media (min-width: 1025px) {
    .lifestyle-section {
        padding: 50px 40px; /* Keep larger padding for bigger screens */
    }

    .lifestyle-section h2 {
        font-size: 2.5rem; /* Default size for larger screens */
    }

    .lifestyle-section p {
        font-size: 1.2rem; /* Default font size */
    }

    .special-section h2 {
        font-size: 2.5rem; /* Larger heading for large screens */
    }

    .special-section p {
        font-size: 1.2rem; /* Default font size */
        max-width: 800px; /* Limit text width */
    }
}



.maintenance-section {
    position: relative;
    background: url('../images/newimg/herojungle.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 100px 15px;
    color: #fff;
    min-height: 400px;
}

.maintenance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for readability */
    z-index: 1;
}

.maintenance-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto; /* Aligns the content to the right */
}

.maintenance-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.maintenance-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.maintenance-content .btn-primary {
    background-color:#e58353;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}



/* new section code */

.cc-roads-section {
    position: relative;
    background: url('../images/realestate/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 100px 15px;
    color: #fff;
    min-height: 400px;
}

.cc-roads-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 1;
}

.cc-roads-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.cc-roads-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cc-roads-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cc-roads-content .btn-primary {
    background-color: #e58353;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}




/* features section */

.location-section {
    padding: 60px 15px;
    background: #f9f9f9;
}

.location-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #e58353;
}

.location-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #555;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2rem;
    color: #e58353;
    margin-right: 15px;
}

.highlight-item h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.highlight-item span {
    display: block;
    font-size: 1rem;
    color: #777;
}

.view-button {
    text-align: center;
    margin-top: 30px;
}

.view-button .btn-primary {
    background-color: #e58353;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
}

.view-button .btn-primary:hover {
    background-color: #ec814b;
}


.amenities-section {
    position: relative;
    background: url('../images/newimg/herojungle.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 15px;
    text-align: center;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.amenities-content {
    position: relative;
    z-index: 2;
}

.amenities-title h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.amenities-title p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.amenities-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: transparent;
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease-in-out;
}

.amenity-icon:hover {
    background: white;
    color: #e58353;
    border-color: #e58353;
}

.amenity-text {
    font-size: 1rem;
    font-weight: bold;
}

.cta-button {
    text-align: center;
}

.cta-button .btn-primary {
    background-color: #e58353 !important;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button .btn-primary:hover {
    background-color: #e4763e;
}


.gallery-section {
    padding: 60px 15px;
    background-color: #e58353;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.gallery-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item .gallery-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.cta-button {
    text-align: center;
}

.cta-button .btn-primary {
    background-color: rgb(0, 102, 128) !important;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}




.discovery-section {
    padding: 60px 20px;
}

.discovery-container {
    border-radius: 10px;
    overflow: hidden;
}

.address-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.address-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.address-section .contact-info {
    font-weight: bold;
}

.form-section {
    padding: 30px;
}

.form-section form .form-control {
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-section form button {
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.form-section form button:hover {
    background-color: #004d00;
}






.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Ensures no gap between dropdown and parent link */
}


footer ul li {
    margin-bottom: 10px;
}

footer ul li a:hover {
    text-decoration: underline !important;
    color: #C35F31 !important;
}

footer .fas, footer .fab {
    transition: color 0.3s;
}

footer .fas:hover, footer .fab:hover {
    color: #C35F31;
}
