/* About Hero Section */
.about-hero-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

/* About Main Section */
.about-main-section {
    padding: 80px 0;
}

.about-image-box {
    position: relative;
    margin-bottom: 30px;
}

.about-image-box img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: #E32222;
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.experience-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-box p {
    margin: 5px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding: 20px;
}

.about-content .section-heading {
    color: #ff5e14;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content .lead {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-features .feature-item i {
    color: #ff5e14;
    margin-right: 10px;
    font-size: 16px;
}

.about-features .feature-item span {
    font-weight: 600;
    color: #333;
}

/* Mission Section */
.mission-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.mission-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.mission-icon {
    font-size: 48px;
    color: #ff5e14;
    margin-bottom: 20px;
}

.mission-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.mission-box p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 94, 20, 0.9);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.team-info p {
    color: #ff5e14;
    font-weight: 600;
    margin: 0;
}

/* Counter Section */
.counter-section {
    padding: 60px 0;
    background-color: #ff5e14;
    color: white;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    display: inline-block;
}

.counter-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    display: inline-block;
}

.counter-box p {
    font-size: 18px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-image-box {
        margin-bottom: 60px;
    }
    
    .experience-box {
        bottom: -50px;
        right: 20px;
    }
    
    .mission-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-hero-section,
    .about-main-section,
    .mission-section,
    .team-section,
    .counter-section {
        padding: 50px 0;
    }
    
    .team-member {
        margin-bottom: 30px;
    }
    
    .counter-box {
        margin-bottom: 30px;
    }
}
