/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar Section */
#navbar {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/banner/2.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    padding: 1rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Search Form */
.search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.search-form .form-group select,
.search-form .form-group button {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-form button {
    background-color: #ff4081;
    color: #fff;
    border: none;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #e91e63;
    transform: translateY(-2px);
}



/* Carousel Section */
.carousel-container {
    position: relative;
    width: 90%;
    margin: 2rem auto;
    overflow: hidden;
}

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

.card {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-content a {
    color: #ff4081;
    text-decoration: none;
    margin: 0 5px;
}

.card-content a:hover {
    text-decoration: underline;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.arrow.left {
    left: -20px;
}

.arrow.right {
    right: -20px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .search-form {
        flex-direction: column;
    }

    .carousel-container {
        width: 100%;
    }

    .arrow.left, .arrow.right {
        display: none;
    }

}














/* Popup Overlay Fullscreen */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1000;
}

/* Fullscreen Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    display: none;
    overflow: hidden;
    border-radius: 0;
}

/* Iframe ko Full Height & Width Dena */
.popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Close Button */
.popup .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 1002;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup .close {
        font-size: 1.5rem;
        top: 5px;
        right: 10px;
    }
}
