/* Hover Effects for About Page Cards */
.feature-card, .application-card, .cert-card, .stat-card, .process-step {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.feature-card:hover, .application-card:hover, .cert-card:hover, .stat-card:hover, .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 160, 69, 0.2) !important;
}

.feature-card:hover {
    border: 2px solid #08A045;
}

.application-card:hover {
    box-shadow: 0 15px 35px rgba(8, 160, 69, 0.25) !important;
}

.cert-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.stat-card:hover h2 {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%) !important;
}

.manufacturing-card:hover, .quality-card:hover, .vision-card:hover, .cta-card:hover {
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.quality-card:hover, .vision-card:hover {
    box-shadow: 0 20px 50px rgba(8, 160, 69, 0.3) !important;
}

.about__hero-card:hover {
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.15) 0%, rgba(107, 191, 89, 0.15) 50%, rgba(11, 110, 79, 0.15) 100%) !important;
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.performance-section:hover {
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.08) 0%, rgba(107, 191, 89, 0.08) 50%, rgba(11, 110, 79, 0.08) 100%) !important;
}

/* Icon hover effects */
.feature-card i, .application-card i, .cert-card i, .process-step i {
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: #0B6E4F !important;
}

.application-card:hover i {
    transform: rotate(5deg) scale(1.1);
}

/* Button hover effects */
.build_button {
    transition: all 0.3s ease;
}

.build_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 160, 69, 0.3);
}

.build_button:active {
    transform: translateY(-1px);
}

/* List item hover effects */
.manufacturing-features .feature-item:hover {
    background: rgba(8, 160, 69, 0.05);
    padding-left: 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.vision-features .feature-item:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

/* About Page Specific Styles */
.about__hero-card {
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.1) 0%, rgba(107, 191, 89, 0.1) 50%, rgba(11, 110, 79, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid #08A045;
}

.feature-card, .application-card, .cert-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 160, 69, 0.1);
    height: 100%;
}

.manufacturing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 160, 69, 0.15);
    height: 100%;
}

.quality-card {
    background: linear-gradient(135deg, #08A045 0%, #6BBF59 50%, #0B6E4F 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.performance-section {
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.05) 0%, rgba(107, 191, 89, 0.05) 50%, rgba(11, 110, 79, 0.05) 100%);
    padding: 50px;
    border-radius: 20px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 160, 69, 0.1);
    margin-bottom: 30px;
}

.vision-card {
    background: linear-gradient(135deg, #08A045 0%, #6BBF59 50%, #0B6E4F 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.cta-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 160, 69, 0.15);
    border: 2px solid #08A045;
}

.contact-info {
    background: rgba(8, 160, 69, 0.1);
    padding: 30px;
    border-radius: 15px;
}

/* Application card border colors */
.application-card:nth-child(1) {
    border-top: 4px solid #08A045;
}

.application-card:nth-child(2) {
    border-top: 4px solid #6BBF59;
}

.application-card:nth-child(3) {
    border-top: 4px solid #0B6E4F;
}

/* Certification card border colors */
.cert-card:nth-child(1) {
    border-left: 4px solid #08A045;
}

.cert-card:nth-child(2) {
    border-left: 4px solid #6BBF59;
}

.cert-card:nth-child(3) {
    border-left: 4px solid #0B6E4F;
}

.cert-card:nth-child(4) {
    border-left: 4px solid #08A045;
}
