 :root {
            --primary: #1e5799;
            --secondary: #207cca;
            --accent: #ffc107;
            --light: #f8f9fa;
            --dark: #333;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       body {

    font-family: "Noto Serif Myanmar", serif;
    font-weight: 400;
  font-style: normal;
    line-height: 1.5;
    color: var(--dark);
    background-color: rgb(29, 29, 80);
    overflow-x: hidden;
}


 :root {
            --primary: #1e5799;
            --secondary: #207cca;
            --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;
        }
        

        
        .btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            font-size: 1.1rem;
            cursor: pointer;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        /* 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;
        }
        
        .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;
            }
        }

        
        /* About Page Hero */
.about-hero {
  background: url("img/about-bg.jpg") no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 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;
}


        
        /* 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;
        }
        

        
        .btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            font-size: 1.1rem;
            cursor: pointer;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        /* 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;
        }
        
        .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;
        }
    
        /* 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;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
}

             /* About Page Hero */
.about-hero {
  background: url("img/about-bg.jpg") no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 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; }