/* Hero Section Styles */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}



/* Story Section Styles */
.story-section {
    padding: 80px 0;
    background-color: white;
}

.story-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.story-section .section-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-light);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Values Section Styles */
.values-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.values-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.values-section .section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--primary-light);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.cta-section .section-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Teams Section Styles */
.teams-section {
    padding: 80px 0;
    background-color: white;
}

.teams-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.teams-section .section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-light);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.team-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.team-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.team-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-features li {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .team-card {
        padding: 30px;
    }

    .team-icon {
        width: 70px;
        height: 70px;
    }

    .team-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .teams-section {
        padding: 60px 0;
    }

    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0;
    }

    .stat-item {
        flex: 0 0 100%;
    }
} 