.about {
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;

    }
}

.about-images {
    position: relative;
}

.img-main img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.img-float {
    position: absolute;
    bottom: -50px;
    right: -30px;
    border: 10px solid var(--white);
    border-radius: 15px;
    width: 50%;
    box-shadow: var(--shadow);
}

.exp-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.exp-badge span {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
}

.sub-title {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(60, 114, 252, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quote-box {
    background: var(--light-bg);
    padding: 30px;
    border-left: 5px solid var(--primary);
    margin-top: 30px;
    border-radius: 0 10px 10px 0;
}

.mission-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
@media screen and (max-width:478px) {
    .mission-box{
        grid-template-columns: 1fr;
    }
}

.mission-item {
    display: flex;
    gap: 15px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.mission-item i {
    font-size: 2rem;
    color: var(--primary);
}

.mission-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mission-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-body);
}

.stats-section {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

 .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary, #3C72FC);
     top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

 .timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

 .timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--primary, #3C72FC);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

 .left {
    left: 0;
    text-align: right;
}

 .right {
    left: 50%;
    text-align: left;
}

 .left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

 .timeline-item .content {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.timeline-item .content:hover {
    transform: translateY(-5px);
    border-color: var(--primary, #3C72FC);
}

.timeline-item h3 {
    color: var(--primary, #3C72FC);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .left {
        text-align: left;
    }

    .right {
        left: 0%;
    }
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.f-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

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

.f-card.active,
.f-card:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.f-card.active i,
.f-card:hover i {
    color: var(--white);
}

@media (max-width: 768px) {


    .left {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    transition: 0.5s;
}

.social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: 0.4s;
}

.social-overlay i {
    cursor: pointer;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card:hover .social-overlay {
    bottom: 0;
    cursor: pointer;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}