/* Header styles */

body {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #d6ebeb, #d6ebeb);
    color: #333;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
}
/* Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(70px);
    transition: all 4.5s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(9);
}
/* Company Overview */
.company-overview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.menu-toggle {
    display: none;
}
/* Mission & Values */
.value-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
   
}
.text-primary {
    color: green !important;
}
/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0dfd3d;
}

/* Team Section */


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .value-card {
        margin-bottom: 1rem;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Hide nav links and show toggle on small screens */
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}