/* About Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 6rem;
    gap: 2rem;
    min-height: 80vh;
    background: linear-gradient(135deg, #0c0c22 0%, #1a1a3a 100%);
    color: var(--text-light);
}

.about-hero .left {
    flex: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .highlight {
    color: var(--primary-color);
}

.about-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 550px;
}

.about-hero .right {
    flex: 1;
    position: relative;
}

  .about-hero-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.3);
    z-index: 3;

}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Mission Section */
.mission-section {
    padding: 5rem 6rem;
    background-color: var(--light-bg);
}

.mission-section .container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    outline: 1px solid var(--primary-color);

}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}


/* Values Section */
.values-section {
    padding: 5rem 6rem;
    background-color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 5rem 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e63535 100%);
    color: white;
    transition: opacity 0.5s ease;
}

.stats-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-section .container {
        flex-direction: column;
    }

    .main-img{
        display: none;
    }
    
    .about-hero {
        flex-direction: column;
        text-align: center;
        margin-top: 35px;
    }
    
    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -60px;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .mission-section,
    .team-section,
    .values-section,
    .stats-section {
        padding: 3rem 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}



/* About Hero CTA Buttons */
.about-hero .cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-hero .cta {
    color: #fff;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.about-hero .cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-hover-color);
    color: var(--primary-color);
    outline: 1.5px solid var(--primary-color);
}

.about-hero .cta.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.about-hero .cta.secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero .cta-group {
        justify-content: center;
    }
    
    .about-hero .cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}











