:root {
    --primary: #1a1c76fb;
    --secondary: #d4ac0d;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    
}

/* Header Styles - Clean and Consistent */
header {
    background: linear-gradient(135deg, var(--primary), #154360);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: var(--secondary);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.motto {
    font-style: italic;
    text-align: center;
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    border-radius: 4px;
}

/* Navigation - Simplified and Smooth */
nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0.5rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-links .active {
    color: var(--primary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Simplified Navigation Positioning */
.header-hidden {
    transform: translateY(-100%);
}

.header-visible {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: url('school-building.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    background-image: url(images/assembly.jpg);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: rgb(43, 74, 187);
    max-width: 600px;  
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 450;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
/* Enhanced Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-radius: 0;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide.next {
    transform: translateX(100%) scale(1);
}

.slide.prev {
    transform: translateX(-100%) scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 0;
    transition: background 0.3s ease;
}

.slide:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
    animation: slideInContent 0.8s ease-out;
}

@keyframes slideInContent {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-control:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

.slider-control i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.slider-control:hover i {
    transform: scale(1.1);
}

/* Enhanced Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact p{
        display: none;
    }
    .hero-slider {
        height: 50vh;
    }
    
    .hero-content {
        text-align: center;
        /* padding: 10px 20px; */
    }
    
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
}
.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* News Section */
.news {
    padding: 5rem 0;
    background-color: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    background-color: white;
}

.news-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.news-excerpt {
    margin-bottom: 1rem;
    color: #555;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary), #154360);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Add this to the header styles */
header {
    background: linear-gradient(135deg, var(--primary), #154360);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Update the navigation styles */
nav {
    /* background-color: white; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px; /* Adjust based on your header height */
    z-index: 999;
}

/* Update the mobile menu styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.0rem;
    color: var(--primary);
    cursor: pointer;
    /* padding: 0.5rem; */
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.4s ease;
}

/* Update the mobile responsive styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        /* background: white; */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding-top: 2rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 1rem;
    }
    
    /* Adjust header for mobile */
    header {
        padding: 0.5rem 0;
    }
    
    /* Adjust nav position for mobile */
    nav {
        top: 70px; /* Smaller header height on mobile */
    }
}
/* Update the nav-toggle styles */
.nav-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    z-index: 1001;
    /* height: 100%; */
}
/* Header Animation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

header.hide {
    transform: translateY(-100%);
}

/* Adjust the main content to account for fixed header */
body {
    padding-top: 120px; /* Adjust this based on your header height */
}

/* For mobile */
@media (max-width: 768px) {
    body {
        padding-top: 90px; /* Smaller header height on mobile */
    }
}
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Update mobile menu styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block; /* Show on mobile */
    }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
    }

    .nav-links.active {
        display: flex; /* Show the menu when active */
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        /* background: white; */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding-top: 2rem;
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex; /* Show when active */
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 1rem;
        width: 100%;
    }
}

/* Update mobile menu styles */
@media (max-width: 768px) {

    .nav-toggle {
        display: block; /* Show on mobile */
    }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        /* background: white; */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding-top: 2rem;
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex; /* Show when active */
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 1rem;
        width: 100%;
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        height: 80px;
    }
    .contact{
        display:flex;
        justify-content: space-between;

    }
    .contact p{
        margin-left: 20px;
    }
    .about-image img{
        width: 100%;
        /* height: 450px; */
    }
    .logo {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        /* background-color: white; */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-outline {
        margin-left: 0;
    }
     .nav-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.4s ease;
        margin-top: 37px;
    }
    
    nav ul.active {
        left: 0;
    }
    nav li{
        margin-left: 89px;
    }
   
}

@media (max-width: 576px) {
    .logo-text h1{
        font-size: 20px;
    }
    .hero {
        height: 60vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        /* background-color: white; */
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin-bottom: 1rem;
    }
    
    .nav-links a {
        padding: 0.8rem;
        border-radius: 4px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    /* Overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Mobile Slider - MMU Inspired */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh; /* Shorter height for mobile */
        margin-top: 60px; /* Account for fixed header */
    }

    .slide {
        background-position: center 30%; /* Adjust image focus */
    }

    .hero-content {
        text-align: center;
        padding: 10px 10px;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.305); /* Semi-transparent overlay */
        border-radius: 2px;
        margin: 0 auto;
        width: 90%;
    }

    .hero-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem;
        color: white !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
        color: white !important;
        display: none; /* Hide description on mobile (like MMU) */
    }

    .btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .btn, .btn-outline {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-outline {
        border-color: var(--secondary);
        color: var(--secondary);
    }

    .btn-outline:hover {
        background: var(--secondary);
        color: white;
    }

    /* Slider Controls - Smaller & Centered */
    .slider-control {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.3);
    }

    .slider-control i {
        font-size: 1.2rem;
    }

    /* Slider Indicators - Bottom Center */
    .slider-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.7);
    }

    .indicator.active {
        background: var(--secondary);
    }
}

/* Extra Small Devices (e.g., iPhone SE) */
@media (max-width: 480px) {
    .hero-slider {
        height: 45vh;
    }

    .hero-content h2 {
        font-size: 1.3rem !important;
    }

    .btn-group {
        flex-direction: column;
        gap: 8px;
    }

    .btn, .btn-outline {
        width: 100%;
    }
}




/* Clean Header and Body Styles - No Duplicates */



/* Founder's Message Section */
.founder-message {
    padding: 5rem 0;
    background-color: var(--light);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image img {
    width: 450px;
    border-radius: 20px;
    justify-self: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-text blockquote {
    font-size: 1.2rem;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-text cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
}

/* Progress Section */
.progress {
    padding: 5rem 0;
    background-color: white;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.progress-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.progress-card:hover {
    transform: translateY(-5px);
}

.progress-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.progress-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 1rem;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .founder-image {
        order: -1;
    }
    
    .progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .progress-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Navigation Toggle Button */
    .nav-toggle {
        display: block;
        background: var(--primary);
        color: white;
        border: none;
        /* border-radius: 4px; */
        padding:0 1rem 0 1rem;
        margin-right: 1rem;
        margin-top: 6rem;
        height: 50px;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: var(--secondary);
        transform: scale(1.05);
    }

    .nav-toggle i {
        font-size: 2rem;
        margin-top: 8px;
    }

    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-links a {
        padding: 1rem;
        border-radius: 6px;
        font-size: 1.1rem;
        color: var(--dark);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .nav-links a:hover {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
        transform: translateX(5px);
    }

    .nav-links a.active {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary);
        font-weight: 600;
        border-left: 4px solid var(--secondary);
    }

    .nav-links a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    /* Add icons to mobile menu items */
    .nav-links li:nth-child(1) a::before { content: '\f015'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(2) a::before { content: '\f19c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(3) a::before { content: '\f501'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(4) a::before { content: '\f234'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(5) a::before { content: '\f1ad'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(6) a::before { content: '\f1ea'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(7) a::before { content: '\f03e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }
    .nav-links li:nth-child(8) a::before { content: '\f2a0'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-right: 10px; }

    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Founder's Message Section */
.founder-message {
    padding: 5rem 0;
    background-color: var(--light);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
}

.founder-image img {
    max-width: 100%;
    width: auto;
    border-radius: 20px;
    justify-self: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-text blockquote {
    font-size: 1.2rem;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-text cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
}

/* Responsive Styles for Founder Section */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .founder-image {
        order: -1;
    }

    .founder-image img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

/* ==========================================
   Google Translate Styles
   ========================================== */

/* --- Desktop Dropdown --- */
#google_translate_element {
    vertical-align: middle;
    margin-left: 1rem;
}

.goog-te-combo {
    background-color: white;
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.goog-te-combo:hover {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(26, 28, 118, 0.2);
}

/* --- Mobile Floating Button --- */
.mobile-translate-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
}

.mobile-translate-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.mobile-translate-btn i {
    font-size: 22px;
}

/* --- General & Responsive Styles --- */
.goog-te-gadget {
    color: transparent !important; /* Hides "Powered by" text */
}

.goog-te-gadget .goog-te-combo {
    margin: 0;
}

.goog-te-menu-frame {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
    z-index: 2000 !important; /* Ensure it's on top */
}

.goog-te-menu2-item div, .goog-te-menu2-item:link div, .goog-te-menu2-item:visited div, .goog-te-menu2-item:active div {
    padding: 10px 15px !important;
    font-size: 14px !important;
}

/* --- Hide Google Branding --- */
.goog-logo-link, .goog-te-banner-frame {
    display: none !important;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    /* Hide desktop dropdown on mobile */
    .desktop-translate {
        display: none !important;
    }

    /* Show mobile button */
    .mobile-translate-btn {
        display: flex;
    }

    /* Mobile Translate Popup */
    .mobile-translate-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1002;
        min-width: 280px;
        max-width: 90vw;
        border: 1px solid #e0e0e0;
    }

    .mobile-translate-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        background: var(--primary);
        color: white;
        border-radius: 12px 12px 0 0;
        font-weight: 600;
    }

    .mobile-translate-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .mobile-translate-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-translate-popup #mobile_google_translate_element {
        padding: 20px;
    }

    .mobile-translate-popup .goog-te-combo {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
        border: 2px solid #ddd !important;
        border-radius: 6px !important;
        background: white !important;
        color: var(--dark) !important;
        cursor: pointer !important;
    }

    .mobile-translate-popup .goog-te-combo:focus {
        border-color: var(--primary) !important;
        outline: none !important;
        box-shadow: 0 0 5px rgba(26, 28, 118, 0.3) !important;
    }

    .mobile-translate-popup .goog-te-gadget {
        font-family: inherit !important;
    }

    .mobile-translate-popup .goog-te-gadget .goog-te-combo {
        margin: 0 !important;
    }

    /* Mobile Translate Overlay */
    .mobile-translate-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
}

/* Manual Language Selector Styling */
.manual-language-selector {
    background-color: white;
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.manual-language-selector:hover {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(26, 28, 118, 0.2);
}

.manual-language-selector:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 5px rgba(26, 28, 118, 0.3);
}

/* Desktop Navigation Bar */
.desktop-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.desktop-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.desktop-nav-links li {
    margin: 0;
}

.desktop-nav-links a {
    display: block;
    padding: 20px 30px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-nav-links a:hover {
    color: var(--primary);
    background-color: rgba(26, 28, 118, 0.05);
}

.desktop-nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.desktop-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Desktop Google Translate - Always visible on larger screens */
@media (min-width: 769px) {
    .desktop-translate {
        display: block !important;
    }
    
    .mobile-translate-btn {
        display: none !important;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 10px;
        z-index: 10000;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100vh;
        padding: 0 40px;
        margin: 0;
        list-style: none;
    }
    
    .mobile-nav .nav-links li {
        display: block !important;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav .nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav .nav-links li a {
        display: block !important;
        padding: 20px 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none;
        font-weight: 400;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-nav .nav-links li a:hover {
        color: white !important;
        transform: translateX(10px);
    }
    
    .mobile-nav .nav-links li a.active {
        color: white !important;
        font-weight: 600;
    }
    
    .mobile-nav .nav-links li a::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }
    
    .mobile-nav .nav-links li a:hover::after,
    .mobile-nav .nav-links li a.active::after {
        width: 30px;
    }
    
    .nav-toggle {
        display: block !important;
    }
}

/* Mobile Navigation Updates */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    /* Full-Screen Mobile Navigation */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 10px;
        z-index: 10000;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: 100vh;
        padding: 0 40px;
        margin: 0;
        list-style: none;
    }
    
    .mobile-nav .nav-links li {
        display: block !important;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav .nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav .nav-links li a {
        display: block !important;
        padding: 20px 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none;
        font-weight: 400;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-nav .nav-links li a:hover {
        color: white !important;
        transform: translateX(10px);
    }
    
    .mobile-nav .nav-links li a.active {
        color: white !important;
        font-weight: 600;
    }
    
    .mobile-nav .nav-links li a::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }
    
    .mobile-nav .nav-links li a:hover::after,
    .mobile-nav .nav-links li a.active::after {
        width: 30px;
    }
    
    /* Mobile Navigation Toggle Button */
    .nav-toggle {
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        padding: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .nav-toggle:hover {
        background: var(--secondary);
        transform: scale(1.05);
    }
    
    .nav-toggle i {
        font-size: 20px;
        transition: transform 0.3s ease;
    }
    
    .nav-toggle.active i {
        transform: rotate(90deg);
    }
}

