/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00A551;
    --dark-green: #009E4F;
    --accent-yellow: #F9F202;
    --soft-yellow: #F3E92A;
    --light-mint: #EDF8EA;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #ECF0F1;
    --gray-medium: #7F8C8D;
    --gray-dark: #2C3E50;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 165, 81, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-nav {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--white) 100%);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-medium);
    font-weight: 500;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.impact-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-mint);
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.impact-item.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.impact-item:hover {
    background-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.impact-item:hover .impact-icon,
.impact-item:hover .impact-number,
.impact-item:hover .impact-label,
.impact-item:hover .impact-label-special {
    color: var(--white);
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.impact-label,
.impact-label-special {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-weight: 600;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--white) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.program-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.program-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.program-description {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    margin-bottom: 25px;
}

.program-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-medium);
}

.program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.btn-program {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-program:hover {
    background-color: var(--dark-green);
    transform: scale(1.05);
}


/* About sgs */
/* About Section Styles - Scoped */

.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.about-content {
    opacity: 0;
    transform: translateY(30px);
}

.about-content.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.about-intro {
    margin-bottom: 40px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray-dark);
}

.about-mission {
    background-color: var(--light-mint);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-green);
}

.about-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.about-mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-mini-item {
    text-align: center;
    padding: 20px;
    background-color: var(--off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-mini-item:hover {
    background-color: var(--light-mint);
    transform: translateY(-5px);
}

.stat-mini-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-mini-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 600;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.about-visual.animated {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.about-visual-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.about-visual-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-left-color: var(--accent-yellow);
}

.visual-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-visual-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.about-visual-card p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.about-courses-wrapper {
    margin-top: 80px;
}

.about-courses-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.about-courses-title.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.about-courses-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.about-courses-subtitle.animated {
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.about-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.about-courses.animated {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.course-card {
    background-color: var(--light-mint);
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-green);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    background-color: var(--white);
}

.course-code {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.course-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.course-description {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--white) 100%);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.about-cta.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.about-cta-text {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-apply-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.about-apply-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
    }

    .about-courses {
        grid-template-columns: 1fr;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta {
        padding: 40px 25px;
    }

    .about-courses-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-description {
        font-size: 1.1rem;
    }

    .about-mission-title {
        font-size: 1.3rem;
    }

    .stat-mini-number {
        font-size: 1.8rem;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }
}

/* Faculty Section */
.faculty {
    padding: 100px 0;
    background-color: var(--white);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.faculty-card {
    background-color: var(--light-mint);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faculty-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.faculty-card:hover {
    background-color: var(--white);
    box-shadow: 0 10px 30px var(--shadow-hover);
    transform: translateY(-10px);
}

.faculty-image {
    margin-bottom: 20px;
}

/* Faculty Photo Styling */
.faculty-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}


.faculty-card:hover .faculty-photo {
    transform: scale(1.05);
}


.faculty-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.faculty-title {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 5px;
}

.faculty-expertise {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 15px;
}

.faculty-linkedin {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faculty-linkedin:hover {
    background-color: var(--dark-green);
    transform: scale(1.1);
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.success-stories .section-title,
.success-stories .section-subtitle {
    color: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    display: block;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-grant {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 3px;
}

.author-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--soft-yellow) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 20px;
    color: var(--gray-dark);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-links a:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact li {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 10px var(--shadow);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}


.programs-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(0, 151, 178, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 151, 178, 0.45);
}
