/* Yuscohtech Custom CSS - All Shades of Green */

:root {
    --primary-green: #006400;      /* Dark Green */
    --secondary-green: #228B22;    /* Forest Green */
    --accent-green: #32CD32;       /* Lime Green */
    --light-green: #90EE90;        /* Light Green */
    --pale-green: #F0FFF0;         /* Honeydew */
    --mint-green: #98FB98;         /* Mint */
    --sea-green: #2E8B57;          /* Sea Green */
    --teal-green: #008080;         /* Teal */
    --emerald: #50C878;            /* Emerald */
    --forest-dark: #014421;        /* Dark Forest */
    --sage: #9DC183;               /* Sage */
    --olive: #808000;              /* Olive */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--pale-green);
    color: #333;
}

/* Navbar Styling */
.navbar-yuscohtech {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--sea-green) 100%);
    box-shadow: 0 2px 10px rgba(0, 100, 0, 0.3);
}

.navbar-brand img {
    height: 60px;
    margin-right: 15px;
}

.navbar-brand span {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-link {
    color: var(--light-green) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--primary-green) 50%, var(--sea-green) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(144, 238, 144, 0.1) 0%, transparent 50%);
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: var(--light-green);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-yuscohtech {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--emerald) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.btn-yuscohtech:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
    color: white;
}

/* Stats Section */
.stats-section {
    background: var(--primary-green);
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-green);
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--emerald));
    border-radius: 2px;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 100, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--light-green);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 100, 0, 0.2);
}

.program-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--sea-green) 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.program-content {
    padding: 30px;
}

.program-content h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.program-content p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--mint-green) 100%);
    padding: 80px 0;
}

.feature-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 100, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 100, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-box h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 100, 0, 0.2);
}

.about-content h3 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--sea-green) 100%);
    padding: 80px 0;
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer-yuscohtech {
    background: var(--forest-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-title {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-contact p {
    color: var(--light-green);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--sage);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}