
        
  body {
    font-family: "Noto Serif Myanmar", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--dark);
    background-color: #ffffff; /* ဒီနေရာမှာ အဖြူရောင် ပြောင်းလိုက်ပါပြီ */
    overflow-x: hidden;
}


 :root {
            --primary: #131414;
            --secondary: #6f8497;
            --accent: #ffc107;
            --light: #f8f9fa;
            --dark: #333;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
     

/* Headings & Logo */  
h1, .it-seekers, footer h3 {
    font-family: 'A Grazing Mace', sans-serif;
}

        
        /* Header Styles */
        header {
            background: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 2.5rem;
            margin-right: 10px;
            color: var(--accent);
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        nav ul {
            list-style: none;
            padding: 3;
            display: flex;
        }

        nav ul li {
            margin: 0 5px;
        }

        nav ul li a {
            text-decoration: brown;
            color: #b81616;
        }
        

        
       
     /* Slider Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

/* ================= Carousel ================= */
.carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #000; 
}

.carousel .list {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.carousel .item {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
}

/* Slide Content */
.carousel .content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 800px;
    z-index: 2;
}

.content .title {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    display: inline-block; 
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s forwards;
}

.content .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%; /*  */
    height: 3px;
    background-color: #ff5e57;
}

/* ခေါင်းစဉ်ကြီး (ဥပမာ- Every Youth Deserves...) */
.content .name {
    font-size: 55px; 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s forwards;
}

.content .des {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s forwards;
}

/* Button Styling */
.content .btn {
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s forwards;
}

.content .btn button {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 25px; 
    cursor: pointer;
    background: #ff5e57; 
    color: #fff;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.content .btn button:hover {
    background: #e04d47;
    transform: scale(1.05);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Slider arrows -  */
.arrows {
    position: absolute;
    bottom: 50px; /* */
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.arrows button:hover {
    background: #fff;
    color: #000;
}

/* Time running bar */
.carousel .timeRunning {
    position: absolute;
    bottom: 0; /* */
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #ff5e57;
    z-index: 1000;
    animation: runningTime 5s linear infinite;
}

@keyframes runningTime {
    from { width: 0%; }
    to { width: 100%; }
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .content .name { font-size: 40px; }
    .content .des { font-size: 14px; }
    .content { left: 5%; }
}

@media (max-width: 600px) {
    .content .title { font-size: 14px; }
    .content .name { font-size: 28px; }
    .content .des { font-size: 12px; }
    .arrows { right: 20px; bottom: 30px; }
}




        
        /* Mission Section */
        .mission {
            padding: 60px 0;
            background: white;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            align-items: center;
        }
        
        .mission-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 20px rgba(0,0,0,0.1);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .mission-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .mission-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100px;
            height: 4px;
            background: var(--accent);
        }
        
        .mission-content p {
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: var(--gray);
            line-height: 1.8;
        }
    
        
        /* Programs Section */
        .programs {
            padding: 10px 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 0px;
            font-size: 1.1rem;
            color: var(--primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            text-align: center;
            padding: 40px 30px;
            border-top: 4px solid var(--accent);
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(132, 132, 139, 0.932);
        }
        
        .program-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .program-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
/* Partners Section */
.partners {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner {
  flex: 0 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.partner img:hover {
  transform: scale(1.1);
}




        .stats__list {
  padding: 2rem 1rem;
  background-color: #09041b94;
  text-align: center;
}




.stats__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}

.stats__list i {
  font-size: 2.5rem;
  color: #f3f9ff;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
}

/* Optional: Centering helper if needed */
.f-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

        /* Gallery Section */
        .gallery {
            padding: 50px 0;
            background: white;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 87, 153, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Testimonials */
       
        
        .projects {
    padding: 50px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    padding: 8px 15px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.project-link:hover {
    background: #004d99;
}


 
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--light);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            min-width: 30px;
        }
        
        .contact-text h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
       footer {
  background: #1e1e1e;
  color: #fff;
  padding: 50px 0 20px;
  font-family: 'Noto Sans Myanmar', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ffc107; /* accent */
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffc107;
}

footer input[type="email"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
}

footer .btn {
  background: #ffc107;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

footer .btn:hover {
  background: #e0a800;
}

footer .copyright {
  text-align: center;
  border-top: 1px solid #100766;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #fff3f3;
}

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .slider-container {
                height: 70vh;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .slide-content p {
                font-size: 1.2rem;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .mission-grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-container {
                height: 60vh;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        
       

        
        /* Header Styles */
        header {
            background: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 2.5rem;
            margin-right: 10px;
            color: var(--accent);
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
        }
        /* Navigation Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Menu */
.nav-links > li {
    position: relative; /*  */
    display: flex;
    align-items: center;
}


.nav-links > li > a {
    text-decoration: none;
    color: #b22222; 
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s;
    display: block;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background-color: #482b81;
    color: #fff !important;
    border-radius: 4px;
}

.dropdown {
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #868594;
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-top: 3px solid #482b81;
    z-index: 999;
    display: none; 
}

.nav-links li:hover .dropdown {
    display: block;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    color: #333 !important;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 13px;
    background: none !important; 
    box-shadow: none !important;
}

.dropdown li a:hover {
    background-color: #f5f5f5 !important;
    color: #ff5e57 !important;
    padding-left: 25px; 

}
        /* Slider Styles */
        .slider-container {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .slide-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
            color: white;
        }
        
        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }
        
        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            animation: fadeInUp 1.2s ease;
        }
        
        /* Slider Controls */
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            margin: 0 20px;
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .dot.active {
            background: var(--accent);
        }
        
        /* Mission Section */
        .mission {
            padding: 60px 0;
            background: white;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            align-items: center;
        }
        

.about-section {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image Styling */
.about-image {
    flex: 1;
    min-width: 400px;
    position: relative;
}

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

.image-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #482b81; /* Logo Purple */
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(72, 43, 129, 0.3);
}

/* Content Styling */
.about-content {
    flex: 1;
    min-width: 400px;
}

.sub-title {
    color: #ff5e57;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 40px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 25px;
}

.main-title span {
    color: #482b81; /* Highlight logo color */
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Button Styling */
.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffb400; /* ပုံထဲကလို ဝါဝါလေး ဒါမှမဟုတ် အနီရောင် ပြောင်းနိုင်ပါတယ် */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

.about-btn:hover {
    background-color: #e6a100;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .about-image, .about-content {
        min-width: 100%;
    }
    .main-title {
        font-size: 30px;
    }
}




.features-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Background အနုလေး */
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card Styling */
.feature-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    min-width: 300px;
}

/* Mouse တင်ရင် ကြွတက်လာမယ့် Effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Icon Box (Optional) */
.icon-box {
    font-size: 40px;
    color: #482b81;
    margin-bottom: 20px;
}

/* Button Styling (အဝါရောင်) */
.feature-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffb400; /* ပုံထဲက အဝါရောင် */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.feature-btn:hover {
    background-color: #e6a100;
    box-shadow: 0 8px 15px rgba(255, 180, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .features-wrapper {
        justify-content: center;
    }
    .feature-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
}


.services-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

/* Header Layout */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
}

.section-title {
    flex: 1;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.section-title span {
    color: #482b81; /* Logo Purple */
}

.section-top-des {
    flex: 1;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Cards Wrapper */
.service-cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Single Card Styling */
.service-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    min-width: 300px;
    padding: 15px; /* ကတ်ရဲ့ အနားသတ်ကနေ ပုံကို နည်းနည်းခြားထားတယ် */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-info {
    padding: 25px 10px;
    text-align: center;
}

.card-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
    }

}

        /* Full Width Posts */
.training-full {
  padding: 60px 20px;
  background: #f9f9f9;
}

.training-full h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e5799;
}

.activities {
  padding: 60px 20px;
  background: #f9f9f9;
}

.activities h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e5799;
}

.post-full {
  margin-bottom: 60px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-full h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #333;
}

.post-full img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.post-full p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.post-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



        
        /* Programs Section */
        .programs {
            padding: 10px 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 0px;
            font-size: 1.1rem;
            color: var(--primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            text-align: center;
            padding: 40px 30px;
            border-top: 4px solid var(--accent);
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(132, 132, 139, 0.932);
        }
        
        .program-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .program-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
/* Partners Section */
.partners {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner {
  flex: 0 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.partner img:hover {
  transform: scale(1.1);
}


        .stats__list {
  padding: 2rem 1rem;
  background-color: #09041b94;
  text-align: center;
}




.stats__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}

.stats__list i {
  font-size: 2.5rem;
  color: #f3f9ff;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
}

/* Optional: Centering helper if needed */
.f-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

        /* Gallery Section */
        .gallery {
            padding: 50px 0;
            background: white;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 87, 153, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Testimonials */

       .testimonials {
  padding: 80px 0;
  background: #fc841d; /* light background for contrast */
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1b0a0a;
}

             /* About Page Hero */
.about-hero {
  background: url("img/about-bg.jpg") no-repeat center/cover;
  color;
  text-align: center;
  padding: 50px 20px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Section (Mission & Vision) */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-card h2 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.about-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* History Section */
.history {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.history h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.history p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Team Section */
.team {
  padding: 60px 20px;
  background: #f9f9f9;
}

.team h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--primary);
}

.team-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.team-member p {
  color: var(--gray);
  font-size: 1rem;
}
        .projects {
    padding: 50px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    padding: 8px 15px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: backgroud  0.3s ease;
}

.project-link:hover {
    background: #004d99;
}


 
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--light);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            min-width: 30px;
        }
        
        .contact-text h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 30px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #ddd;
        }
        
        .footer-links li {
            list-style: none;
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .slider-container {
                height: 70vh;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .slide-content p {
                font-size: 1.2rem;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .mission-grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-container {
                height: 60vh;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }


.tab-menu {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  cursor: pointer;
  flex-wrap: wrap;
}
.tab-menu li {
  padding: 8px 16px;
  background: #eee;
  border-radius: 20px;
  transition: 0.3s;
}
.tab-menu li.active {
  background: #0073aa;
  color: #fff;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.card img {
  width: 100%;
  height: 350;       /*  */
  border-radius: 10px;
  display: block;     /* 
  margin: 0 auto;     /*  */
}


.card h3 { margin: 12px 0; }
.card p { font-size: 14px; color: #555; }
.card .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0073aa;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.card .btn:hover { background: #005f88; }

/* ------------------- CTA Section ------------------- */
.cta-section {
    position: relative;
    background-image: url('assets/images/002pdp.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 87, 153, 0.6);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #1e5793;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #ffdd57;
    color: #1e5793;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero {
  background: linear-gradient(rgba(10,15,40,0.85), rgba(10,15,40,0.85)),
              url('img/hero.jpg') center/cover no-repeat;
  min-height: 50vh;              /* အမြင့်လျှော့ */
  display: flex;
  align-items: center;           /* Vertical center */
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;               /* အပေါ် padding မလို */
}

.hero-content {
  max-width: 850px;
  margin: auto;
}

.hero-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffca28;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-text {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-buttons {
  margin-bottom: 20px;
}

.btn {
  padding: 10px 18px;
  margin: 5px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary { background:#f9a825; color:#fff; }
.btn-primary:hover { background:#f57f17; }

.btn-outline { border:2px solid #fff; color:#fff; }
.btn-outline:hover { background:#fff; color:#111; }

.btn-accent { background:#e53935; color:#fff; }
.btn-accent:hover { background:#b71c1c; }

.hero-stats {
  font-size: 14px;
  opacity: 0.9;
}

.hero-stats span {
  margin: 0 10px;
}

/* 📱 Mobile */
@media (max-width:768px){
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 24px; }
  .hero-text { font-size: 14px; }
  .hero-stats span { display:block; margin:5px 0; }
}
/* Training Page Styles */
.training-hero {
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.training-schedule table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.training-schedule th {
    background: #482b81;
    color: #fff;
    padding: 20px;
}

.training-schedule td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-open { background: #e8f5e9; color: #2e7d32; }
.status-next { background: #f5f5f5; color: #616161; }

.btn-enroll {
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}
