/* About page specific styles */
:root {
    --primary-color: #00B4D8;
    --secondary-color: #0077B6;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-color: rgba(0, 180, 216, 0.1);
}

/* Main content styling */
#main_content {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--text-light);
}

/* Welcome section styling */
#welcom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.big_text h4 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.big_text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

.feature-card h5 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 2rem;
    }

    .big_text h4 {
        font-size: 2.5rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    #welcom {
        padding: 1rem;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Statistics page specific styles */
:root {
    --primary-color: #00B4D8;
    --secondary-color: #0077B6;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-color: rgba(0, 180, 216, 0.1);
}

/* Main content styling */
#main_content {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--text-light);
}

/* Stats section styling */
#STAT {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

#STAT h3 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease forwards;
}

.S_blocs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.S_bloc {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.S_bloc:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
    border-color: var(--primary-color);
}

.S_bloc_text {
    text-align: center;
}

.S_bloc_text h4 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.S_bloc_text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-count {
    animation: countUp 1s ease forwards;
}

/* Responsive design */
@media (max-width: 1024px) {
    .S_blocs {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    #STAT {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    #STAT h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .S_blocs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .S_bloc {
        padding: 2rem;
        min-height: 200px;
    }

    .S_bloc_text h4 {
        font-size: 3rem;
    }

    .S_bloc_text p {
        font-size: 1rem;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
} 