/* Features Slider Styles */
.features-slider {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.feature-slide {
    flex: 0 0 33.333%;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 10px;
    transition: all 0.3s ease;
    border-top: 4px solid #0056b3;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-slide .feature-icon {
    font-size: 48px;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-slide h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.feature-slide p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.slide-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

/* Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: #0056b3;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #003366;
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0056b3;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .feature-slide {
        flex: 0 0 100%;
        margin: 0 5px;
    }
    
    .slider-nav {
        flex-wrap: wrap;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}