﻿:root {
    --primary: #FFC107;
    --secondary: #2196F3;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --success: #4CAF50;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb-item a {
    color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #e0a800;
        border-color: #e0a800;
        color: var(--dark);
    }

.section-title {
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 60%;
        height: 3px;
        background: var(--primary);
        bottom: -10px;
        left: 0;
    }

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.stat-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.team-member {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
    }

.team-img {
    height: 250px;
    object-fit: cover;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary);
        transform: translateX(-50%);
    }

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    padding-right: 30px;
}

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 30px;
    }

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 20px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -10px;
}

.policy-card {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.nav-pills .nav-link {
    color: var(--dark);
    font-weight: 500;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 5px;
}

    .nav-pills .nav-link.active {
        background-color: var(--primary);
        color: var(--dark);
    }

.wow {
    visibility: hidden;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
    }

        .timeline-item:nth-child(even) {
            margin-left: 0;
            padding-left: 50px;
        }

            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                display: none;
            }

    .timeline-marker {
        left: 10px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
    }
}
