/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
    border-radius: 12px;
}

.hero-slider .slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    /* background-color: #0a0f35; */
    background-size: cover;
    background-position: center;
}

.hero-slider .slide.active {
    display: block;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 5%;
    color: #fff;
}

.slide-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.slide-tag {
    display: inline-block;
    background-color: rgba(255, 140, 50, 0.2);
    color: #ff8c32;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #d0d0e0;
}

.btn-get-started {
    display: inline-block;
    background-color: #ffd54f;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #ffaa00;
    transform: translateY(-2px);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    max-height: 80%;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation buttons */
.bannerbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.bannerbtn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.bannerbtn-prev {
    left: 20px;
}

.bannerbtn-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-text {
        max-width: 90%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-image {
        justify-content: center;
    }
    
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .bannerbtn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}