/* About Hero Section */
.about-badge .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-stats .stat-item {
    text-align: center;
}

/* Story Section */
.highlight-box {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.highlight-icon {
    transition: transform 0.3s ease;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.1);
}

/* Mission & Vision */
.mission-box,
.vision-box {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.mission-icon,
.vision-icon {
    transition: transform 0.3s ease;
}

.mission-box:hover .mission-icon,
.vision-box:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Core Values */
.value-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.value-icon {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h5 {
    transition: color 0.3s ease;
}

.value-card:hover h5 {
    color: #e41e13;
}

/* Statistics */
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

/* Team Section */
.team-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.team-social a {
    transition: all 0.3s ease;
    font-size: 18px;
}

.team-social a:hover {
    color: #e41e13 !important;
    transform: translateY(-3px);
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

/* CTA Section */
.btn-cta-primary {
    background: linear-gradient(135deg, #e41e13 0%, #c41a10 100%);
    color: #fff;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 30, 19, 0.3);
    border-radius: 4px;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 30, 19, 0.4);
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cta-outline:hover {
    background: #fff;
    color: #223645;
    transform: translateY(-2px);
}

/* Subscribe Section */
.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.letter-spacing-1 {
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .about-hero-images img {
        height: 200px !important;
    }

    .story-images img {
        height: 150px !important;
    }

    .sub-left h4 {
        font-size: 18px;
        margin-bottom: 20px !important;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px !important;
    }
}