@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Myanmar', sans-serif;
    background-color: #ecedf0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #0a1f44, #123d8b);
    color: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 70px;
}

.logo span {
    font-weight: 600;
    font-size: 45px;
    color: white;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #f4b400;
}

/* ===== HERO SECTION ===== */
.hero {
    background: 
        linear-gradient(rgba(10,31,68,0.8), rgba(10,31,68,0.8)),
        url("images/bg.jpg") center/cover no-repeat;
    color: white;
    padding: 120px 8%;
    text-align: center;
    margin-top: auto;
    font-size: 18px;
}

/* ===== GENERAL SECTION ===== */
.section {
    padding: 60px 20px;
    text-align: center;
 
}

/* ===== SERVICES GRID ===== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 75px;
    max-width: 1100px;
    margin: auto;
    margin-top: 20px;
   
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ===== BUTTON ===== */
.button {
    display: inline-block;
    background-color: #b48b3c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.button:hover {
    background-color: #8c6a2f;
    transform: scale(1.05);
}

/* ===== EDUCATION PAGE ===== */
.education-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.education-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.education-container h3 {
    margin-top: 40px;
    font-size: 24px;
}

.education-container ul {
    margin-top: 15px;
    margin-left: 20px;
}

.education-container hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* ===== FOOTER ===== */
footer {
    background: #07142b;
    color: white;
    text-align: center;
    padding: 25px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

nav {
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    margin-left: 0;
    font-size: 14px;
}

.section {
    padding: 50px 5%;
}

.section h2 {
    font-size: 22px;
}

.logo img {
    height: 45px;
}

.logo span {
    font-size: 22px;
}

.education-container {
    padding: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    padding: 8px 18px;              /* 👈 makes it box */
    border-radius: 20px;            /* rounded */
    transition: 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
    color: #f4b400;
}

.irs-text {
    font-size: 16px;
    color: #ddd;
    margin-top: 10px;
}

<!-- Hamburger Icon -->
<div class="mobile-nav">
  <button id="menu-toggle">&#9776;</button> <!-- ☰ icon -->
  <ul id="menu" class="hidden">
    <li><a href="#home">Home</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#services">Services</a></li>
    <li><a href="#contact">Contact</a></li>
  </ul>
</div>
