.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.container{
    max-width :85%;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.6);
}

.slider {
    display: flex;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(to right, #ff416c, #d44576);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.control-btn {
    background: #003664;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background: #1a64a3;
    transform: scale(1.1);
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ee9db8;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #d44576;
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .slider {
        height: auto;
    }
}

@media (max-width: 480px) {
    .slider {
        height: auto;
    }

    .slide-content {
        max-width: 95%;
    }
}