/* css/achievements.css */

.achievements-section {
    position: relative;
    /* Background handled inline or via shared dark class */
}

/* Card Styling */
.achievement-card {
    background-color: #f2f2f2;
        border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 400px;
}

/* Hover Effect: Lift and Glow */
.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Icon Circle */
.achievement-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-color: #e9ecef;
    transition: 0.3s ease;
}

.achievement-icon i {
    color: var(--dark-gray);
    opacity: 0.8;
    transition: 0.3s ease;
}

/* Icon Highlight on Hover */
.achievement-card:hover .achievement-icon {
    background-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(233, 33, 38, 0.4);
    border-color: var(--primary-red);
}

.achievement-card:hover .achievement-icon i {
    color: #fff;
    opacity: 1;
}

/* Quote Icon */
.achievement-card .fa-quote-right {
    transition: 0.3s ease;
}
.achievement-card:hover .fa-quote-right {
    color: var(--primary-red) !important; /* Turn red on hover */
    opacity: 0.5 !important;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background: #555;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    transform: scale(1.2);
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

@media (max-width: 991px) {
    .achievements-section {
        padding: 40px 0 !important;
    }
    
    .achievement-card {
        min-height: 350px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .achievements-section {
        padding: 30px 0 !important;
    }
    
    .achievement-card {
        min-height: 300px;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
    }
    
    .achievement-icon i {
        font-size: 1.25rem !important;
    }
    
    .achievement-card h4 {
        font-size: 1.1rem !important;
    }
    
    .achievement-card p {
        font-size: 13px;
    }
}