
: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 */
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: relative;
}

.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 */
nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -20px
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    margin-top: -13px;
}

.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;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-toggle {
    display: none;
    /* font-size: 1.5rem; */
    cursor: pointer;
    color: var(--crimson);
}
/* 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);
    background-image: ;
}

.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;
}
/* Sticky Navigation */
#main-nav {
    position: sticky;
    top: 0;
    z-index: 998; /* Make sure it's below header's z-index */
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* When header is sticky (scrolled), adjust nav position */
header.sticky + #main-nav {
    top: 90px; /* Height of your sticky header */
}

/* When scrolled further, make nav stick to top */
.scrolled #main-nav {
    top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Adjust for mobile */
@media (max-width: 768px) {
    #main-nav{
        background: transparent;
    }
    header.sticky + #main-nav {
        top: 70px; /* Smaller height for mobile */
    }
}
/* Update the header styles to be sticky */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* rest of your existing header styles */
}

/* Update the navigation styles to be sticky below the header */
nav {
    position: sticky;
    top: 90px; /* Height of your header */
    z-index: 999;
    /* rest of your existing nav styles */
}

/* When scrolled, make nav stick to top */
.scrolled nav {
    top: 0;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    nav {
        top: 70px; /* Smaller header height on mobile */
    }
    
    .scrolled nav {
        top: 0;
        background-color:rgba(255, 255, 255, 0);
    }
}
.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* 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;
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.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;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-control i {
    font-size: 1.5rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    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 */
        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%;
    }
}




/* Update the header styles in index.css */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
    /* rest of your existing header styles */
}

/* Make sure the body has padding 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 Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    background: linear-gradient(135deg, var(--primary), #154360);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Adjust body padding to account for fixed header */
body {
    padding-top: 120px;
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
}



/* 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*/
/* Google Translate Styles */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.goog-te-combo {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    font-size: 14px;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
}

/* Hide Google branding */
.goog-logo-link {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    #google_translate_element {
        display: none; /* Hide on mobile - we'll add a mobile version */
    }
    
    .mobile-translate {
        display: block;
        text-align: center;
        padding: 10px;
        background: var(--secondary);
    }
    
    .mobile-translate a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }
}

.mobile-translate {
    display: none;
    background: var(--primary);
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.mobile-translate a {
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
}

@media (max-width: 768px) {
    .mobile-translate {
        display: flex;
    }
}

/* Google Translate Styles */
.goog-te-menu-frame {
    max-width: 100% !important; /* prevents overflow on small screens */
}

.goog-te-menu2 {
    max-height: 300px !important;
    overflow-y: auto !important; /* makes the language list scrollable */
}

/* For the mobile translate button */
.mobile-translate {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
}

.mobile-translate i {
    font-size: 24px;
}

@media (min-width: 769px) {
    .mobile-translate {
        display: none;
    }
}




/* Mobile Translate Button */
.mobile-translate {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 768px) {
    .mobile-translate {
        display: flex;
    }
    #google_translate_element {
        display: none;
    }
}

/* Make sure translate dropdown appears above other content */
.goog-te-menu-frame {
    z-index: 1001 !important;
}




/* Google Translate Styles */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.goog-te-combo {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    font-size: 14px;
    width: 200px;
    cursor: pointer;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0;
}

.goog-te-menu-frame {
    max-width: 100% !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    z-index: 1001 !important;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.goog-te-menu2 {
    max-height: 300px !important;
    overflow-y: auto !important;
}

.goog-te-menu2-item div {
    padding: 8px 12px;
    font-size: 13px;
}

/* Hide Google branding */
.goog-logo-link, .goog-te-banner-frame {
    display: none !important;
}

/* Mobile Translate Button */
.mobile-translate {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1002;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-translate:hover, .mobile-translate:active {
    background: var(--secondary);
    transform: scale(1.1);
}

.mobile-translate:active {
    transform: scale(0.95);
}

.mobile-translate i {
    font-size: 24px;
}

@media (max-width: 768px) {
    #google_translate_element {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1001;
        background: white;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .mobile-translate {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-translate {
        width: 45px;
        height: 45px;
    }

    .mobile-translate i {
        font-size: 20px;
    }

    #google_translate_element {
        bottom: 75px;
        right: 15px;
        width: 180px;
    }

    .goog-te-combo {
        width: 160px;
        font-size: 12px;
    }

    .goog-te-menu2-item div {
        font-size: 12px;
    }
}


/* Google Translate Styles - Updated */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    z-index: 1000;
}

.goog-te-combo {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
}

.goog-te-gadget {
    color: transparent !important;
}

/* Language dropdown styles */
.goog-te-menu-frame {
    max-width: 100% !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1001 !important;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 120px !important;
}

.goog-te-menu2 {
    max-height: 60vh !important;
    overflow-y: auto !important;
    width: 100% !important;
    background: white !important;
    border: none !important;
}

.goog-te-menu2-item {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.goog-te-menu2-item:hover {
    background-color: #f5f5f5 !important;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    #google_translate_element {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1001;
        margin-left: 0;
    }
    
    .goog-te-menu-frame {
        width: 90vw !important;
        max-width: 300px !important;
        top: auto !important;
        bottom: 140px !important;
        left: auto !important;
        right: 20px !important;
        transform: none !important;
    }
    
    .goog-te-menu2 {
        max-height: 50vh !important;
    }
    
    .goog-te-combo {
        min-width: 120px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Mobile translate button */
.mobile-translate {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 768px) {
    .mobile-translate {
        display: flex;
    }
    
    #google_translate_element.desktop {
        display: none;
    }
}

/* Hide Google branding */
.goog-logo-link, .goog-te-banner-frame {
    display: none !important;
}


/* Google Translate Styles */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    z-index: 1000;
}

.goog-te-combo {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
}

.goog-te-gadget {
    color: transparent !important;
}

/* Language dropdown styles */
.goog-te-menu-frame {
    max-width: 100% !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1001 !important;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 120px !important;
}

.goog-te-menu2 {
    max-height: 60vh !important;
    overflow-y: auto !important;
    width: 100% !important;
    background: white !important;
    border: none !important;
}

.goog-te-menu2-item {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.goog-te-menu2-item:hover {
    background-color: #f5f5f5 !important;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    #google_translate_element {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1001;
        margin-left: 0;
    }
    
    .goog-te-menu-frame {
        width: 90vw !important;
        max-width: 300px !important;
        top: auto !important;
        bottom: 140px !important;
        left: auto !important;
        right: 20px !important;
        transform: none !important;
    }
    
    .goog-te-menu2 {
        max-height: 50vh !important;
    }
    
    .goog-te-combo {
        min-width: 120px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Mobile translate button */
.mobile-translate {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 768px) {
    .mobile-translate {
        display: flex;
    }
    
    #google_translate_element.desktop {
        display: none;
    }
}

/* Hide Google branding */
.goog-logo-link, .goog-te-banner-frame {
    display: none !important;
}