/* Owl Carousel Custom Styles for Hero Section */

.hero-section {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.hero-owl-carousel {
    position: relative;
    z-index: 1;
}

.hero-slide-item {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 46, 79, 0.9) 0%,
        rgba(26, 74, 122, 0.85) 30%,
        rgba(43, 90, 138, 0.8) 70%,
        rgba(10, 46, 79, 0.9) 100%);
    z-index: 2;
}

.hero-slide-item .container-fluid {
    position: relative;
    z-index: 10;
    padding: 80px 15px;
}

.hero-text-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-text-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-slide-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-slide-image img {
    max-height: 400px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Owl Carousel Navigation Arrows - HIDDEN */
.hero-owl-carousel .owl-nav {
    display: none !important;
}

/* Owl Carousel Dots */
.hero-owl-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 15px;
}

.hero-owl-carousel .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-owl-carousel .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.2);
}

.hero-owl-carousel .owl-dot.active {
    width: 45px !important;
    border-radius: 20px !important;
    background: #DAA520 !important;
    border-color: #DAA520 !important;
    box-shadow: 0 3px 12px rgba(218, 165, 32, 0.6);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-slide-item {
        min-height: 50vh;
    }

    .hero-owl-carousel .owl-nav button {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }

    .hero-owl-carousel .owl-nav button.owl-prev {
        left: 15px;
    }

    .hero-owl-carousel .owl-nav button.owl-next {
        right: 15px;
    }

    .hero-slide-item .container-fluid {
        padding: 40px 15px;
    }

    .hero-text-content h2 {
        font-size: 1.8rem;
    }

    .hero-text-content p {
        font-size: 0.95rem;
    }

    .hero-slide-image {
        margin-top: 20px;
        padding: 10px;
    }

    .hero-slide-image img {
        max-height: 250px;
        width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .hero-slide-item {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-slide-item .container-fluid {
        padding: 30px 15px;
    }

    .hero-text-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-text-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-slide-image {
        margin-top: 15px;
        padding: 5px;
    }

    .hero-slide-image img {
        max-height: 200px;
        width: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

    .hero-owl-carousel .owl-dots {
        bottom: 15px;
        gap: 10px;
    }

    .hero-owl-carousel .owl-dot {
        width: 10px;
        height: 10px;
    }

    .hero-owl-carousel .owl-dot.active {
        width: 30px !important;
    }
}

@media (max-width: 480px) {
    .hero-slide-item .container-fluid {
        padding: 20px 10px;
    }

    .hero-text-content h2 {
        font-size: 1.3rem;
    }

    .hero-text-content p {
        font-size: 0.85rem;
    }

    .hero-slide-image img {
        max-height: 180px;
    }
}
