
    
        /* Filters Section */
        .filters {
            background: #F3F2ED;
            padding: 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 80%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
    
        .filters input, .filters select {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            background-color: #f9f9f9;
            color: #333;
        }
    
        .filters input:focus, .filters select:focus {
            border-color: #999;
            outline: none;
        }
    
     
          
    /* Navbar Styles */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 15px 30px;
        color: #333;
        
        transition: background-color 0.2s ease, box-shadow 0.2s ease; /* Smooth transition */
        z-index: 99; /* Ensure it's on top of the hero section */
    }

    /* Logo Styles */
    .navbar .logo {
        font-size: 28px;
        font-weight: bold;
        color: #2c3e50;
    }

    /* Link Styles */
    .navbar a {
        text-decoration: none;
        color: #2c3e50;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .navbar a:hover {
        color: black;
        border: thin solid black;
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 92vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #ccc;
    }

    /* Background Image Animation */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        animation: rotateBackground 30s infinite;
        filter: brightness(0.6);
        opacity: 0.9;
        z-index: 1;
    }

    /* Keyframes for Background Rotation */
    @keyframes rotateBackground {
        0% { background-image: url('../../assets/images/pexels-heyho-7018824.webp'); }
        20% { background-image: url('../../assets/images/pexels-heyho-7031608.webp'); }
        40% { background-image: url('../../assets/images/pexels-heyho-8134846.webp'); }
        60% { background-image: url('../../assets/images/pexels-ingo-87378.webp'); }
        80% { background-image: url('../../assets/images/pexels-madelynemery-816198.webp'); }
        100% { background-image: url('../../assets/images/pexels-heyho-7018824.webp'); }
    }

    /* Make navbar white when scrolling */
    .sticky-navbar {
        background-color: white !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow to separate navbar from the content */
    }

    /* Media Query for Mobile */

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }
    .dot {
        width: 5px;
        height: 5px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
                .dots-container {
        position: absolute;
        bottom: 10px; /* Adjust the distance from the bottom of the container */
        left: 50%;
        transform: translateX(-50%); /* Centers the dots horizontally */
        display: flex;
        background-color: transparent;
        gap: 8px; /* Space between dots */
        justify-content: center;
        align-items: center;
        z-index: 10; /* Ensures the dots appear above other elements */
    }
    .filters button {
        background: #2c3e50;
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .filters button:hover {
        background: white;
        border: thin solid  #2c3e50; 
        color: #333;
    }  .scroll-up {
        position: fixed;
        bottom: 30px;
        right: 30px;
       background-color: #f8f9fa;
       border: thin solid #f8f9fa;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: none;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 9999;
    }

    .scroll-up:hover {
        opacity: 1;
        transform: scale(1.1);
    }
    
    /* Active dot styles */
    .dot-active {
        background-color: darkgoldenrod;
        transform: scale(1.5);
    }
    .exclusive-message {
        background-color: rgba(255, 255, 255, 0.507); /* Subtle light gray background */
        color: #2c3e50; /* Elegant dark gray text */
        font-family: 'Georgia', serif; /* Sophisticated serif font */
        font-size: 1.5rem; /* Slightly larger text */
        padding: 20px; /* Padding around the text */
        border: 2px solid #2c3e50; /* Dark border for emphasis */
        border-radius: 10px; /* Rounded corners */
        margin: 20px auto; /* Centering and spacing */
        max-width: 600px; /* Limit width for readability */
        text-align: center; /* Center the text */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        display: flex;
            align-items: center;
            z-index: 4;
    }

    .exclusive-message:hover {
        background-color: #2c3e50; /* Dark background on hover */
        color: #f8f9fa; /* Invert text color */
        transition: all 0.3s ease; /* Smooth transition */
    }
    @media (max-width: 768px) {
        .navbar {
            display: flex;
            justify-content: space-between; /* This will push the items to the left and right */
            align-items: center; /* Aligns items vertically in the center */
            padding: 10px; /* Optional padding */
        }
        .navbar a {
            margin: 10px 0;
        }
    }
   /* Base Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap; /* Ensures pagination items wrap on smaller screens */
}

.pagination a {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    background-color: #2C3E50;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: black;
    border-color: white;
}

.pagination a.active {
    background-color: white;
    color: black;
    font-weight: bold;
    border-color: black;
}

.pagination a:first-child,
.pagination a:last-child {
    font-weight: bold;
}

.pagination .prev-page,
.pagination .next-page {
    background-color: #2C3E50;
}

.pagination .prev-page:hover,
.pagination .next-page:hover {
    background-color: black;
}

/* Responsive Pagination for Medium and Smaller Devices */
@media (max-width: 768px) {
    .pagination a {
        padding: 8px 16px; /* Reduce padding for smaller buttons */
        font-size: 14px; /* Reduce font size */
    }

    .pagination {
        gap: 8px; /* Reduce spacing between buttons */
    }
}

/* Further Adjustments for Small Devices */
@media (max-width: 480px) {
    .pagination a {
        padding: 6px 12px; /* Further reduce padding */
        font-size: 12px; /* Adjust font size for smaller screens */
    }
}
