
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
}

/* Logo Styling */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 70px;
    width: auto;
}

/* Header */
header {
    background: url('https://www.saroxai.com/images/CityLandmark66.jpeg') no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* transition: background-image 1s ease-in-out; */
    /* background: #2c3e50; */
    color: #00FFFF ;
    padding: 40px 20px;
    text-align: center; /* This centers the header content */
    min-height: 300px; /* Adjust this value as needed */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
}

header img {
    width: 100%;
        height: 100%;
        object-fit: cover;
        /*
    width: 150px;
    margin-bottom: 10px; */
}

header h1 {
    margin: 10px 0;
    font-size: 2.5em;
    color: white;
    text-shadow: 3px 3px 6px black;
}

header p {
    font-size: 1.5em;
    margin: 40px 0;
     color: #00FFFF;
     text-shadow: 3px 3px 6px black;
}

header .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00FFFF; /* #4CAF50; */
    text-shadow: 3px 3px 6px black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 0px;
}

/* Navigation */
nav {
    text-align: center;
    background: #1f618d;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Content Sections */
.container {
    width: 80%;
    margin: auto;
    padding: 50px 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 30px;
}

.container ul {
    text-align: left;
    list-style: none;
    padding-left: 25px;
    padding: 0;
    font-size: 1.1em;
}
.container ol {
    text-align: left;
    padding-left: 45px;
    font-size: 1.2em;
}
.container li {
    padding-left: 10px;
    margin-bottom: 25px;
}
/* Content Sections */
.container-cookies {
    width: 80%;
    margin: auto;
    padding: 50px 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 30px;
}

.container-cookies ul {
    text-align: left;
    list-style-type: disc; /* Display a disk (bullet point) */
    padding-left: 25px;
    font-size: 1.1em;
    margin-bottom: 35px;
}

.container-cookies li {
    padding-left: 10px;
    margin-bottom: 25px;
}
.container-cookies h2 {
    color: #2c3e50;
    padding-top: 25px;
    padding-bottom: 25px;
}

h2 {
    color: #2c3e50;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 10px;
}

/* Images */
.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.images img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #2980b9;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 15px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #1f618d;
}
/* Container for Property & Inventory sections */
.property-inventory-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    justify-content: space-between;
    gap: 20px; /* Adds spacing between sections */
}

/* Each individual section */
.property-section,
.inventory-section {
    flex: 1; /* Allows them to take equal space */
    min-width: 300px; /* Prevents shrinking too much */
    max-width: 48%; /* Ensures two sections fit side by side */
}

#contact {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    padding-bottom: 20px; /* Extra space at bottom of contact section */
}

.contact-container {
    max-width: 900px;
    margin: auto;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.contact-item {
    font-size: 18px;
    color: #333;
}

.contact-item i {
    font-size: 24px;
    color: #007bff;
    margin-right: 10px;
}

.contact-map iframe {
    width: 100%;
    max-width: 650px;
    height: 400px;
    border-radius: 10px;
}

.contact-form {
    width: 100%;
    margin-top: 20px;
    max-width: 650px;
    padding-bottom: 20px; /* Adds space between form and footer */
    
    /* height: 450px; */
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 150px; /* Adjusted height */
    resize: vertical; /* Allows resizing */
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    border-radius: 25px; /* Round corners */
    width: 100%; /* Makes button span the full width of its container */
    max-width: 200px; /* Optional: limit the width */
}

.contact-form button:hover {
    background-color: #0056b3;
}
.contact-form h4 {
    margin-bottom: 5px; /* Reduce space below the heading */
}
.contact-form p {
    margin-top: 5px; /* Reduce space above the paragraph */
}
#contact-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}
.success-message {
    color: green;
    background: #e6ffe6;
    border: 1px solid green;
}
.error-message {
    color: red;
    background: #ffe6e6;
    border: 1px solid red;
}
/* Key Features - Add Bullet Points */
#key-features {
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#key-features h2 {
    color: #2c3e50;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 10px;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Correcting Key Features List */
#key-features ul {
    list-style-type: disc;  /* Add bullet points (dots) */
    padding-left: 20px;     /* Add padding to the left of the list */
}

#key-features li {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* FAQ Section Fixes */
#faq {
    background-color: #fff;
    /*padding: 40px 20px; */
    margin-top: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#faq h2 {
    color: #2c3e50;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 10px;
    /* font-size: 2em; */
    margin-bottom: 10px;
}

/* Fix the FAQ question titles (h3) */
#faq h3 {
    /* font-size: 1.5em; */
    color: #2980b9;    /* Use the same color for FAQ heading */
    margin-bottom: 0px;
    font-weight: bold;
    text-align: left;  /* Align to the left */
}

#faq p {
    font-size: 1.0em;
    line-height: 1.4;
    color: #555;
    margin-bottom: 5px;
}

#faq .faq-item {
    margin-bottom: 5px;
}

#faq .faq-item:last-child {
    margin-bottom: 0;
}

/* Add a small hover effect for each FAQ item */
#faq .faq-item:hover {
    background-color: #f1f1f1;
    /* padding: 15px; */
    border-radius: 5px;
    cursor: pointer;
}
/* Highlight FAQ items when clicked */
#faq .faq-item:focus-within {
    background-color: #ecf0f1;
    border: 2px solid #2980b9;
}
.faq-answer {
    display: none;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #1f618d;
    font-size: 14px;
}

footer img {
    width: 40px;
    height: auto;
    margin-right: 15px;
}

footer .company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

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



/* Center gallery */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    position: relative;
    margin: 20px auto;
}

/* Scrollable container */
.image-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 340px; /* Larger display */
    height: 650px; /* Taller display */
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari */
.image-gallery::-webkit-scrollbar {
    display: none;
}

/* Individual image container */
.image-container {
    flex: 0 0 280px; /* Adjusted to match gallery width */
    scroll-snap-align: center;
    border: 15px solid #fff;
    border-radius: 30px;
    padding: 10px;
    background: #222;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    display: block;
    width: 280px; /* Adjusted to fit */
    height: auto;
    border-radius: 10px;
}

/* Navigation Arrows (Only for Desktop) */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: none; /* Hidden by default */
    z-index: 10; /* Ensure arrows are above other elements */
    transition: transform 0.1s ease-in-out;
}
/* Add a scale effect when the button is pressed */
.arrow:active {
    transform: translateY(-50%) scale(0.95); /* Apply scale without affecting position */
}
.arrow-left {
    left: -40px;
}

.arrow-right {
    right: -40px;
}
/* Dot indicator container */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Individual dot */
.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

/* Active dot */
.dot.active {
    background-color: #666;
}

/* Image gallery */
.property-section .image-gallery,
.inventory-section .image-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Image container */
.property-section .image-container,
.inventory-section .image-container {
    /*flex: 0 0 100%; */
    display: flex;
    justify-content: center;
}

/* Navigation arrows */
.property-section .arrow,
.inventory-section .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.property-section .arrow-left,
.inventory-section .arrow-left {
    left: 10px;
}

.property-section .arrow-right,
.inventory-section .arrow-right {
    right: 10px;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
}

.cookie-consent-banner a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-consent-banner a:hover {
    text-decoration: underline;
}

.accept-cookies {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    margin-left: 10px;
}

.accept-cookies:hover {
    background-color: #45a049;
}

/* Hide the banner once accepted */
.cookie-consent-accepted .cookie-consent-banner {
    display: none;
}

@media screen and (min-width: 768px) { /* Adjust this value based on when you consider non-mobile */
    .container p {
        padding: 10px 40px;
    }
    .container ul {
        padding: 10px 40px;
    }
    .container h2 {
        color: #2c3e50;
        border-bottom: 3px solid #2c3e50;
        padding: 5px 40px;
    }
    .container h3 {
        padding: 5px 40px;
    }

}

/* Show arrows only on larger screens */
@media (min-width: 768px) {
    .arrow {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
            height: 35px;
            width: auto;
        }
    .container {
        width: 90%;
    }
    
    .images img {
        width: 90%;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    nav a {
        margin: 0 10px;
        font-size: 1em;
    }
    #faq h2 {
        font-size: 1.7em;
    }
    
    #faq h3 {
        font-size: 1.2em;
    }
    
    #faq p {
        font-size: 1em;
    }
    .property-inventory-container {
        flex-direction: column; /* Stack sections on mobile */
    }
    .property-section,
    .inventory-section {
        max-width: 100%; /* Full width on small screens */
    }
}
