/* =====================================================
   AGHORPEETH HERO SLIDER - FINAL
===================================================== */

.hero-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* Bootstrap carousel */

.hero-slider-section .carousel,
.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    width: 100%;
}


/* Main Banner */

.hero-slider-section .hero-slide {
    position: relative !important;

    width: 100% !important;

    height: 650px !important;
    min-height: 650px !important;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    display: flex !important;
    align-items: center !important;
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.hero-slider-section .hero-overlay {
    position: absolute !important;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 8, 3, 0.82) 0%,
            rgba(15, 8, 3, 0.65) 35%,
            rgba(15, 8, 3, 0.25) 70%,
            rgba(15, 8, 3, 0.10) 100%
        ) !important;
}


/* =====================================================
   CONTENT
===================================================== */

.hero-slider-section .hero-content {
    position: relative !important;

    z-index: 3;

    width: 100%;
   /* max-width: 980px;*/

    padding: 60px 0;

    color: #ffffff;
}


/* Small Heading */

.hero-slider-section .hero-small-title {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 1.8px;

    color: #f0b35b;

    text-transform: uppercase;
}


.hero-slider-section .hero-small-title::before {
    content: "";

    width: 42px;
    height: 2px;

    display: inline-block;

    background: #f0b35b;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.hero-slider-section .hero-content h1 {
    margin: 0 0 20px;

    font-family: inherit;

    font-size: 68px;
    line-height: 1.08;

    font-weight: 700;

    color: #ffffff;

    text-shadow: 0 3px 15px rgba(0,0,0,0.25);
}


.hero-slider-section .hero-content h1 span {
    color: #f0b35b;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-slider-section .hero-content p {
    max-width: 980px;

    margin: 0 0 30px;

    font-size: 18px;

    line-height: 1.75;

    color: rgba(255,255,255,0.92);
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-slider-section .hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.hero-slider-section .hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 25px;

    border-radius: 5px;

    background: #ff5a00;

    border: 1px solid #ff5a00;

    color: #ffffff !important;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.hero-slider-section .hero-btn:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #ff5a00 !important;

    transform: translateY(-3px);
}


.hero-slider-section .hero-btn-outline {
    background: transparent;

    border-color: rgba(255,255,255,0.7);
}


.hero-slider-section .hero-btn-outline:hover {
    background: #ffffff;

    color: #333333 !important;
}


/* =====================================================
   ARROWS
===================================================== */

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 70px !important;

    opacity: 1 !important;

    z-index: 5;
}


.hero-slider-section .slider-arrow {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.65);

    background: rgba(0,0,0,0.25);

    color: #ffffff;

    transition: all 0.3s ease;
}


.hero-slider-section .slider-arrow:hover {
    background: #ff5a00;

    border-color: #ff5a00;
}


/* =====================================================
   INDICATORS
===================================================== */

.hero-slider-section .carousel-indicators {
    z-index: 6;

    bottom: 25px;

    margin-bottom: 0;
}


.hero-slider-section .carousel-indicators button {
    width: 28px;

    height: 4px;

    margin: 0 4px;

    border: 0;

    border-radius: 10px;

    background: rgba(255,255,255,0.6);

    opacity: 1;

    transition: all 0.3s ease;
}


.hero-slider-section .carousel-indicators button.active {
    width: 55px;

    background: #ff5a00;
}


/* =====================================================
   ANIMATION
===================================================== */

.hero-slider-section .carousel-item.active .hero-content {
    animation: heroSlideContent 0.9s ease both;
}


@keyframes heroSlideContent {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-slider-section .hero-slide {
        height: 560px !important;
        min-height: 560px !important;
    }

    .hero-slider-section .hero-content {
        padding: 50px 30px;
    }

    .hero-slider-section .hero-content h1 {
        font-size: 52px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hero-slider-section .hero-slide {
        height: 620px !important;
        min-height: 620px !important;

        background-position: center center !important;
    }


    .hero-slider-section .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(15,8,3,0.85),
                rgba(15,8,3,0.60)
            ) !important;
    }


    .hero-slider-section .hero-content {
        padding: 50px 25px 70px;
    }


    .hero-slider-section .hero-small-title {
        font-size: 11px;

        letter-spacing: 1px;
    }


    .hero-slider-section .hero-small-title::before {
        width: 28px;
    }


    .hero-slider-section .hero-content h1 {
        font-size: 40px;

        line-height: 1.15;
    }


    .hero-slider-section .hero-content p {
        font-size: 15px;

        line-height: 1.65;
    }


    .hero-slider-section .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-slider-section .hero-btn {
        padding: 12px 20px;

        font-size: 14px;
    }


    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        display: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-slider-section .hero-slide {
        height: 580px !important;
        min-height: 580px !important;
    }


    .hero-slider-section .hero-content {
        padding: 40px 20px 65px;
    }


    .hero-slider-section .hero-content h1 {
        font-size: 34px;
    }


    .hero-slider-section .hero-content p {
        font-size: 14px;
    }


    .hero-slider-section .hero-btn {
        width: 100%;
    }

}