/* Slider Styles */
.slider-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.slider-section h2 {
    text-align: center;
    padding: 20px 0;
    font-size: 2rem;
    color: #1e3c72;
    background: #f9f9f9;
    margin-bottom: 10px;
    /* border-bottom: 2px solid #1e3c72;   */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.slide-content {
    padding: 20px;
    background: white;
}

.slide-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.slide-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 160px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    /* background: rgba(255, 255, 255, 0.9); */
    background: #2a5298;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    /* color: #333; */
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: white;
    color: #2a5298;
    transform: scale(1.1);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 450px;
    }

    .slide img {
        height: 300px;
    }

    .slider-controls {
        bottom: 140px;
    }

    .slider-dots {
        bottom: 120px;
    }
}