  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --dark-red: #8B0000;
            --bright-red: #FF0000;
            --white: #FFFFFF;
            --yellow: #FFD700;
        }

        .noto-serif-myanmar-thin {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 100;
  font-style: normal;
}

.noto-serif-myanmar-extralight {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 200;
  font-style: normal;
}

.noto-serif-myanmar-light {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 300;
  font-style: normal;
}

.noto-serif-myanmar-regular {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-myanmar-medium {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 500;
  font-style: normal;
}

.noto-serif-myanmar-semibold {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 600;
  font-style: normal;
}

.noto-serif-myanmar-bold {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 700;
  font-style: normal;
}

.noto-serif-myanmar-extrabold {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 800;
  font-style: normal;
}

.noto-serif-myanmar-black {
  font-family: "Noto Serif Myanmar", serif;
  font-weight: 900;
  font-style: normal;
}

        
/*This is nav bar logo for web */
       
.nav-logo {
    color: var(--white);
    display: flex;
    align-items: center; 
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
   
}

.logo-img {
    height: 60px; /* Logo ၏ အမြင့် */
    width: auto;  /* အချိုးအစား မပျက်အောင် */
    object-fit: contain; /* ပုံမပြဲအောင် */
}

/* --- Mobile Responsive (max-width: 960px) အပိုင်းထဲမှာ ပြင်ရန် --- */

@media screen and (max-width: 960px) {

      .nav-container {
        /* ညာဘက်ကို ၂၀ ထားပြီး ဘယ်ဘက် (Logo ဘက်) ကို ၁၀ ပဲ ထားလိုက်တာပါ */
        /* ပုံစံက - padding: အပေါ်/အောက်  ညာဘက်  အောက်ခြေ  ဘယ်ဘက်; */
        padding: 0 20px 0 10px; 
        
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .nav-logo {
        /* Logo ကို ဘယ်ဘက် အစွန်ဆုံးကို ကပ်သွားစေဖို့ */
        margin-left: 0; 
        padding-left: 0;
        font-size: 1.1rem; /* ဖုန်းမှာ စာသားအရမ်းကြီးနေရင် နည်းနည်းသေးပေးပါ */
    }
    /* Mobile မှာ Navbar အမြင့်နဲ့အညီ Logo အရွယ်အစားကို အနည်းငယ် သေးပေးတာ */
    .logo-img {
        height: 50px;
    }
    
    .nav-logo {
        font-size: 1.2rem; /* ဖုန်းမှာ စာသားအရွယ်အစားကို နည်းနည်းသေးပေးတာ */
    }
}

/* CSS ရဲ့ အောက်နားက @media screen and (max-width: 960px) အောက်မှာ ရှာပါ */


        /*This is nav bar for web */

        .navbar {
            background: var(--dark-red);
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);

            
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            height: 80px;
            width: 100%;
            max-width: 1300px;
            padding: 0 50px;
        }

        .nav-logo {
            color: var(--white);
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
      
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-item { height: 80px; position: relative; }

        .nav-links {
            color: var(--white);
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0 1.5rem;
            height: 100%;
            transition: 0.3s;
        }

        .nav-links i { margin-right: 8px; }

        /* Hover & Active */
        .nav-links:hover, .nav-links.active {
            color: var(--yellow);
        }

        /* Dropdown */
        .dropdown-menu {
            position: absolute;
            top: 80px;
            background: var(--white);
            list-style: none;
            display: none;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .dropdown-menu li a {
            color: var(--dark-red);
            padding: 15px;
            text-decoration: none;
            display: block;
        }

        .dropdown-menu li a:hover { background: var(--yellow); }

        .dropdown:hover .dropdown-menu { display: block; }

        /* Contact Button */
        .contact-button {
            background-color: var(--bright-red);
            padding: 10px 20px;
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            border: 2px solid var(--white);
            font-weight: bold;
        }

        .contact-button:hover{
            background-color: #f6f200;
            color: #ae0404;
        }

        /* Mobile Responsive Area */
        @media screen and (max-width: 960px) {
            .nav-menu {
                
                display: flex;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: -1000px; /* Hide at top */
                left: 0;
                opacity: 0;
                transition: all 0.6s ease-in-out;
                background: rgb(94, 17, 4);
                height: auto;
                padding-bottom: 30px;
            }
              
            
            .nav-menu.active {
                top: 80px; /* Slide down to here */
                opacity: 1;
            }

            .menu-toggle {
                display: block;
                cursor: pointer;
                margin-top: 25px;
            }

            .bar {
                width: 25px;
                height: 3px;
                background: white;
                margin: 5px;
                display: block;
                transition: 0.3s;
            }
            
            /* Hamburger Animation to X */
            .is-active .bar:nth-child(2) { opacity: 0; }
            .is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }



          /* Mobile View (@media) ထဲမှာ ရှိရပါမယ် */
@media (max-width: 768px) {
    /* 1. Parent Element ကို Relative ထားရပါမယ် */
    .nav-item.dropdown { /* dropdown ပါတဲ့ menu item */
        position: relative;
    }

    /* 2. Dropdown Menu (the white box) ကို Absolute ထားပါ */
    .dropdown-menu { /* သင့် code ထဲက white box class နာမည် */
        position: absolute;
        top: 100%; /* Parent element ရဲ့ အောက်ခြေကနေ စရန် */
        left: 0;
        width: 100%; /* Parent menu item အကျယ်အတိုင်း ယူရန် (သို့မဟုတ်) ညှိရန် */
        z-index: 1000; /* အောက်က content တွေထက် အပေါ်ရောက်စေရန် (အရေးကြီးသည်) */
        background-color: white; /* boundary မမြင်ရတဲ့ bug အတွက် */
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Floating effect ပိုသိသာရန် */
        
        /* ဖွင့်မှ ပေါ်အောင် လုပ်ရန် default code */
        display: none; /* စဖွင့်တုန်းက မပြရန် */
    }

    /* JavaScript သို့မဟုတ် CSS `:hover`/`.show` class သုံးပြီး ပြတဲ့အခါ */
    .nav-item.dropdown.show .dropdown-menu {
        display: block; /* dropdown ဖွင့်တဲ့အခါ ပြရန် */
    }
}








        }

           /*This is nav bar for web * this is ended for nav bar/

           /* Hero Section Styles */

/* .hero {
    background-color: #f9f9f9; 
    padding: 100px 50px;
    min-height: 80vh;
    display: flex;
    align-items: center;
} */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: url('syntaxpic/circuit.jpg');
    background-size: cover;
    background-position: center;
    
    /* ဒီနေရာမှာ Opacity ကို စိတ်ကြိုက်လျှော့ပါ */
    opacity: 1; 
    
    z-index: -1; /* စာသားတွေရဲ့ အောက်ကို ပို့ထားတာပါ */
}


.hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {

    padding: 3rem 1rem;
    border-radius: 1rem;
    background-color: #8f1600;
    text-align: justify;
    font-size: 1rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
   
  
}

/* Button Styles */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
   
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-mail {

    background-color: #f7492b;
    color: white;
}

.btn-call {
     
    background-color: var(--yellow);
     background-color: #e22302;
    color: white;
}

.btn-map{

    background-color: orange;
      background-color: #9a1902;
    color: white;

}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    padding-right: 30px;
}

/* --- Mobile Responsive (Hero Section) --- */
@media screen and (max-width: 960px) {
    .hero {
        padding: 50px 20px;
        text-align: center;
       
    }

    .hero-container {
        flex-direction: column; /* ဖုန်းမှာ ပုံနဲ့ စာသား အပေါ်အောက် ပြောင်းမယ် */
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .hero-btns {
        flex-direction: column; /* ဖုန်းမှာ ခလုတ်တွေကို တစ်ခုချင်းစီ အပေါ်အောက်စီမယ် */
    }

    .hero-image {
        margin-top: 0px;
    }
}

/* Services Section Styles */
.services {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--bright-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--bright-red);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--dark-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    text-decoration: none;
    color: var(--bright-red);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    color: var(--dark-red);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/*This is student section */
.about-section {
    padding: 0px 20px;
    background-color: #fcfcfc;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text { flex: 1; }
.about-img { flex: 1; }

.about-img img {
    width: 100%;
    border-radius: 20px;
}

.sub-title {
    color: var(--bright-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-red);
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

/* Mobile Responsive */
@media screen and (max-width: 960px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr; /* ဖုန်းမှာ တစ်ခုချင်းစီစီမယ် */
    }}


    /*this is core value*/

    /* Core Values Section Styles */
.values-section {
    background-color: rgb(255, 236, 236); /* သင်အသုံးပြုထားတဲ့ နီညိုရောင် variable */
    padding: 50px 20px;
    text-align: center;
}

.values-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-light-gray {
    color: #6b0606; /* နောက်ခံရင့်ရင် စာသားကို ခဲဖျော့လေးသုံးတာ UI UX ပိုကောင်းပါတယ် */
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    padding: 30px;
    background: rgba(255, 255, 255); /* နောက်ခံအရောင်ပေါ်မှာ မှိန်မှိန်လေး ထပ်အုပ်ထားတာပါ */
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(50, 1, 1, 0.1);
}

.value-item:hover {
    background: rgba(158, 0, 0);
    color: white;
    transform: translateY(-10px);
}


.value-icon {
    font-size: 2.5rem;
    color: var(--yellow); /* အဝါရောင် အိုင်ကွန်လေးတွေက နီညိုရောင်ပေါ်မှာ အရမ်းပေါ်ပါတယ် */
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .values-header h2 {
        font-size: 1.8rem;
    }
    .values-section {
        padding: 60px 20px;
    }
}


/* Footer Styles */
.footer {
    background-color: #360202; /* အနက်ရောင်ရင့်ရင့် */
    color: #ffffff;
    padding: 80px 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--bright-red);
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Social Icons */
/* Social Links General Style */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* ပုံမှန်အချိန်မှာ မှိန်ထားမယ် */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Hover ဖြစ်တဲ့အခါ သက်ဆိုင်ရာ အရောင်များ ပြောင်းလဲခြင်း */
.social-links a.facebook:hover {
    background-color: #1877F2; /* Facebook Blue */
    transform: translateY(-5px);
}

.social-links a.tiktok:hover {
    background-color: #000000; /* TikTok Black */
    box-shadow: 2px 2px 0px #ff0050, -2px -2px 0px #00f2ea; /* TikTok Glow Effect */
    transform: translateY(-5px);
}

.social-links a.telegram:hover {
    background-color: #26A5E4; /* Telegram Blue */
    transform: translateY(-5px);
}

/* Footer Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #f4f4f4;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--bright-red);
    margin-top: 5px;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Bottom Copyright */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 20px;
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }
    .footer-grid {
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
  
}


/* --- Courses Page Specific Styles --- */

/* Inner Hero */
.inner-hero {
    background: linear-gradient(rgba(139, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('coursepic/classroom.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.inner-hero h1 { font-size: 3rem; margin-bottom: 10px; }

/* Course Section */
.courses-section { padding: 80px 20px; background-color: #f4f4f4; }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Course Card */
.course-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.course-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--dark-red);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.course-icon { font-size: 3rem; color: var(--bright-red); margin-bottom: 20px; }

.course-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #222; }

.course-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.course-info i { color: var(--bright-red); margin-right: 5px; }

.course-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.course-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.course-features li::before {
    content: "\f00c"; /* FontAwesome Checkmark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.btn-enroll {
    display: block;
    background: var(--dark-red);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-enroll:hover { background: var(--bright-red); }

/* Responsive */
@media (max-width: 768px) {
    .inner-hero h1 { font-size: 2.2rem; }
}








/* Shop Hero Styling */
.shop-hero {
    background: linear-gradient(rgba(44, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('showroompic/showroom\ wallpaper.jpg');
    background-size: cover;
    background-position: center;
}

/* Filter Buttons */
.shop-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--dark-red);
    background: transparent;
    color: var(--dark-red);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--dark-red);
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-img {
    height: 200px;
    position: relative;
    background: #f0f0f0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bright-red);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 25px;
    text-align: left;
}

.category {
    color: var(--bright-red);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #222;
}

.specs {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-row {
    margin-bottom: 20px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-red);
}

.btn-buy {
    display: block;
    background: #0084FF; /* Messenger Blue */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-buy:hover {
    background: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.btn-buy i {
    margin-right: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}










/* About Hero Custom Style */
.about-hero {
    background: linear-gradient(rgba(44, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('syntaxpic/aboutgroup.jpg');
    background-size: cover;
    background-position: center;
}

/* About Grid Layout */
.about-content { padding: 80px 20px; background: #fff; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-box { position: relative; }

.about-image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--yellow);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-red);
}

.experience-badge .text { font-size: 0.8rem; color: #333; font-weight: bold; }

/* Mission Vision Items */
.mission-vision { margin-top: 30px; }

.mv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
}

.mv-item i {
    font-size: 1.5rem;
    color: var(--bright-red);
    margin-top: 5px;
}

.mv-item h4 { margin-bottom: 5px; color: var(--dark-red); }

/* Skills Section */
.skills-section { padding: 80px 20px; background: var(--dark-red); color: white; }

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.skill-card i { font-size: 2.5rem; color: var(--yellow); margin-bottom: 15px; }

.skill-bar {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    margin-top: 15px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--yellow);
    border-radius: 5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .experience-badge { right: 0; bottom: -20px; padding: 15px; }
    .about-grid { gap: 40px; }
}



/* Contact Hero Custom */
.contact-hero {
    background: linear-gradient(rgba(44, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(syntaxpic/syntax.jpg);
    background-size: cover;
    background-position: center;
}

/* Layout Wrapper */
.contact-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0; /* Card နှစ်ခုကို ကပ်ထားရင် ပိုလှပါတယ် */
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Info Side (နီညိုရောင်) */
.contact-info-card {
    background-color: var(--dark-red);
    color: white;
    padding: 60px 40px;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.info-details {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--yellow);
    width: 40px;
}

.info-item span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.info-item p {
    font-size: 1.1rem;
    margin: 0;
}

/* Form Side (အဖြူရောင်) */
.contact-form-card {
    background-color: white;
    padding: 60px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--bright-red);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: var(--bright-red);
    transform: translateY(-3px);
}

/* Social Circles */
.social-circles {
    display: flex;
    gap: 15px;
}

.social-circles a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-circles a:hover {
    background: var(--yellow);
    color: var(--dark-red);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-card, .contact-form-card {
        padding: 40px 25px;
    }
}









































/* Coming Soon Section Styles */
.maintenance-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c0000 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 20px;
}

.maintenance-content h1 {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.maintenance-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.maintenance-content p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.6;
}

/* Gear Animation */
.gear-icons {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.gear-large {
    font-size: 5rem;
    color: var(--bright-red);
    animation: rotateGear 4s linear infinite;
}

.tools-icon {
    font-size: 2rem;
    color: var(--yellow);
    position: absolute;
    bottom: -10px;
    right: -10px;
}

@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Style */
.btn-home {
    display: inline-block;
    padding: 15px 30px;
    background: var(--bright-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-home:hover {
    background: var(--yellow);
    color: var(--dark-red);
    transform: scale(1.05);
}

.mini-social {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.mini-social span {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-content h1 { font-size: 2.5rem; }
    .maintenance-content h2 { font-size: 1.4rem; }
}











/* Instructors Section Styles */
.instructors-section {
    padding: 80px 0;
    background-color: #fefefe;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-red);
    margin-bottom: 15px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.instructor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.instructor-card:hover {
    transform: translateY(-10px);
}

.instructor-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover လုပ်ရင် ပုံကို အနည်းငယ် ကြီးလာစေရန် */
.instructor-card:hover .instructor-img img {
    transform: scale(1.1);
}

/* Social Overlay Effect */
.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 0, 0, 0.7); /* Dark Red Overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.instructor-card:hover .social-overlay {
    opacity: 1;
}

.social-overlay a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-overlay a:hover {
    color: var(--yellow);
}

.instructor-info {
    padding: 25px;
}

.instructor-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.designation {
    display: block;
    color: var(--bright-red);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.instructor-info p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}
.instructor-grid{
    padding: 1.5rem;
}
/* Mobile View */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .instructor-img { height: 350px; }
}