/* --- ၁။ Theme Variables --- */
:root {
    --bg-color: #0b0d17;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(11, 13, 23, 0.95);
    /* နည်းနည်း ပိုအရောင်ရင့်ထားသည် */
    --primary-blue: #3b82f6;
    --text-dim: #cbd5e1;
    --glass-border: rgba(255, 255, 255, 0.1);
    --hero-overlay: linear-gradient(135deg, rgba(11, 13, 23, 0.6) 0%, rgba(11, 13, 23, 0.9) 100%);
    --footer-bg: #05070a;
}

[data-theme="light"] {
    --bg-color: #f8fafc;
    --text-color: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.8);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --text-dim: #475569;
    --glass-border: rgba(15, 23, 42, 0.1);
    --hero-overlay: linear-gradient(135deg, rgba(248, 250, 252, 0.7) 0%, rgba(248, 250, 252, 0.9) 100%);
    --footer-bg: #e2e8f0;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* --- ၂။ Navbar (ပိုကြီးပြီး Bold တင်ထားသည်) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    /* Bar ကို နည်းနည်း ပိုကြီးစေရန် Padding တိုးထားသည် */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agency-logo-small {
    height: 45px;
    /* Logo ကို အနည်းငယ် ပိုကြီးထားသည် */
    width: auto;
    border-radius: 6px;
}

.brand-name {
    font-size: 1.4rem;
    /* Footer အတိုင်း 1.4rem သို့ ပြောင်းလဲ */
    color: var(--primary-blue);
    /* Footer အတိုင်း အပြာရောင်သို့ ပြောင်းလဲ */
    font-weight: 800;
}

.brand-tagline {
    font-size: 1.4rem;
    /* Brand Name နဲ့ အရွယ်အစား တူအောင် 1.4rem ထား */
    color: var(--primary-blue);
    /* အပြာရောင်အတိုင်း ထားရှိ */
    font-weight: 800;
    margin-left: 5px;
    /* စာလုံးနှစ်စုကြား နည်းနည်း ခွာချင်ရင် သုံးရန် (မလိုရင် ဖြုတ်နိုင်သည်) */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    /* Menu စာလုံးကြီးပေးထားသည် */
    font-weight: 700;
    /* Bold တင်ထားသည် */
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-extras {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.btn-login {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    /* Bold */
}

.btn-signup {
    text-decoration: none;
    background: var(--primary-blue);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    /* Bold */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-weight: 700;
}

#lang-switch {
    background: transparent;
    color: var(--text-color);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
    outline: none;
}

#lang-switch option {
    background-color: var(--bg-color);
    /* Theme အလိုက် နောက်ခံပြောင်းမည် */
    color: var(--text-color);
    /* Theme အလိုက် စာလုံးအရောင်ပြောင်းမည် */
}

#theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
}

/* --- ၃။ Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 5% 40px 5%;
    position: relative;
    background: var(--hero-overlay), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-title {
    /* အနည်းဆုံး အရွယ်အစားကို 2.5rem မှ 1.8rem သို့ လျှော့ချပြီး Responsive ဖြစ်စေရန် ညှိထားသည် */
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    color: var(--text-dim);
    font-size: 1.4rem;
    margin: 25px 0 40px;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-get-started {
    background: var(--primary-blue);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact-us {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
}

.feature-image-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.agency-logo-large {
    width: 100%;
    min-width: 480px;
    max-width: 580px;
    height: auto;
    border-radius: 12px;
}

/* --- ၄။ Logo Marquee --- */
.logos-container {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: transparent;
    border: none;
    white-space: nowrap;
    z-index: 3;
}

.logos-wrapper {
    display: flex;
    width: fit-content;
}

.logos-slide {
    display: flex;
    align-items: center;
    animation: 30s slide infinite linear;
}

.logos-slide img {
    height: 90px;
    margin: 0 55px;
    border-radius: 10px;
    transition: 0.3s;
}

.logos-slide img:hover {
    transform: scale(1.1);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-down-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* --- ၅။ System Status --- */
.system-status {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.system-status .dot {
    height: 10px;
    width: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* --- ၆။ About Section (Badge ဖျက်ပြီး စာသားကြီးထားသည်) --- */
.about {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    display: none;
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
}

.about-description {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-color);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dim);
}

/* --- ၇။ Footer Styling --- */
.footer {
    background-color: var(--footer-bg);
    padding: 80px 5% 30px 5%;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    border-radius: 6px;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-blue);
}

.footer-about p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 30px;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-dim);
    font-weight: 600;
}

.contact-item i {
    color: var(--primary-blue);
    width: 25px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- ၈။ Responsive Design --- */
@media (max-width: 992px) {

    .about-container,
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats,
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.team-section {
    padding: 60px 5%;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header .sub-title {
    color: var(--primary-blue);
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
}

.member-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-info p {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Mobile အတွက် တန်းစီပုံ ပြန်ညှိခြင်း */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Services Page Styles --- */
.services-page-content {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary-blue));
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.service-card p {
    flex-grow: 1;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-tutorial {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 20px;
    background-color: var(--primary-blue);
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-tutorial:hover {
    background-color: #38bdf8;
}

/* Mobile & Tablet အတွက် ညှိချက် */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Active Link အတွက် အပြာရောင်မျဉ်းလေး ပေါ်စေရန် */
.nav-links li a.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    font-weight: bold;
}

/* --- Contact Page Styles --- */
.contact-page-container {
    padding: 100px 5%;
    min-height: 80vh;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section,
.contact-info-section {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dim);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #000000;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-submit {
    padding: 12px 25px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #0056b3;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    width: 30px;
}

.info-item h4 {
    margin: 0;
    color: var(--text-color);
}

.info-item p {
    margin: 0;
    color: var(--text-dim);
}

.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

.contact-header-text {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header-text h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-header-text p {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
}

/* ===================================================
   MODAL LOGIN DESIGN (ရှည်ရှည်သွယ်သွယ်နှင့် ခေတ်မီသောပုံစံသစ်)
   =================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #ffffff;
    margin: 8% auto;
    padding: 45px 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
}

.close-modal:hover {
    color: #1e293b;
}

.modal-badge {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 500;
}

.auth-options {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

#google-login-btn {
    display: inline-block;
    width: auto;
}

.system-status-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #e0e0e0;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #007bff;
    border-radius: 50%;
}

.active-users-item {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.blink-green-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff00;
    animation: blinker 1.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
}

@keyframes blinker {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

#active-user-count {
    font-weight: bold;
    color: var(--text-color);
}

/* --- Home Page (Navbar & Hero) Responsive ပြင်ဆင်ချက် --- */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .agency-logo-large {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .system-status-container {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ✅ အသစ် (အစားထိုးရမည့်အပိုင်း - မျဉ်း ၃ ကြောင်း ခလုတ်နှင့် Slide Menu စနစ်) */

/* ဖုန်းမဟုတ်ရင် Menu ခလုတ်ကို ဖျောက်ထားမည် */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    background: none;
    border: none;
}

/* Screen အရွယ်အစား ၇၆၈ အောက်ရောက်ရင် (Mobile ဖုန်းတွေအတွက်) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        /* မျဉ်း ၃ ကြောင်း ခလုတ်ကို ပေါ်လာစေမည် */
    }

    /* Menu များကို ဖွက်ထားပြီး ခလုတ်နှိပ်မှ ကျလာစေမည့် Design */
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: -100%;
        /* မူလက ဘေးဘက်ကို ဝှက်ထားမည် */
        width: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: 0.4s ease-in-out;
        /* ညင်သာစွာ ထွက်လာစေရန် */
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* JavaScript ဖြင့် .active ဝင်လာပါက Menu ပေါ်လာမည် */
    .nav-menu-wrapper.active {
        left: 0;
    }

    /* စာသားများနှင့် Button များ အောက်သို့စီရန် */
    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .nav-extras {
        flex-direction: column;
        margin-top: 25px;
        gap: 20px;
    }

    /* Navbar နေရာချထားပုံကို မျဉ်း ၃ ကြောင်းနဲ့ အဆင်ပြေအောင် ပြင်ခြင်း */
    .navbar {
        padding: 15px 5%;
    }
}

/* Footer Social Media Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[title="YouTube"]:hover {
    background-color: #ff0000;
}

.social-links a[title="Facebook"]:hover {
    background-color: #1877f2;
}

.social-links a[title="TikTok"]:hover {
    background-color: #000000;
}

.social-links a[title="Telegram"]:hover {
    background-color: #0088cc;
}

/* ===================================================
   ELEGANT POLICY MODAL DESIGN (အပေါ်သို့ ချိန်ညှိထားသည်)
   =================================================== */
.policy-modal-wrapper {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 13, 23, 0.6);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: flex-start;
    padding: 5vh 20px;
    overflow-y: auto;
}

.policy-content-box {
    max-width: 650px !important;
    width: 100%;
    margin: 0 auto !important;
    align-items: flex-start !important;
    text-align: left !important;
    animation: modalSlideDown 0.4s ease-out;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
}

[data-theme="dark"] .policy-content-box {
    background-color: #1e293b !important;
    border: 1px solid #334155;
    color: #e2e8f0 !important;
}

[data-theme="dark"] .policy-content-box h1,
[data-theme="dark"] .policy-content-box h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .policy-content-box button,
[data-theme="dark"] .policy-content-box .close-btn {
    color: #94a3b8 !important;
}

@keyframes modalSlideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.policy-scroll-text {
    max-height: 65vh;
    overflow-y: auto;
    width: 100%;
    padding-right: 10px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
}

[data-theme="dark"] .policy-scroll-text,
[data-theme="dark"] .policy-scroll-text p,
[data-theme="dark"] .policy-scroll-text li {
    color: #e2e8f0 !important;
    opacity: 1 !important;
}

.policy-scroll-text h3 {
    color: var(--primary-blue, #2563eb);
    margin: 22px 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

[data-theme="dark"] .policy-scroll-text h3 {
    color: #60a5fa !important;
}

.policy-scroll-text p {
    margin-bottom: 12px;
}

.policy-scroll-text ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.policy-scroll-text li {
    margin-bottom: 6px;
}

.policy-scroll-text::-webkit-scrollbar {
    width: 5px;
}

.policy-scroll-text::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .policy-scroll-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.policy-scroll-text::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue, #2563eb);
    border-radius: 10px;
}

/* ✅ Computer (Desktop) မြင်ကွင်းအတွက် about.html အတိုင်း အကွာအဝေး ညီစေရန် ပြန်ညှိခြင်း */
@media (min-width: 769px) {
    .nav-menu-wrapper {
        display: contents;
    }

    .mobile-menu-btn {
        display: none;
    }
}