* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.nav-links a:last-child {
    border-bottom: none;
}

.nav-links .contact-btn {
    margin: 0;
    background: #4299e1;
    color: white;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    width: auto;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.nav-links .contact-btn {
    background: #4299e1;
    color: white;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 20px;
}

.menu-btn span {
    display: block;
    position: absolute;
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    right: 0;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.menu-btn span:nth-child(3) {
    bottom: 0;
    width: 15px;
}

.menu-btn:hover span:nth-child(2),
.menu-btn:hover span:nth-child(3) {
    width: 25px;
}

.hero {
    padding: 6rem 1rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.hero p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.carousel {
    position: relative;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-container video,
.carousel-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.3s ease;
}

.carousel-container video.active,
.carousel-container img.active {
    display: block;
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.prev { left: 0; }
.next { right: 0; }

.explore-btn {
    background: #4299e1;
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 2rem;
    display: inline-block;
}

.explore-btn:hover {
    background: #2b6cb0;
}

.facilities, .time-slots, .contact {
    padding: 3rem 1rem;
}

h2 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.facility-card h3 {
    color: #2d3748;
    font-size: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.slot-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slot-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.slot-card ul {
    list-style: none;
}

.slot-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-item img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.info-item a {
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    width: 100%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item:nth-child(1) a:hover {
    background-color: #e8f5e9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.2);
}

.info-item:nth-child(2) a:hover {
    background-color: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.2);
}

.info-item:nth-child(3) a:hover {
    background-color: #e8f5e9;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.2);
}
.info-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.info-item a img {
    transition: transform 0.2s ease;
}

.info-item a:hover img {
    transform: scale(1.15) rotate(5deg);
}

.info-item p {
    color: #4a5568;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #2d3748;
    color: white;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        border: none;
        width: auto;
        padding: 0.5rem 1rem;
    }

    .menu-btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .carousel-container img {
        height: 400px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}