/* Hero Slider Container */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background-color: #0b0b0b;
}


/* Individual Slide Styling */

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}


/* Dark Overlay for text legibility over images */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.45);
}


/* Hero Content Box */

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #ffffff;
    z-index: 3;
    width: 100%;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 650px;
    color: #f1f1f1;
}


/* Hero Action Buttons (Rounded pill design) */

.hero-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #285638;
    /* Green button accent */
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f57c00;
    /* Shifts to orange on hover */
}

.btn-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #111111 !important;
}


/* Contact Preference Text */

.hero-contact-pref {
    font-size: 14px;
    color: #e0e0e0;
}

.hero-contact-pref a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 5px;
}


/* Slider Pagination Dots */

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
    width: 25px;
    border-radius: 6px;
}


/* Responsive adjustments for mobile */

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-outline {
        text-align: center;
    }
}