/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.nav-signup {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

/* Main Section */
.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 70vh;
    position: relative;
    z-index: 1;
    color: #3b3b3b;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/kay.jpg');
    background-position: center;
    background-size: cover;
    filter: blur(8px); /* Apply the blur */
    opacity: 0.6; /* Make it semi-transparent */
    z-index: -1; /* Send it behind the content */
}

.left-text {
    max-width: 50%;
    z-index: 2; /* Ensure the text stays above the blurred background */
}

.left-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white; /* Change text color to white */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add subtle shadow for better readability */
}

.left-text p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: white; /* Change text color to white */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Add a lighter shadow for the paragraph */
}

.hero-btn {
    padding: 15px 30px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.right-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
}

/* Search Section */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f4f0;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px 15px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-box i {
    position: absolute;
    right: 10px;
    color: #ccc;
}

.search-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Help Section */
.help-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
}

.help-image img {
    max-width: 400px;
    border-radius: 10px;
}

.help-text {
    max-width: 500px;
}

.help-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3b3b3b;
}

.help-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 30px;
}

.stats div {
    text-align: center;
}

.stats h3 {
    font-size: 28px;
    font-weight: bold;
    color: #3b3b3b;
}

.stats p {
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose {
    text-align: center;
    padding: 50px 0;
    background-color: #fdf5f1;
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose p {
    font-size: 18px;
    margin-bottom: 40px;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: #f5eae4;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
}

.card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
}

/* Our Popular Residences */
/* Popular Residences */
.popular-residences {
    padding: 50px;
    text-align: center;
}

.popular-residences h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.residence-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.residence-card {
    flex: 1 1 calc(25% - 20px); /* Cards take 25% of the row minus spacing */
    max-width: 300px; /* Ensure consistent width on large screens */
    background-color: #f5eae4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Arrows */
.prevc, .nextc {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    transform: translateY(-50%);
}

.prevc {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.nextc {
    right: 0;
    border-radius: 0 3px 3px 0;
}


/* Testimonials Section */
.testimonials-section {
    padding: 50px;
    text-align: center;
    background-color: #fdf5f1;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #f5eae4;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
    position: relative;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 20px;
}

.testimonial-text {
    margin-top: 30px;
}

.testimonial-navigation {
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    background-color: #3b3b3b;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #fdf5f1;
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.contact-options div {
    text-align: center;
}

.newsletter-signup {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #f5eae4;
    padding: 30px 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-column ul li a i {
    font-size: 20px; /* Adjust the icon size */
    color: #333; /* Icon color */
}

.see-more-container {
    text-align: center;
    margin-top: 10px;
}

.see-more-btn {
    padding: 15px 30px;
    background-color: #3b3b3b;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #2a2a2a;
}


/* Filter Section */
/* Filter Section */
.filter-section {
    padding: 20px;
    background-color: #f8f4f0;
}

.filters-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
}

.filter-group select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Active Filter Label */
.active-filters {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: none; /* Initially hidden */
}

#filtersApplied {
    font-weight: bold;
}


/* All Houses Section */
.all-houses {
    padding: 30px;
    text-align: center;
}

.all-houses h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.residence-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
}

.residence-card {
    width: 300px; /* Set the width of each card */
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
}

.residence-card img {
    width: 100%; /* Ensure images fill the card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Prevent image distortion */
    border-radius: 10px; /* Match the card's rounded corners */
}

.residence-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.residence-card p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .residence-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    }
}

@media (max-width: 480px) {
    .residence-card {
        flex: 1 1 100%; /* Full width for small screens */
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 200px; /* Set a fixed height for the carousel */
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0; /* Prevent images from shrinking */
    height: 100%; /* Ensure images fit the container */
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.nav-signup {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

/* Main Section */
.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    height: 70vh;
    position: relative;
    z-index: 1;
    color: #3b3b3b;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/kay.jpg');
    background-position: center;
    background-size: cover;
    filter: blur(8px); /* Apply the blur */
    opacity: 0.6; /* Make it semi-transparent */
    z-index: -1; /* Send it behind the content */
}

.left-text {
    max-width: 50%;
    z-index: 2; /* Ensure the text stays above the blurred background */
}

.left-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white; /* Change text color to white */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add subtle shadow for better readability */
}

.left-text p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: white; /* Change text color to white */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Add a lighter shadow for the paragraph */
}

.hero-btn {
    padding: 15px 30px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.right-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
}

/* Search Section */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f4f0;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 10px 15px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-box i {
    position: absolute;
    right: 10px;
    color: #ccc;
}

.search-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Help Section */
.help-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
}

.help-image img {
    max-width: 400px;
    border-radius: 10px;
}

.help-text {
    max-width: 500px;
}

.help-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3b3b3b;
}

.help-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 30px;
}

.stats div {
    text-align: center;
}

.stats h3 {
    font-size: 28px;
    font-weight: bold;
    color: #3b3b3b;
}

.stats p {
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose {
    text-align: center;
    padding: 50px 0;
    background-color: #fdf5f1;
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose p {
    font-size: 18px;
    margin-bottom: 40px;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: #f5eae4;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
}

.card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
}

/* Our Popular Residences */
/* Popular Residences */
.popular-residences {
    padding: 50px;
    text-align: center;
}

.popular-residences h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.residence-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.residence-card {
    flex: 1 1 calc(25% - 20px); /* Cards take 25% of the row minus spacing */
    max-width: 300px; /* Ensure consistent width on large screens */
    background-color: #f5eae4;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    transform: translateY(-50%);
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}


/* Testimonials Section */
.testimonials-section {
    padding: 50px;
    text-align: center;
    background-color: #fdf5f1;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #f5eae4;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
    position: relative;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 20px;
}

.testimonial-text {
    margin-top: 30px;
}

.testimonial-navigation {
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    background-color: #3b3b3b;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #fdf5f1;
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.contact-options div {
    text-align: center;
}

.newsletter-signup {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #f5eae4;
    padding: 30px 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-column ul li a i {
    font-size: 20px; /* Adjust the icon size */
    color: #333; /* Icon color */
}

.see-more-container {
    text-align: center;
    margin-top: 10px;
}

.see-more-btn {
    padding: 15px 30px;
    background-color: #3b3b3b;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #2a2a2a;
}


/* Filter Section */
/* Filter Section */
.filter-section {
    padding: 20px;
    background-color: #f8f4f0;
}

.filters-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
}

.filter-group select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Active Filter Label */
.active-filters {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: none; /* Initially hidden */
}

#filtersApplied {
    font-weight: bold;
}


/* All Houses Section */
.all-houses {
    padding: 30px;
    text-align: center;
}

.all-houses h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.residence-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
}

.residence-card {
    width: 300px; /* Set the width of each card */
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
}

.residence-card img {
    width: 100%; /* Ensure images fill the card width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Prevent image distortion */
    border-radius: 10px; /* Match the card's rounded corners */
}

.residence-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.residence-card p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .residence-card {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    }
}

@media (max-width: 480px) {
    .residence-card {
        flex: 1 1 100%; /* Full width for small screens */
    }
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 200px; /* Set a fixed height for the carousel */
    overflow: hidden;
    border-radius: 10px;
    transition: opacity 0.3s ease; /* Smooth transition when hiding */
}

.carousel-hidden {
    display: none; /* Hide the carousel when modal is open */
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0; /* Prevent images from shrinking */
    height: 100%; /* Ensure images fit the container */
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background color with transparency */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 900px;
    max-height: 80%;
    overflow: hidden;
}

/* Larger Image */
.modal-carousel-images img {
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* Video styles */
.modal-carousel-images video {
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* Modal carousel controls */
.modal-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons for carousel */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.modal-text {
    margin-top: 20px;
}

.modal-text h3 {
    font-size: 24px;
    font-weight: bold;
}

.modal-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-btn {
    padding: 10px 20px;
    background-color: #3b3b3b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}