/* Myanmar Fonts and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Padauk', 'Noto Sans Myanmar', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cc0000;
    color: white;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-links i {
    margin-right: 8px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
}

.slide-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.slide-text p {
    font-size: 1.3rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: rgba(204, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #cc0000;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.intro-section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.intro-section h1 {
    color: #cc0000;
    margin-bottom: 20px;
    font-size: 2.2rem;
    border-bottom: 3px solid #ffcc00;
    padding-bottom: 10px;
}

.intro-section h1 i {
    margin-right: 15px;
    color: #ffcc00;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.fact-card {
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fact-card i {
    font-size: 2.5rem;
    color: #cc0000;
    margin-bottom: 15px;
}

.fact-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.fact-card p {
    font-size: 1.1rem;
    color: #666;
}

/* Highlights */
.highlights {
    margin-bottom: 40px;
}

.highlights h2 {
    color: #cc0000;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 3px solid #ffcc00;
    padding-bottom: 10px;
}

.highlights h2 i {
    margin-right: 15px;
    color: #ffcc00;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-card h3 {
    padding: 20px 20px 10px;
    color: #cc0000;
    font-size: 1.5rem;
}

.highlight-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Quick Links */
.quick-links {
    margin-bottom: 40px;
}

.quick-links h2 {
    color: #cc0000;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 3px solid #ffcc00;
    padding-bottom: 10px;
}

.quick-links h2 i {
    margin-right: 15px;
    color: #ffcc00;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.link-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #cc0000;
}

.link-card i {
    font-size: 2.5rem;
    color: #cc0000;
    margin-bottom: 20px;
}

.link-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.link-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
}

.footer-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-section i {
    margin-right: 10px;
    color: #ffcc00;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #cc0000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.footer-section ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #cc0000;
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .slide-text h2 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .highlight-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .slide-text {
        left: 5%;
        right: 5%;
        bottom: 10%;
        padding: 15px;
    }
    
    .slide-text h2 {
        font-size: 1.5rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .intro-section, .facts-grid, .highlight-cards, .links-grid {
        padding: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}