/* Modern Slider Styles */
.container.second-slide {
    top: 24%;
    left: 31%;
    position: absolute;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    width: 60%;
}
.container.thir-slide {
    position: fixed;
    z-index: 2;
    top: 22%;
    left: 3%;
    width: 100%;
}
.thir-slide h5 {
    font-size: 44px;
}

.thir-slide h2 {
    font-size: 24px !important;
}
.main-slider-two__item {
    position: relative;
    overflow: hidden;
    min-height: 76vh;
    display: flex;
    align-items: center;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none !important;
}

.overlay-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.home .content-wrapper {
    margin-top: 22%;
}
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
	text-align: center;
/*     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
	padding-bottom: 5px;
}

.main-slider-two__sub-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-slider-two__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-slider-two__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.slider-buttons {
    display: flex;
    gap: 20px;
}

.thm-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.thm-btn--dark-hover {
    background: #fff;
    color: #000;
}

.thm-btn--dark-hover:hover {
    background: #000;
    color: #fff;
}

.thm-btn--light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.thm-btn--light:hover {
    background: #fff;
    color: #000;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

/* @keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
} */

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.owl-nav button.owl-prev {
    left: 30px;
}

.owl-nav button.owl-next {
    right: 30px;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #fff !important;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    li.dropdown.current-menu-item .fa-chevron-down {
        display: none;
    }
    .main-slider-two__title {
        font-size: 2rem;
    }
    
    .slider-buttons {
        flex-direction: column;
    }
    
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }
}