 :root {
            --primary: #2c5c7f;
            --secondary: #d4a017;
            --light: #ffffff;
            --dark: #1a7de0;
            --accent: #3a8bbb;
            
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
  html, body {
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.10;
  color: #333;
}
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        
       /* Logo Container */
.logo {
  display: flex;
  align-items: center;
}

/* Logo Image */
.logo-img img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: 15px; /* image နဲ့ text spacing */
}

/* Logo Text */
.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--secondary);
}

/* Navigation */


/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  background: #000;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
}

/*  news */

/*      news */

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

        
        .language-switcher {
            margin-left: 20px;
        }
        
        .lang-btn {
            background: none;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .lang-btn:hover {
            background-color: var(--primary);
            color: white;
        }
        /* Header Image Slider */

      
  /*    Language bar */
  

        .header-slider .slide-content p {
  font-size: 2.rem;
  color: #f5f5f5;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 20px;
  border-radius: 8px;
  max-width: 800px;
  margin: 10px 0 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

         .header-slider {
      position: relative;
      height: 80vh;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: none;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      color: white;
      max-width: 800px;
      padding: 20px;
    }

    .slide-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
      animation: fadeInDown 1s ease;
    }

    .slide-content p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      font-weight: 300;
      animation: fadeInUp 1s ease;
    }

    .slider-nav {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .slider-dot.active {
      background-color: white;
    }

    .slider-arrows {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 10;
      transform: translateY(-50%);
    }

    .arrow {
      background-color: rgba(255, 255, 255, 0.3);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .arrow:hover {
      background-color: rgba(255, 255, 255, 0.7);
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
       
        /* Sections */
        section {
            padding: 50px 0;
        
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }
        
      
       /* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #1a5fb4;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #ff5722;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-gallery img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

.about-banner {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/ab.png');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-banner h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}



.service-banner {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/Service.png');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.service-banner h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}


.main-service-title {
  font-size: 36px;
  color: #0c2d57; /* navy tone */
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  margin-bottom: 20px;
}

.main-service-title span {
  display: block;
  color: #198754; /* bootstrap green */
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.training-banner {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/se3-scaled.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.training-banner h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}

.slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 20px;
justify-content: center; /*  */
}
    .slider {
      display: flex;
      transition: transform 0.5s ease;
      cursor: pointer;
      justify-content: center; /*  */
}
  

    .slider img {
      width: 200px;
      height: auto;
      margin-right: 20px;
      flex-shrink: 0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .curriculum-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  display: inline-flexbox;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #007BFF, #00C6FF);
  border-image-slice: 1;
  padding-bottom: 8px;
  margin: 10px auto;
}



  .training-description {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: left; /* OR center, depending on design */
  padding: 20px;
  background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(26, 95, 180, 0.9)),
  
}



.gallery-banner {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/slide3.png');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.gallery-banner h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}


 .training-description {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: left; /* OR center, depending on design */
  padding: 20px;
  background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(26, 95, 180, 0.9)),
  
}
 h1 {
      margin: 0;
      font-size: 2rem;
       text-align: center;
    }



    .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-container img {
  width: 100%;
  height: 200px; /*
  object-fit: cover; /*  */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

  
.gallery-container {
  display: grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;

      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery-grid img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
    }

    /* Lightbox Style */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    .lightbox:target {
      display: flex;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

  .contact-banner {
  background: 
    linear-gradient(rgba(15, 2, 46, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/contact.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-banner h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}

  .training-description {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: left; /* OR center, depending on design */
  padding: 20px;
  background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(26, 95, 180, 0.9)),
  
}
 

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }
    

    .contact-form, .contact-info {
      flex: 1 1 45%;
    }

    .contact-form h3, .contact-info h3 {
      margin-bottom: 20px;
      color: #1a5fb4;
    }

    .contact-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

    .contact-form form input,
    .contact-form form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: 'Noto Sans Myanmar', sans-serif;
    }

    .contact-form form button {
      background-color: #1a5fb4;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
    }

    .contact-info p {
      margin: 10px 0;
    }

    .contact-info i {
      color: #1a5fb4;
      margin-right: 10px;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
    }


/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}


    .btn-inline {
    display: inline-block;
    color: #fff;
    background-color: #1a5fb4;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-inline:hover {
    background-color: #0d47a1;
}
 


.focus-section {
  background-color: #e3e8ee;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-header p {
  color: #2c3e50;
  font-size: 16px;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-header p::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #e74c3c;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}

.section-header h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: bold;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.card-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.card-title.blue {
  color: #2c3e50;
}

.card-title.red {
  color: #e74c3c;
}

.underline {
  width: 50px;
  height: 3px;
  margin: 0 auto 20px auto;
}

.underline.red {
  background-color: #e74c3c;
}

.card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

    /* Floating Social Icons */
        .social-icons-left {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .social-icons-left a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgb(255, 255, 255);
            color: var(--primary);
            text-decoration: none;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
 
    
      
        
    
        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--light);
            padding: 5px 0;
            margin-bottom: 5px;
        }

        .breadcrumb-container {
            display: flex;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 10px;
            color: var(--gray);
        }

        /* About Content */
      
          .about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
  text-align: justify;
}


        .about-section {
            padding: 10px 0;
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }


    /*  CEO*/
    .message-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}



        /* Mission & Vision */
        .mission-vision {
            background-color: var(--light);
            padding: 10px 0;
        }

        .mv-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .mv-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        .mv-card.vision {
            border-top-color: var(--secondary);
        }

        .mv-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .vision i {
            color: var(--secondary);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .vision h3 {
            color: var(--secondary);
        }

        .mv-card p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .stat-card {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Values Section */
        .values {
            padding: 80px 0;
        }

        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .value-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .value-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }



.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.slider-wrapper .slide {
  display: none;
  width: 100%;
}

.slider-wrapper .slide.active {
  display: block;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-controls button {
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 5px 12px;
  cursor: pointer;
}

        /* Socaial Section */
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--light-gray);
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            color: rgb(121, 23, 23);

          }
     /*   Course*/

    h2 {
      text-align: center;
      color: #a094d4;
    }
    /* Section title */
.section-title h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Subtitle */
.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin: 10px 0 20px;
  text-align: center;
}

/* Book section */
.book-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Book images */
.book-section img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Book content */
.book-content {
  max-width: 500px;
  flex: 1;
}

.book-content h3 {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #1a1a1a;
}

.book-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.book-content ul li {
  margin-bottom: 6px;
  color: #333;
}

/* Highlight */
.highlight {
  color: #d32f2f;
  font-weight: bold;
}

/* Old Questions Box */
.old-questions {
  background-color: #f9f9f9;
  padding: 10px 15px;
  border-left: 4px solid #007BFF;
  font-weight: 600;
  color: #007BFF;
  margin-top: 15px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .book-section {
    flex-direction: column;
    align-items: center;
  }

  .book-section img {
    width: 80%;
  }

  .book-content {
    width: 100%;
    padding: 0 10px;
  }
}

    /*  Gallery */



        /* Timeline */
        .timeline {
            padding: 80px 0;
        }

        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .left {
            left: 0;
        }

        .right {
            left: 50%;
        }

        .left::after {
            right: -10px;
        }

        .right::after {
            left: -10px;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /*   future */

.badge-box {
  background-color: #e63946;
  color: #fff;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}



        /* Call to Action */
        .cta-section {
            padding: 50px 0;
            background : 
            linear-gradient(rgba(26, 95, 180, 0.9), rgba(26, 95, 180, 0.9)), url('https://manawayeyargl.com/wp-content/uploads/2024/10/010-1-scaled.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: var(--primary);
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            border: 2px solid white;
            margin: 0 10px;
        }

        .cta-button:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-3px);
        }

        .cta-button.outline {
            background-color: transparent;
            color: white;
        }

        .cta-button.outline:hover {
            background-color: white;
            color: var(--primary);
        }

       footer {
    background-color: #222;
    color: white;
    padding: 10px 0 10px; /* ↓ from 70px 0 0 */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* optional tweak */
    gap: 25px; /* ↓ from 40px */
    margin-bottom: 10px; /* ↓ from 50px */
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 15px; /* ↓ from 25px */
    padding-bottom: 5px; /* ↓ from 10px */
}

.footer-column p {
    margin-bottom: 12px; /* ↓ from 20px */
    opacity: 0.8;
    font-size: 14px; /* optional */
}

.footer-column ul li {
    margin-bottom: 8px; /* ↓ from 12px */
}

.social-links-footer a {
    width: 32px; /* ↓ from 40px */
    height: 32px;
    font-size: 14px;
}

.copyright {
    padding: 12px 0; /* ↓ from 20px */
    font-size: 0.8rem;
}

        /* Responsive Design */

@media (max-width: 768px) {
  .header-container,
  .about-content,
  .programs-grid,
  .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  .slider-content h1 {
    font-size: 1.5rem;
  }
}


        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            nav ul {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .header-container {
                flex-direction: column;
                align-items: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav {
                margin: 15px 0;
            }
            
            .language-switcher {
                margin-top: 15px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .timeline-container::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 21px;
            }

            .right {
                left: 0;
            }

            .social-icons-left {
                display: none;
            }

            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .cta-button {
                margin: 5px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
        }
        /* Programs Section */
        .service-card {
            background-color: #f0f5f9;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
        }
        
        .program-image {
            height: 80px;
            background-color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .program-content {
            padding: 25px;
        }
        
        .program-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f9fb;
  font-family: 'Segoe UI', sans-serif;
}

.services-header p {
  font-size: 14px;
  color: #555;
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
}

.services-header p::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #e74c3c;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #1f2c5c;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-card h3 {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2c5c;
}


.activities-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.activities-header {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.activities-header p {
  color: #2c3e50;
  font-size: 14px;
  margin: 0;
  position: relative;
  display: inline-block;
}

.activities-header p::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #e74c3c;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.activities-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.view-all-btn {
  position: absolute;
  right: 20px;
  top: 0;
  background-color: #ff5f5f;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.activity-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.activity-card:hover img {
  transform: scale(1.05);
}

.activity-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}


         /* project Section */
        .projects {
  background: linear-gradient(to right, #f8fafc, #eef2f7);
  padding: 80px 20px;
}

.projects .section-title h2 {
  text-align: center;
  color: #2c5c7f;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.project-date p {
  font-weight: bold;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a2e40;
}

.project-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-button {
  padding: 10px 18px;
  font-size: 0.95rem;
  background-color: #2c5c7f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #3a8bbb;
}

    
.scroll-banner {
  height: 200px; /* image height */
}

.scroll-content img {
  height: 100%; /* image will follow the height of scroll-banner */
  margin-right: 0px;
}

       .scroll-banner {
  width: 100%;
  overflow: hidden;

  height: 300px; /* Image height */
  position: relative;
}

.scroll-content {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scroll-content img {
  height: 100%;
  margin-right: px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.updates-events {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.updates-events h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.updates-events .subtext {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.event-card {
  background-color: white;
  border-left: 5px solid #4CAF50;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
  border-radius: 8px;
}

.services-section {
  padding: 60px 20px;
  background-color: #f4f9fb;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #0a558c;
  margin-bottom: 10px;
}

.service-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

        /* Footer */
        .social-links a {
    color: #17032e;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

footer {
    background-color: #222;
    color: white;
    padding: 10px 0 10px; /* ↓ ထပ်နည်း */
}

footer p, footer li {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: #aaa;
}

        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .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-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 5px 0;
            }
            
            nav {
                margin: 20px 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 15px;
            }
            
            .header-slider {
                height: 70vh;
            }
            
            .slide-content h1 {
                font-size: 2.2rem;
            }
            
            .slide-content p {
                font-size: 1.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .slider-arrows {
                display: none;
            }
        }
        
      
    
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 1px 5px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 300;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--secondary);
            animation: pulse 2s infinite;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            animation: none;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(212, 160, 23, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
        }
          
    
  /* Blog Page Styles */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.post-thumbnail {
    flex: 0 0 300px;
    margin-right: 30px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-content {
    flex: 1;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.post-meta span {
    margin-right: 15px;
}

.post-excerpt {
    margin: 15px 0;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 5px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.blog-pagination a:hover {
    background: #f5f5f5;
}

.blog-pagination .current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* MM fonts */
.single-post .entry-content {
    word-break: break-word;
    hyphens: auto;
    text-rendering: optimizeLegibility;
}

/* MM font */
@font-face {
    font-family: 'Pyidaungsu';
    src: local('Pyidaungsu'), local('Myanmar3');
}