﻿.about-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient( 135deg, #ffffff, #f7ffff, #e8ffff);
    overflow: hidden;
}

.about-badge {
    display: inline-block;
    background: #dffcfb;
    color: #009d98;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.about-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-top: 25px;
}

.about-description {
    font-size: 20px;
    color: #475569;
    line-height: 1.8;
    margin-top: 20px;
}

.btn-about {
    background: #00cfc8;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 15px;
    font-weight: 700;
}

.hero-image {
    max-width: 500px;
}

.floating-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    font-size: 35px;
    color: #00cfc8;
}

.icon1 {
    top: 20%;
    right: 25%;
}

.icon2 {
    top: 55%;
    right: 10%;
}

.icon3 {
    top: 75%;
    right: 35%;
}

.overview-section {
    padding: 120px 0;
}

.section-tag {
    color: #00cfc8;
    font-weight: 700;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin: 20px 0;
}

.glass-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .glass-card:hover {
        transform: translateY(-10px);
    }

    .glass-card i {
        font-size: 40px;
        color: #00cfc8;
    }

.mission-card,
.feature-card,
.counter-box {
    background: #ffffff;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .mission-card:hover,
    .feature-card:hover {
        transform: translateY(-10px);
    }

.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, #00cfc8, #00b3ad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    margin-bottom: 20px;
}

.feature-card i {
    font-size: 45px;
    color: #00cfc8;
    margin-bottom: 20px;
}

.counter-section {
    padding: 100px 0;
    background: linear-gradient( 135deg, #f8ffff, #e8ffff);
}

.counter-box h2 {
    font-size: 60px;
    font-weight: 800;
    color: #00cfc8;
}

.industry-card,
.value-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .industry-card:hover,
    .value-card:hover {
        transform: translateY(-10px) rotateX(5deg);
    }

    .industry-card i,
    .value-card i {
        font-size: 50px;
        color: #00cfc8;
        margin-bottom: 20px;
    }

.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    min-width: 180px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.timeline-number {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, #00cfc8, #00b3ad);
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-cta {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient( 135deg, #00cfc8, #00a9a2);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    color: white;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: white;
    color: #00a9a2;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
}

.feature-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-card i {
        font-size: 50px;
        color: #00cfc8;
        margin-bottom: 20px;
    }

.advantage-list {
    list-style: none;
    padding: 0;
}

    .advantage-list li {
        margin-bottom: 18px;
        font-size: 18px;
        font-weight: 500;
    }

        .advantage-list li::before {
            content: "✓";
            color: #00cfc8;
            margin-right: 12px;
            font-weight: bold;
        }