* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f8ff, #e6f4ff);
    color: #333;
    line-height: 1.6;
    font-family: 'Pyidaungsu', 'Myanmar3', 'Zawgyi-One' sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    height: 40px;
    display: none; /* Hide by default */
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: #007bff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Website Description Marquee */
.marquee {
    margin-top: 0px; /* Adjust for fixed nav */
    background: #ffffff;
    color: rgb(241, 15, 15);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee p {
    display: inline-block;
    padding-left: 30%; /* Start off-screen */
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
    padding: 0rem 2rem;
    background: white;
    text-align: center;
}
.heroinfo {
    padding: 1rem 2rem 0rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    margin-top: 3.5rem;
    color: #007bff;
}
.hero h2 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-direction: column;
}

.cta-buttons a {
    text-decoration: none;
    color: white;
    background: #007bff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-buttons a:hover {
    background: #0056b3;
}

/* Google Map */
.map-container {
    width: 100%;
    height: 300px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 1.1rem;
    margin-top: 10rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}
#myanlogo{
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo h1 {
        display: none; /* Hide title on mobile */
    }
    .nav-logo img {
        display: block; /* Show logo on mobile */
    }
    #myanlogo{
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .slider {
        height: calc(100vw * 16 / 9); /* Maintain 9:16 aspect ratio */
    }

    .slide-description {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .marquee p {
        font-size: 0.9rem;
    }

    .map-container {
        height: 200px;
    }
    .qr{
        align-content: center;
        width: 80%;
        height: 100%;
    }
    .slider-slide iframe{
        width: 100%;
        height: 100%;
        border: none;
    }
}
