/* Add these styles to your existing CSS */
.slider-section {
    margin-top: 80px;
    /* Adjust based on header height */
    position: relative;
    overflow: hidden;
}

.slider-section .owl-carousel .item {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.slider-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width:991px){
    .slider-title{
        font-size: 40px;
    }
}
.slider-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
}
@media (max-width:767px){
    .owl-dots{
        bottom: 0;
    }
}
.owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
}

.owl-dot.active span {
    background: #fff !important;
}
@media (max-width: 991px) {
    .slider-subtitle {
        margin-bottom: 15px;
    }
    .slider-btn{
        padding: 12px 20px;
    }

    .slider-subtitle {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .slider-title {
        font-size: 2.5rem;
    }

    .slider-subtitle {
        font-size: 1.2rem;
    }
}
@media (max-width:767px){
    .slider-title{
        font-size: 30px;
    }
    .slider-btn{
        margin-bottom: 15px;
    }
}
@media (max-width:543px){
    .slider-title{
        font-size: 25px;
    }
    .slider-subtitle{
        font-size: 17px;
    }
    .slider-btn{
        margin-bottom: 15px;
    }
}
@media (max-width:425px){
    .slider-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .slider-subtitle{
        font-size: 16px;
    }
    .slider-btn{
        margin-bottom: 15px;
    }
}
@media (max-width:375px){
    .slider-title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .slider-subtitle{
        font-size: 16px;
    }
    .slider-btn{
        margin-bottom: 10px;
    }
}
@media (max-width:325px){
    .slider-title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .slider-subtitle{
        font-size: 15px;
    }
    .slider-btn{
        margin-bottom: 10px;
    }
}

/* Custom Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}



.owl-nav {
    display: none !important;
}

/* Enhanced Dots Styling */
.slider-section .owl-dots {
    position: absolute !important;
    bottom: 10px;
    left: 47%;
    z-index: 5;
}
@media (max-width:767px){
    .slider-section .owl-dots{
        left: 46%;
    }
}
@media (max-width:475px){
    .slider-section .owl-dots{
        left: 42%;
    }
}
@media (max-width:375px){
    .slider-section .owl-dots{
        bottom: 0;
    }
}
.owl-dot {
    margin: 0 5px;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.owl-dot:hover span {
    background: rgba(255, 255, 255, 0.6) !important;
}

.owl-dot.active span {
    width: 14px !important;
    height: 14px !important;
    background: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .owl-nav {
        display: none;
    }
    
    .owl-dots {
        bottom: 15px;
    }
    
    .owl-dot span {
        width: 10px !important;
        height: 10px !important;
    }
    
    .owl-dot.active span {
        width: 12px !important;
        height: 12px !important;
    }
}