.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* ── Slides ── */
.bs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.3s cubic-bezier(.4, 0, .2, 1);
}

.bs-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Background image with Ken-Burns zoom */
.bs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 7.5s ease;
    will-change: transform;
}

.bs-slide.active .bs-bg {
    transform: scale(1);
}


/* Dark gradient overlay — stronger on left */
.bs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(8, 10, 26, 0.88) 0%,
            rgba(8, 10, 26, 0.60) 50%,
            rgba(8, 10, 26, 0.18) 100%);
    z-index: 1;
}

/* ── Content ── */
.bs-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 80px 5% 60px 7%;
}

.bs-inner {
    max-width: 680px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .85s ease .45s, transform .85s ease .45s;
}

.bs-slide.active .bs-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Tag / Badge */
.bs-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  background: rgba(20, 136, 1, 0.15);
border: 1px solid rgba(20, 136, 1, 0.45);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .7px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 18px;
    margin-top: 45px;
    border-radius: 30px;
}

.bs-tag .bs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #148801;
    animation: bspulse 1.6s infinite;
}

@keyframes bspulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

/* Heading */
.bs-title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 3px 28px rgba(0, 0, 0, .5);
}

.bs-title .hl {
    color: #148801;
}

.bs-title .hl-w {
    color: #ffffff;
}

/* Sub / description */
.bs-desc {
    font-size: clamp(13.5px, 1.5vw, 15.5px);
    color: rgba(255, 255, 255, .80);
    line-height: 1.80;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Buttons */
.bs-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.bs-btn-primary {
    background: linear-gradient(135deg, #148801 0%, #148801 100%);
    color: #fff;
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px #148801;
    transition: transform .2s, box-shadow .2s;
    border-radius: 30px;
}

.bs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 87, 45, .50);
    color: #fff;
}

.bs-btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid rgba(255, 255, 255, .30);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border-radius: 30px;
}

.bs-btn-secondary:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
    color: #fff;
}

/* ── Stats strip (bottom left) ── */
.bs-stats {
    position: absolute;
    bottom: 68px;
    left: 7%;
    z-index: 10;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bs-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 9px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.bs-stat strong {
    color: #148801;
    font-size: 15px;
    font-weight: 800;
}

/* ── Right feature card ── */
.bs-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) translateX(24px);
    z-index: 5;
    background: rgba(8, 10, 26, .78);
    border: 1px solid rgba(227, 87, 45, .22);
    backdrop-filter: blur(18px);
    border-radius: 8px;
    padding: 26px 28px;
    min-width: 240px;
    opacity: 0;
    transition: opacity .8s ease .8s, transform .8s ease .8s;
}

.bs-slide.active .bs-card {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.bs-card-title {
    color:#148801;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(227, 87, 45, .2);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.bs-card-row {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.bs-card-item .cl {
    font-size: 10px;
    color: rgba(255, 255, 255, .42);
    letter-spacing: .7px;
    text-transform: uppercase;
}

.bs-card-item .cv {
    font-size: 13.5px;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
}

/* ── Address bottom strip ── */
.bs-addr {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(90deg, rgba(20, 136, 1, .92) 0%, rgba(20, 136, 1, .85) 100%);
    padding: 10px 7%;
    font-size: clamp(11px, 1.4vw, 13.5px);
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
    letter-spacing: .3px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, .15);
}

/* ── Navigation dots ── */
.bs-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bs-dot-btn {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}

.bs-dot-btn.active {
    width: 28px;
    border-radius: 5px;
    background:#148801;
}

/* ── Arrow buttons ── */
.bs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.bs-arrow:hover {
    background: rgba(20, 136, 1, .55);
    border-color: #148801;
}

.bs-arrow-l {
    left: 20px;
}

.bs-arrow-r {
    right: 20px;
}

/* ── Progress bar ── */
.bs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #148801, #148801);
    z-index: 101;
    width: 0%;
    transition: width .12s linear;
}

/* ── Slide counter ── */
.bs-counter {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bs-counter-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
}

.bs-counter-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .25);
}

.bs-counter-total {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

@media(max-width: 991px) {
    .bs-card {
        display: none;
    }

.bs-counter {
display: none;
}
}

@media(max-width: 576px) {
.bs-stats {
bottom: 64px;
left: 4%;
gap: 7px;
}

.bs-stat {
font-size: 11.5px;
padding: 7px 12px;
}

.bs-content {
padding: 70px 4% 60px 5%;
}

.bs-arrow-l {
left: 10px;
}

.bs-arrow-r {
right: 10px;
}
    .bs-arrow-r {
        right: 10px;
    }
}

/* FAQ Section Styles */



.faq-accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.faq-accordion-item.active {
    border-color: #e3572d44;
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}

.faq-accordion-item.active .faq-accordion-header {
    background:white;
}

.faq-acc-question {
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq-acc-icon {
    font-size: 22px;
    font-weight: 300;
    color: #148801;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}

.faq-accordion-item.active .faq-acc-icon {
    transform: rotate(45deg);
}

.faq-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-acc-body.open {
    max-height: 300px;
}

.faq-acc-answer {
    padding: 0 22px 18px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
}