/* --- Core Reset & Variables --- */
:root {
    --bg-main: #0d0606;                     /* Deep Charcoal Maroon */
    --primary-maroon: #4a0e17;              /* Rich Premium Maroon */
    --accent-gold: #ffc107;                 /* Reflection Gold Accent */
    --text-pure: #ffffff;
    --text-muted: #b3a2a4;
    --gradient-nav: linear-gradient(135deg, rgba(74, 14, 23, 0.8) 0%, rgba(26, 6, 9, 0.9) 100%);
    --reflection-glow: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-pure);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Navbar Layout (Mobile First) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Glassmorphism Reflection Effect on Scroll */
.main-header.scrolled {
    padding: 15px 0;
    background: var(--gradient-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2); /* Soft Gold Edge Reflection */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-pure);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-logo span {
    color: var(--accent-gold);
}

/* --- Hamburger Menu Icon (Mobile) --- */
.mobile-nav-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    display: block; /* Visible on Mobile */
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-pure);
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-pure);
    transition: var(--transition-smooth);
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

/* Hamburger Animation Switch */
.mobile-nav-toggle.active .hamburger {
    background: transparent;
}
.mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
}
.mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

/* --- Navigation Menu Drawer (Mobile) --- */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(180deg, #1f0509 0%, #0d0606 100%);
    box-shadow: -10px 0 30px rgba(0,0,0,0.7);
    padding: 120px 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
}

.nav-menu.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-link {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    transition: var(--transition-smooth);
}

/* Hover Reflection Effect */
.nav-link:hover, .nav-link.active {
    color: var(--text-pure);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* Call To Action Button Style inside Nav */
.nav-btn {
    border: 1px solid var(--accent-gold);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--text-pure);
    text-align: center;
    background: linear-gradient(90deg, transparent, transparent);
    overflow: hidden;
}

.nav-btn:hover {
    background: linear-gradient(90deg, var(--primary-maroon), #721c24);
    box-shadow: 0 0 20px rgba(74, 14, 23, 0.6);
    border-color: var(--text-pure);
}

/* --- Media Query for Desktop (Responsive Transition) --- */
@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none; /* Hide Menu Button on Desktop */
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .nav-link {
        font-size: 1rem;
    }

    /* Desktop Reflection Line Animation */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-gold);
        transition: var(--transition-smooth);
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
}














/* --- Ultra-Premium Hero Section Variables & Base --- */
:root {
    --bg-main: #0a0304;                     /* Ultra Dark Maroon Black */
    --primary-maroon: #540c15;              /* Deep Velvet Maroon */
    --accent-gold: #ffc107;                 /* Specular Amber Gold */
    --text-pure: #ffffff;
    --text-muted: #a69294;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section {
    position: relative;
    padding: 140px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    overflow: hidden;
    z-index: 1;
}

/* Dynamic Ambient Glows Behind Content */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(120px);
}
.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(84, 12, 21, 0.4) 0%, transparent 70%);
    top: -10%;
    right: 5%;
}
.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
}

.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile Default */
    gap: 60px;
    align-items: center;
}

/* --- Left Column UI Design --- */
.badge-wrapper {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(84, 12, 21, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 100px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-pure);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
}

/* CTAs Buttons with Fluid Transitions */
.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px; /* Sleek Square Sharp Radii */
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, #3a060c 100%);
    color: var(--text-pure);
    border: 1px solid rgba(255, 193, 7, 0.25);
    box-shadow: 0 10px 30px rgba(84, 12, 21, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(84, 12, 21, 0.7);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-pure);
    transform: translateY(-3px);
}

/* --- Right Column: Asymmetric Cinematic Photo Module --- */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cinematic-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 6; /* ဓာတ်ပုံအသစ်ရဲ့ ပုံစံအတိုင်း အချိုးကျစေရန် */
    border-radius: 24px;
    background: #110607;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: var(--transition-smooth);
}

/* Bottom Fade Mask (အောက်ခြေကို ဖျော့ချပြီး blend လုပ်ခြင်း) */
.image-gradient-shade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-main) 0%, rgba(10, 3, 4, 0.8) 30%, transparent 100%);
    pointer-events: none;
}

/* Laser Reflection Effect (အလင်းဖြတ်ပြေးသည့် Animation လိုင်း) */
.laser-reflection {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: 0.7s;
}

/* --- Hover Interactions --- */
.cinematic-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 193, 7, 0.35);
    box-shadow: 0 50px 90px rgba(84, 12, 21, 0.5);
}

.cinematic-card:hover .hero-profile-img {
    transform: scale(1.06); /* Hover တင်ရင် ပုံထဲကို ဖြည်းဖြည်းချင်း zoom ဝင်သွားမယ် */
}

/* Mouse Hover တင်လိုက်ရင် အလင်းတန်း ဖြတ်ပြေးသွားမယ် */
.cinematic-card:hover .laser-reflection {
    left: 150%;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Responsive Desktop Grid System --- */
@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr; /* နေရာအချိုးအစား ရှင်းလင်းစွာ ခွဲထုတ်ခြင်း */
        min-height: calc(100vh - 140px);
    }

    .hero-title {
        font-size: 4.2rem;
        line-height: 1.15;
    }

    .cinematic-card {
        max-width: 400px; /* Desktop တွင် ပုံကို ပိုမိုကြီးမားကျယ်ပြန့်စွာပြသရန် */
    }
}




/* --- Education Header အလယ်ဗဟို ပြန်ပို့ခြင်း --- */
.section-header {
    text-align: center !important; /* စာသားအားလုံး အလယ်ဗဟိုရောက်စေရန် */
    display: flex;
    flex-direction: column;
    align-items: center;          /* Underline နှင့် အခြားအရာများကိုပါ အလယ်ဗဟိုညှိရန် */
    justify-content: center;
    width: 100%;                  /* Container အပြည့် နေရာယူစေရန် */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;          /* အောက်က Carousel နှင့် အကွာအဝေး */
}

/* Subtitle (Academic Journey) ကိုပါ အလယ်ဗဟို သေချာအောင် ထိန်းခြင်း */
.section-subtitle {
    text-align: center;
    display: block;
    width: 100%;
}

/* Title (Education & Credentials) ကိုပါ အလယ်ဗဟို သေချာအောင် ထိန်းခြင်း */
.section-title {
    text-align: center;
    width: 100%;
}

/* အနီရောင်/ရွှေရောင် မျဉ်းတိုလေး (Underline) အလယ်ကွက်တိ ကျစေရန် */
.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-maroon);
    margin: 12px auto 0 auto;    /* 'auto' က မျဉ်းကို အလယ်ကွက်တိ ရောက်စေပါတယ် */
    border-radius: 10px;
}





/* --- 💡 ပြင်ဆင်ထားသော Auto-Scroll CSS အသစ်စတင် --- */

/* Carousel ကတ်ပြားများ လှည့်ပတ်စီးဆင်းမည့် ဧရိယာ */
.education-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

/* မျက်နှာပြင်၏ ဘယ်ဘက်နှင့် ညာဘက်အစွန်းများတွင် အလင်းမှိန်မှိန်လေး (Fade Fade Effect) ပေးထားသော Premium Mask */
.education-carousel-wrapper::before,
.education-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.education-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}
.education-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

/* ကတ်ပြားများ တန်းစီရွေ့လျားမည့် လမ်းကြောင်း (Track) */
.education-track {
    display: flex;
    gap: 30px; /* ကတ်တစ်ခုချင်းစီ၏ အကွာအဝေး */
    width: max-content;
    will-change: transform;
    animation: scroll-education 35s linear infinite; /* ၃၅ စက္ကန့်ဖြင့် အဆက်မပြတ် လည်ပတ်မည် */
}

/* User က Card တစ်ခုခုပေါ် Mouse Hover တင်လိုက်လျှင် ဖတ်ရလွယ်အောင် Carousel ရပ်သွားမည့် UX စနစ် */
.education-carousel-wrapper:hover .education-track {
    animation-play-state: paused;
}

/* --- Premium Glassmorphic Card Layout (Fixed Size for Animation) --- */
.edu-card {
    flex: 0 0 350px; /* ကတ်ပြားအရွယ်အစားကို ဖုန်းရော Desktop ပါ ပုံသေ 350px သတ်မှတ်ထားသည် */
    width: 350px;
    position: relative;
    background: rgba(20, 8, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* JS Scroll Reveal အတွက် မူရင်းအတိုင်း ဆက်လက်အလုပ်လုပ်စေရန် (Auto-Scroll ဖြစ်သော်လည်း မျက်နှာပြင်ထဲရောက်မှ လင်းလာမည်) */
.edu-card {
    opacity: 0;
}
.edu-card.reveal-active {
    opacity: 1;
}

/* JavaScript Dynamic Spotlight Glow Tracker */
.edu-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 193, 7, 0.15), transparent 80%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edu-card:hover .edu-card-glow {
    opacity: 1;
}

.edu-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateZ(30px);
}

.edu-logo-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: background-color 0.3s, border-color 0.3s;
}

.edu-university-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edu-logo-wrapper i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.edu-badge {
    padding: 6px 14px;
    background: var(--primary-maroon);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--text-pure);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.edu-info {
    transform: translateZ(25px);
}

.edu-degree {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s;
}

.edu-school-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.edu-status {
    font-size: 0.8rem;
    color: #2ec4b6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Hover Base Impact */
.edu-card:hover {
    border-color: rgba(255, 193, 7, 0.35);
    box-shadow: 0 30px 60px rgba(84, 12, 21, 0.4);
}
.edu-card:hover .edu-logo-wrapper {
    background: rgba(84, 12, 21, 0.5);
    border-color: var(--accent-gold);
}
.edu-card:hover .edu-degree {
    color: var(--accent-gold);
}

/* --- 🔄 Infinite Seamless Translation Animation --- */
@keyframes scroll-education {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* မူရင်း Card ၅ ခုနှင့် ၎င်းတို့ကြားရှိ gap စုစုပေါင်း ပမာဏအတိအကျဖြစ်သော (၅၀ ရာခိုင်နှုန်း) သို့ ရွှေ့ပြီး Infinite Loop ပတ်ခြင်း */
        transform: translate3d(calc(-50% - 15px), 0, 0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 576px) {
    .edu-card {
        flex: 0 0 290px; /* ဖုန်းမျက်နှာပြင်ငယ်များတွင် ကတ်များကို အနည်းငယ် ကျဉ်းပေးခြင်း */
        width: 290px;
        padding: 25px 20px;
    }
    @keyframes scroll-education {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(calc(-50% - 15px), 0, 0); }
    }
}

/* --- 💡 ပြင်ဆင်ထားသော Auto-Scroll CSS အသစ်ပြီးဆုံး --- */
















/* --- Social Connect Section --- */
.connect-section {
    padding: 100px 0;
    background-color: var(--bg-main);
    position: relative;
}

.connect-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Intelligent Search Input Bar --- */
.search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 20px 14px 50px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.search-box:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.search-box:focus-within .search-icon {
    color: var(--accent-gold);
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-pure);
    font-size: 1rem;
    font-family: inherit;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.clear-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 5px;
    display: none; /* စာရိုက်မှ ပေါ်လာမည် */
}
.clear-btn:hover { color: #fe2c55; }

/* --- Social Grid System (Responsive Mobile to Desktop) --- */
.social-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile Default */
    gap: 20px;
    transition: all 0.4s ease;
}

/* Premium Card Design */
.social-card {
    position: relative;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Border Radial Glow */
.social-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 100px at var(--s-mouse-x, 0px) var(--s-mouse-y, 0px), rgba(255, 255, 255, 0.06), transparent 80%);
    pointer-events: none;
}

.social-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-meta h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.social-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.arrow-link {
    margin-left: auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* --- Hover Interactive Effects (Dynamic Branding Colors) --- */
.social-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-color, transparent);
}

.social-card:hover .social-icon-box {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff !important;
    transform: scale(1.05);
}

.social-card:hover .arrow-link {
    color: var(--accent-color);
    transform: translate(2px, -2px);
}

/* JS Filter Fade Effect */
.social-card.filtered-out {
    opacity: 0.1;
    transform: scale(0.95);
    pointer-events: none;
    display: none; /* ရှာရလွယ်အောင် ဖျောက်ထားမည် */
}

/* No Results UI */
.no-results {
    display: none;
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}
.no-results i {
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin-bottom: 15px;
}

/* --- Responsive Media Queries --- */
@media (min-width: 576px) {
    .social-grid { grid-template-columns: repeat(2, 1fr); } /* ဖုန်းကြီး/Tablet */
}
@media (min-width: 1024px) {
    .social-grid { grid-template-columns: repeat(3, 1fr); } /* Desktop */
}











/* --- Ultra-Premium Footer Styles --- */
.portfolio-footer {
    background: linear-gradient(to top, #060202 0%, var(--bg-main) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Grid Section */
.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile Default */
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.footer-info-box:hover {
    background: rgba(84, 12, 21, 0.15);
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
}

.footer-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(84, 12, 21, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.footer-info-box:hover .footer-icon-circle {
    background: var(--accent-gold);
    color: var(--primary-maroon);
    box-shadow: 0 0 15px var(--accent-gold);
}

.footer-meta span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-meta a, .footer-meta p {
    font-size: 1rem;
    color: var(--text-pure);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-meta a:hover {
    color: var(--accent-gold);
}

/* Divider Line styling */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 50%, transparent);
    margin-bottom: 30px;
}

/* --- JS Infinite Running Ticker Container --- */
.footer-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: ticker-loop 25s linear infinite; /* စာသားပြေးနှုန်းကို စက္ကန့်နဲ့ ထိန်းချုပ်နိုင်ပါတယ် */
}

/* စာသားတစ်ခုချင်းစီရဲ့ UI */
.ticker-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-item span {
    color: var(--accent-gold);
    font-weight: 600;
}

.ticker-item i {
    color: var(--primary-maroon);
    font-size: 0.6rem;
}

/* Hardware Accelerated Smooth Infinite Animation loop */
@keyframes ticker-loop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333%, 0, 0); /* ၃ ခါပွားထားလို့ တိကျတဲ့ loop ရအောင် 33.333% သုံးပါတယ် */
    }
}

/* --- Responsive Media Queries --- */
@media (min-width: 768px) {
    .footer-contact-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet နှင့် Desktop တွင် ၃ ကော်လံ ညီညာစွာပြမည် */
    }
}



/*contact  */


/* ==========================================
   FIXED PREMIUM CONTACT PAGE SYSTEM 
   ========================================== */

.contact-page-body {
    background-color: #0d0608 !important; /* နီညိုရောင်မှောင်မှောင် Base */
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
    margin: 0;
    overflow-x: hidden;
}

.contact-page-container {
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Back Button Layout Fix */
.back-home-wrapper {
    margin-bottom: 35px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-home-btn i { transition: transform 0.3s ease; }
.back-home-btn:hover {
    color: #FFC107; /* Gold */
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(128, 0, 0, 0.2); /* Maroon */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.back-home-btn:hover i { transform: translateX(-5px); }

/* Typography Formatting */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFC107;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto;
}

.highlight-text { color: #fe2c55; } /* Neon Accent */

.title-underline {
    width: 60px;
    height: 3px;
    background: #FFC107;
    margin: 15px auto 20px auto;
    border-radius: 2px;
}

.contact-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glassmorphic Box Container Fix */
.premium-form-page {
    background: rgba(20, 10, 12, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 45px 40px !important;
    border-radius: 24px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Row-Grid system setup */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
@media (min-width: 576px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* Form Groups & Inputs Fix (အဖြူကွက်ကြီးများ ပျောက်စေမည့်အပိုင်း) */
.form-group {
    position: relative;
    margin-top: 25px;
    margin-bottom: 5px;
}

.form-row .form-group { margin-top: 10px; }

.form-group input, 
.form-group textarea {
    width: 100% !important;
    padding: 16px !important;
    background: rgba(0, 0, 0, 0.3) !important; /* Input ကို အမှောင်ချခြင်း */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    outline: none !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.form-group textarea { resize: none !important; }

/* Modern Static Text Box with Highlight Labels */
.form-group label {
    position: absolute;
    left: 14px;
    top: -10px; /* Label ကို Input ဘောင်ပေါ်တင်ခြင်း */
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFC107; /* Gold Label Text */
    background: #110709; /* စာသားနောက်ခံကို ကာပေးခြင်း */
    padding: 0 8px;
    border-radius: 4px;
    pointer-events: none;
}

/* Input Focus states setup */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: #FFC107 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.15) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Submit Action Button Fix */
.form-submit-btn {
    width: 100% !important;
    padding: 16px !important;
    background: #800000 !important; /* Maroon Base */
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 15px;
    transition: all 0.3s ease !important;
}

.form-submit-btn:hover {
    background: #FFC107 !important; /* Gold hover */
    color: #800000 !important;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Response Alerts Status Layout */
#form-status-page {
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    border-radius: 10px;
}
#form-status-page.success { color: #2ec4b6; padding: 12px; background: rgba(46, 196, 182, 0.1); border: 1px solid rgba(46, 196, 182, 0.2); }
#form-status-page.error { color: #fe2c55; padding: 12px; background: rgba(254, 44, 85, 0.1); border: 1px solid rgba(254, 44, 85, 0.2); }

/* Ambient Glow Decoration Circles */
.ambient-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}
.bg-glow-1 { top: -5%; left: -10%; background: #FFC107; }
.bg-glow-2 { bottom: -5%; right: -10%; background: #800000; }

@media (max-width: 576px) {
    .premium-form-page { padding: 30px 20px !important; }
    .contact-title { font-size: 1.8rem; }
}















/* Header UI */
.blog-header {
    background: linear-gradient(to bottom, rgba(128, 0, 0, 0.15), transparent);
    padding: 40px 5%;
}
.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.back-home-btn {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.back-home-btn:hover { color: #FFC107; } /* Gold */
.blog-logo { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 1px;}
.blog-logo span { color: #800000; }

.blog-intro { text-align: center; max-width: 700px; margin: 0 auto; }
.blog-intro h1 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; }
.blog-intro h1 span {
    background: linear-gradient(135deg, #ffc107, #de2d43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-intro p { color: #a0a0a0; font-size: 1rem; }


