.nav-top {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.6);
}

.center-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.center-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.center-nav li {
    display: inline-block;
}

.center-nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.logo-img {
    height: 50px;
}

/* Mobile View */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }

    .center-nav {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        padding: 10px;
    }

    .center-nav ul{
        flex-direction: column;
    }

    .center-nav.mobile-active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        margin-left: auto;
        color: #000;
    }
}

.menu-toggle {
    display: none;
}

/* Features page style */
.firesave-banner .img1{
    height: 80vh;
    display: block;
}

.firesave-banner .img2{
    display: none;
}

.firesave-bg {
    background-image: url('/assets/images/features/firesave-bg.png');
    background-size: cover;
    background-position: center;
}

.product-box {
    background: #f4f6f5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.product-box img {
    max-width: 250px;
    margin-bottom: 20px;
}

.read-more-btn {
    background: linear-gradient(to right, #00662b, #00a64f);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: linear-gradient(to right, #00a64f, #00662b);
}

.firesave .data-table{
    text-align: center;
}

.list-group-item {
    border-left: 5px solid transparent;
    padding: 15px 20px;
    cursor: pointer;
    background-color: white;
    border-radius: 0 !important;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
}

.list-group-item.active {
    border-left: 8px solid #00793A;
    background-color: #F3FED3 !important;
    font-weight: 600;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
}

.list-group-item h6 {
    margin: 0 0 5px 0;
    color: #514E4E;
}

.list-group-item small {
    font-size: 16px;
    color: #555;
}

.tab-buttons {
    display: flex;
    gap: 30px;
    background: #00793A;
}

.tab-btn {
    width: fit-content;
    border: 2px solid transparent;
    border-radius: 30px;
    background-image:
        linear-gradient(white, white),
        /* inner fill */
        linear-gradient(to right, #00793A, #ffc107);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.tab {
    width: fit-content;
    border: 2px solid transparent;
    border-radius: 30px;
    background-image:
        linear-gradient(white, white),
        /* inner fill */
        linear-gradient(to right, #00793A, #ffc107) !important;
    background-origin: border-box;
    background-clip: content-box, border-box;
    margin: 3px 3px;
}

.tab-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    background: #00793A;
    font-weight: bold;
    font-size: 12px;
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.tab-buttons .btn:hover,
.tab-buttons .btn.active {
    background-color: #00793A;
    color: white;
}

.tab-buttons .tab .arrow-circle {
    background: #fff;
    color: #00793A;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form form input {
    border: 1px solid #000;
}

.contact-form form textarea {
    border: 1px solid #000;
}

.contact-form form ::placeholder {
    color: #000;
}


/* Zero emission page style */
.green-box {
    background-image: url("/assets/images/features/e-zero-bg.png");
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    color: white;
    padding: 30px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.green-box .title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.green-box .desc {
    font-size: 18px;
    font-weight: 400;
}

.carousel-indicators [data-bs-target] {
    background-color: white;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 0 4px;
}

.carousel-indicators {
    justify-content: end;
    bottom: 5px;
    right: 5px;
    left: auto;
}


/* Accordion Custom Arrow */
.accordion-button::after {
    background-image: url('/assets/images/features/down-arrow.png');
    /* your image path */
    background-size: 38px 38px;
    /* increased icon size */
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* light green */
    display: inline-block;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('/assets/images/features/down-arrow.png');
    transform: rotate(180deg);
}

.accordion-button {
    font-weight: 600;
    border-radius: 10px !important;
    background-color: #F5F6FA;
    box-shadow: none;
}

.accordion-item {
    border: 2px solid #e7e7e8;
    border-radius: 10px;
    background-color: #f9fafb;
    margin-bottom: 10px;
}

.accordion-body {
    font-size: 16px;
}

.faq-heading span {
    color: #007a3d;
}

/* Sharon secure page style */

.secureapp-banner .img1{
    height: 80vh;
    display: block;
}

.secureapp-banner .img2{
    display: none;
}

.sharonsecure .feature-col .d-flex {
    background: #F2F7FD;
}

.sharonsecure .feature-col .d-flex:hover {
    background: #03B759;
}

.secure-app {
    width: 100%;
    overflow: hidden;
    background: #F1F1F1;
}

.secure-app .one-app {
    background: #00793A;
    color: white;
}

.one-app h2 {
    color: white;
    font-weight: normal;
}

.one-app p {
    background: rgba(252, 252, 252, 0.2);
    border-radius: 10px;
}

.feature-video{
    width: 70%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}