﻿.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 3;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-in-out;
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        line-height: 1.2;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
        color: #e0e0e0;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn {
    background-color: #0d9488;
    color: #fff;
    border: 2px solid #0d9488;
}

    .call-btn:hover {
        background-color: #fff;
        color: #0d9488;
    }

.info-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .info-btn:hover {
        background-color: #fff;
        color: #0d9488;
    }

/* Navigation Arrows */
.navigation .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 5;
    padding: 10px;
    transition: 0.3s;
}

.navigation .prev {
    left: 20px;
}

.navigation .next {
    right: 20px;
}

.navigation .nav-btn:hover {
    color: #0d9488;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

    .dots span {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

        .dots span.active {
            background: #0d9488;
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
        top: 45%;
        transform: translateY(-50%);
    }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navigation .nav-btn {
        font-size: 28px;
    }
}
