.about-hero {
    position: relative;
    background: url('/public/images/about/bg.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #E2E8F0;
}

.about-section {
    background: #F8FAFC;
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content .text {
    flex: 1 1 45%;
}

.about-content .text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.about-content .text p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-content .image {
    flex: 1 1 45%;
}

.about-content .image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-section {
    background: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111827;
}

.mission-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.mission-item {
    background: #F1F5F9;
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: #E2E8F0;
    transform: translateY(-5px);
}

.mission-item i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1E293B;
}

.mission-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111827;
}

.mission-item p {
    color: #4B5563;
}

.team-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #FEF3C7 100%);
    padding: 80px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #111827;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111827;
}

.team-card p {
    color: #6B7280;
    font-size: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F1F1F 0%, #363535 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btn {
    background: white;
    color: #1F1F1F;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.about-hero {
    position: relative;
    background: url('/public/images/about/bg.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.75) 0%, rgba(30, 30, 30, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    color: #E2E8F0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator (pastdagi animatsion nuqta) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.7;
    animation: scrollPulse 1.5s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}
