/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
    .top-header {
        background: #111111;
        color: #fff;
        padding: 19px 0px;
        border-bottom: 1px solid #3b3b3b;

        a {
            color: #fff;
        }

        .main-top-header {
            display: flex;
            justify-content: space-between;

            ul {
                display: flex;
                gap: 50px;
            }

            ul li {
                position: relative;
            }

            ul li:after {
                content: "";
                position: absolute;
                width: 6px;
                height: 6px;
                background: #484848;
                right: -24px;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                top: 50%;
            }

            li.no_bullet:after {
                display: none;
            }
        }
    }

    .bottom-header {
        background: #111111bd;
        padding: 10px 30px;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 99;

        .main-bottom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-icon {
            display: none;
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .left-menu {
            width: 35%;
        }

        .logo {
            display: flex;
            width: 25%;
            justify-content: center;

            a {
                display: flex;
            }

            img {
                width: 100%;
            }

            .black-logo {
                display: none;
            }
        }

        nav {
            a {
                color: #fff;
            }

            ul li {
                position: relative;
            }

            ul {
                display: flex;
                /* gap: 15px; */
            }

            li a {
                font-size: 20px;
                padding: 5px 10px;
                display: inline-block;
            }

            ul a:hover {
                color: #fbb104;
            }
        }

    }

    .sticky {
        nav {
            a {
                color: #030303;
            }
        }

        nav {
            li.active {
                border-bottom: 2px solid #000000;
            }
        }

        .divide-menu ul li::before {
            background-color: #000000;
        }

        .logo {
            .white-logo {
                display: none;
            }

            .black-logo {
                display: block;
            }
        }
    }

    .dropdown {
        position: relative;

        .dropdown-menu {
            position: absolute;
            width: 220px;
            background-color: #000000;
            visibility: hidden;
            transition: all .2s linear;
            transform: translateY(30px);
            height: 0;

            ul {
                display: flex;
                flex-direction: column;
                gap: 0px !important;
            }

            ul a {
                font-size: 18px;
                padding: 8px 10px;
                display: block;
                color: #fff;
            }
        }
    }

    .dropdown:hover .dropdown-menu {
        visibility: visible;
        transform: translateY(0px);
        height: auto;
    }
}

.order-patner {
    padding: 40px 0px;

    h3 {
        text-align: center;
    }

    .main-order-patner {
        padding: 20px 0px 0px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        grid-gap: 20px;
        justify-content: center;
        align-items: stretch;
        text-align: center;
    }

    padding: 20px 0px;

    .owl-carousel .owl-stage {
        display: flex;
        position: relative;
        touch-action: manipulation;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .item {
        padding: 20px;
        background: #f3f3f3;
        border-radius: 10px;
        box-shadow: 1px 1px 7px #ccccccd9;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.patner {
    padding: 20px 0px;

    .owl-carousel .owl-stage {
        display: flex;
        position: relative;
        touch-action: manipulation;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .item {
        padding: 20px;
        background: #f3f3f3;
        border-radius: 10px;
        box-shadow: 1px 1px 7px #ccccccd9;
    }
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/

.banner-section {
    .banner-item {
        padding: 270px 0px 200px;
        color: #fff;
        background-position: center;
        background-size: cover;

        .item-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;

            .banner-tagline {
                display: inline-block;
                padding: 5px 20px;
                background: #e3e3e385;
                font-size: 18px;
                text-shadow: 2px 2px #000;
            }

            .banner-title {
                font-size: 50px;
                text-transform: uppercase;
                text-shadow: 2px 2px #000;
            }

            .group-btn {
                margin-top: 10px;
                display: flex;
                align-content: center;
                gap: 20px;
                justify-content: center;
            }

            p {
                font-size: 20px;
            }
        }
    }
}

/*--------------------------------------------------------------
# menu-categories Section
--------------------------------------------------------------*/

.menu-categories {
    padding: 80px 0px;

    .main-categories {
        display: flex;
        gap: 20px;

        .item {
            flex-grow: 1;
            position: relative;
            border-radius: 10px;
            overflow: hidden;

            a {
                color: #fff;
            }
        }

        .item-img {
            display: flex;
            position: relative;

            img {
                width: 100%;
                transform: scale(1.1);
                transition: all .2s linear;
            }
        }

        .item:hover img {
            transform: scale(1);
        }

        .item-content {
            position: absolute;
            bottom: 0;
            background: #0000004a;
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;

            h5 {
                text-transform: uppercase;
            }
        }
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-section {
    padding-bottom: 80px;

    .main-about {
        display: flex;
        align-items: center;
        gap: 30px;

        .about-img {
            width: 50%;
            position: relative;

            img {
                border-radius: 10px;
                box-shadow: 0px 0px 12px #2c2c2c38;
            }

            .img2 {
                position: absolute;
                right: 0;
                bottom: -30px;
            }
        }

        .about-content {
            width: 50%;
            display: flex;
            flex-direction: column;
            align-items: self-start;
            gap: 20px;
        }
    }

    .about-extra-content {
        margin-top: 30px;
        font-size: 18px
    }
}


.background-texture {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../uploads/banners/background1.jpg);
    background-position: center;
    background-size: cover;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: 60px 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banners/cta-background.jpg);
    background-position: center;
    /* background-attachment: fixed; */
    background-size: cover;

    .cta-content {
        display: flex;
        justify-content: space-between;
        text-align: center;
        gap: 20px;
    }

    .content {
        width: 50%;
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;

        p {
            font-size: 22px;
            color: #fbb104;
        }
    }

    .cta-img {
        width: 50%;
        text-align: center;

        img {
            width: 85%;
            margin-bottom: 10px;
        }
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu-section {
    padding: 80px 0px;

    .menu-title {
        display: flex;
        align-items: center;
        gap: 30px;

        .heading {
            width: 100%;
            text-align: center;
        }

        .menu-tabs {
            width: 50%;
            display: flex;
            justify-content: center;
        }

        .food-menu__tab {
            display: flex;
            gap: 20px;
        }

        .food-menu__tab button {
            font-size: 16px;
            padding: 10px 25px;
            line-height: normal;
            border: 1px solid #E8E7E7;
            cursor: pointer;
            background: transparent;
            border: 1px solid #2d5936;
        }

        .food-menu__tab .active {
            color: #2d5936;
        }
    }

    .side-img-grup {
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* margin-top: 20px; */
    }

    .item-title {
        font-size: 18px;
        text-transform: capitalize;
    }

    .live-video {
        display: flex;
    }

    .video-title {
        text-align: center;
        padding: 10px;
        background-color: #2d5936;
        color: #fbb104;
    }

    .out-seating {
        margin-top: 20px;
    }

    .menu-items {
        margin-top: 40px;
        display: flex;
        gap: 30px;

        .spical-menu {
            background: #F6F6F6;
            width: 30%;

            .img-box {
                display: flex;

                img {
                    width: 100%;
                }
            }

            .food_nav__list {
                padding: 30px;
                list-style: none;
                padding-bottom: 25px;
            }

            .food_nav__list li:not(:last-child) {
                padding-bottom: 21px;
                margin-bottom: 25px;
                border-bottom: 1px solid #D9D9D9;
            }
        }

        .categorie-wrapper {
            padding: 20px;
            background: #F6F6F6;
            width: 70%;

            .grid-box {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                grid-gap: 20px;
                align-items: stretch;
            }

            .item {
                border: 1px solid #DFDCDC;
                background-color: #fff;

                .item-img {
                    display: flex;

                    img {
                        width: 100%;
                    }
                }

                .item-content {
                    text-align: center;
                    padding-top: 24px;
                    padding-bottom: 26px;
                    padding-left: 10px;
                    padding-right: 10px;
                    border-top: 1px solid #DFDCDC;

                    .rating {
                        display: flex;
                        justify-content: center;
                        margin-bottom: 5px;
                        gap: 5px;
                        color: #fbb104;
                    }
                }
            }
        }

    }

    .menu-btn {
        text-align: center;
        margin-top: 30px;
    }

}

.categorie-booking-section {
    background-image: linear-gradient(rgba(45, 89, 54, 0.8), rgba(45, 89, 54, 0.8)), url(../uploads/banners/bg.png);
    background-color: rgb(45, 89, 54);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0px;

    .main-categorie-booking {
        display: flex;
        gap: 40px;

        .item {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 12px #9595956b;
        }

        .item-img {
            display: flex;
            height: 400px;

            img {
                width: 100%;
                transition: all .2s linear;
                object-fit: cover;
            }
        }

        .item:hover img {
            transform: scale(1.1);
        }

        .item-content {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: #00000012;
            padding: 20px;
            gap: 15px;
            color: #fff;

            h5 {
                font-size: 38px;
                text-shadow: 2px 2px 0px #000;
            }
        }
    }

    .feature-content {
        ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        ul li {
            font-size: 18px;
            background-color: #00000083;
            padding: 3px 8px;

        }
    }
}

/*--------------------------------------------------------------
# gallery Section
--------------------------------------------------------------*/
.gallery-section {
    margin-bottom: 6px;

    .gallery-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
        gap: 10px;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-section {
    padding: 80px 0px;

    .testimonial-heading {
        text-align: center;
    }

    .main-testimonial {
        margin-top: 40px;
        display: flex;
        gap: 30px;

        .item {
            flex: 1;
            z-index: 2;
            background: #F6F6F7;
            padding: 39px 50px;
            padding-right: 40px;
            position: relative;

            p {
                font-size: 18px;
                line-height: 32px;
                color: #74787c;
            }

            .author {
                display: inline-block;
                margin-top: 15px;
                font-size: 20px;
                font-weight: 600;
            }

            img {
                width: 100px;
            }
        }
    }
}

/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/
footer {
    background-color: #1f1f1f;
    background-repeat: no-repeat;

    .footer-main {
        padding: 50px 0px 30px;
        display: flex;
        gap: 20px;
        justify-content: space-around;
        color: #fff;
        flex-wrap: wrap;
    }

    a {
        color: #d6d4d4;
    }

    ul {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-link {
        li a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }

    .social-icon {
        ul {
            display: flex;
            flex-direction: row;
            font-size: 22px;
            gap: 20px;
        }
    }

    .copy-right {

        border-top: 1px solid #d1d1d171;
        padding: 20px 0px;
        text-align: center;
        color: #fff;
        font-size: 12px;

        img {
            margin-top: 10px;
        }
    }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

#about-page {
    .inner-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../uploads/banners/about-inner-banner.jpg);
        background-position: center;
        background-size: cover;
        text-shadow: 2px 2px #000;
    }


    .main-about-section {
        display: flex;
        gap: 30px;
    }

    .about-img {
        width: 50%;
        text-align: center;

        img {
            border-radius: 10px;
            box-shadow: 0 0 12px #cccccc8e;
        }
    }

    .about-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
#gallery-page {

    .gallery-title {
        text-align: center;
        background-color: #2d5936;
        color: #fbb104;
        margin: 20px 0px;
    }

    .main-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }

    .gallery-box {
        p {
            font-size: 20px;
            text-align: center;
        }
    }

    .gallery-img {
        overflow: hidden;
        display: flex;
        border-radius: 10px;

        img {
            transition: all .2s ease-in-out;
        }
    }

    .gallery-img:hover img {
        transform: scale(1.1);
    }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
#contact-page {
    .shop-details {
        display: flex;
        justify-content: space-between;
        /* gap: 20px; */
        padding: 0px 0px 50px;
        flex-wrap: wrap;

        .box {
            text-align: center;
            width: 32.33%;
            padding: 20px;
            box-shadow: 0px 1px 60px 0px rgb(0 0 0 / 7%);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            .icon {
                img {
                    width: 64px;
                }
            }

            a {
                font-size: 18px;
                color: #1f1f1f;
            }
        }
    }

    .form-map {
        display: flex;
        justify-content: space-between;
        gap: 40px;

        .map {
            width: 50%;

            iframe {
                width: 100%;
                height: 100%;
            }
        }

        .main-form {
            width: 50%;
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 1px 1px 20px #cccccc61;
        }

        form {
            display: flex;
            margin-top: 20px;
            flex-direction: column;
            gap: 15px;

            label {
                display: block;
                width: 100%;
                font-size: 18px;
            }

            input,
            textarea,
            select {
                width: 100%;
                padding: 10px;
                border-radius: 5px;
                border: 1px solid #414141;
                resize: none;
            }

            select {
                font-size: 16px;
            }

            input[type="submit"] {
                width: 170px;
                background-color: #2d5936;
                color: #fff;
                font-size: 18px;
                cursor: pointer;
            }
        }
    }
}

/*--------------------------------------------------------------
# Menu Page
--------------------------------------------------------------*/

#menu-page {

    .categori-title {
        text-align: center;
        background-color: #2d5936;
        color: #fbb104;
    }

    .categori-box {
        margin-top: 50px;
    }

    #african-style.categori-box {
        margin-top: 0px;
    }

    .menus {
        padding-bottom: 50px;
    }

    .menu-items {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        grid-gap: 20px;
        align-items: stretch;

        .item {
            background-color: #e9e9e9;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            border-radius: 10px;
        }

        .menu-item-title {
            display: block;
            font-size: 18px;
            font-weight: 600;
        }

        .price {
            font-size: 20px;
            color: red;
        }
    }

    .categori-btns {
        text-align: center;
        padding: 40px 0px;
        position: sticky;
        top: 100px;
        background: #fff;

        ul {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        li {
            width: 170px;
            padding: 8px 15px;
            background: #2d5936;
            color: #fff;
            text-align: center;
        }

        li a {
            color: #fff;
            display: block;
        }
    }

}

/* Modal styles */

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*--------------------------------------------------------------
# catering Menu Page
--------------------------------------------------------------*/

#catering-page {
    .inner-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../uploads/banners/catering-background.jpg);
        background-position: center;
        background-size: cover;
        text-shadow: 2px 2px #000;
    }

    h3 {
        width: 100%;
        background-color: #2d5936;
        color: #fbb104;
        text-align: center;
    }

    .item {
        background-color: #e9e9e9;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        border-radius: 10px;
    }

    .catering-menu {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        grid-gap: 20px;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .catering-menu-title {
        font-size: 20px;
        font-weight: 600;
    }

    .price {
        font-size: 18px;
    }

    .catering-price {
        color: red;
    }

    .blue-content {
        .blue-items {
            flex-direction: column;
        }
    }
}

.catering-form {
    padding-bottom: 80px;

    h3 {
        width: 100%;
        background-color: #2d5936;
        color: #fbb104;
        text-align: center;
    }

    .main-catering-form {
        width: 70%;
        margin: 0 auto;
        padding: 20px;
        border-radius: 10px;
        background: #f3f3f3;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 15px;

        .group {
            display: flex;
            gap: 20px;

            .box {
                width: 50%;
            }
        }

        label {
            display: block;
        }

        input,
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            margin-top: 5px;
            border-radius: 5px;
        }

        .submit-btn {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        input[type="submit"] {
            width: 170px;
            background-color: #2d5936;
            color: #fbb104;
            font-size: 18px;

        }
    }
}

.blue-lounge {
    .inner-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../uploads/banners/blue-background.jpg);
        background-position: center;
        background-size: cover;
        text-shadow: 2px 2px #000;
    }

}

.blue-content {
    h2 {
        width: 100%;
        background-color: #2d5936;
        color: #fbb104;
        text-align: center;
    }

    .blue-items {
        margin-top: 30px;
        display: flex;
        gap: 30px;

        .item {
            flex: 1 !important;
            background-color: #e5e5e5;
            padding: 20px;
            border-radius: 10px;
        }

        li {
            list-style-type: disc;
            list-style-position: inside;
            font-size: 18px;
        }
    }
}

.cta-section h2 {
    font-size: 30px;
}

.blue-content p {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

#blog-page {

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        grid-gap: 30px;
        align-items: stretch;
    }

    .date {
        padding: 3px 10px;
        background: #d7b65d;
    }

    .blog-item {
        background: #e6e6e6;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 12px #2222225b;

        .item-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: self-start;

            .read-more a {
                color: #795902;
                font-size: 18px;
            }
        }
    }

    .main-blog-detail {
        display: flex;
        gap: 30px;

        .blog-detail-content {
            display: flex;
            flex-direction: column;
            align-items: self-start;
            gap: 20px;
            width: 70%;

            .blog-title {
                font-size: 32px;
            }

            .content-box {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
        }


    }

    .blog-sidebar {
        width: 30%;
        background-color: #e2e2e2;
        padding: 20px;
        border-radius: 10px;
        position: relative;

        h5 {
            font-size: 26px;
        }

        .sidebar-items {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .item {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #fff;
            padding: 0 10px 10px;
            box-shadow: 0px 0px 7px #34343436;
        }

        .item-img {
            width: 120px;
            display: flex;
        }

        .item-content {
            flex: 1;

            .date {
                font-size: 14px;
            }

            p {
                font-size: 14px;
                line-height: 1.5;
                margin-top: 10px;
            }

            a {
                color: #000;
            }
        }
    }
}

.content-box h1,
h2,
h4 {
    font-size: 24px;
    font-weight: 500;
}

.content-box p {
    color: #222222;
}

.content-box ul li {
    padding: 3px 0px;
}

.content-box strong {
    font-weight: 600;
}

.d-none {
    display: none;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* When popup is active */
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Popup content box */
.popup-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    max-width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: popIn 0.3s ease;
}

/* Image styling */
.popup-content img {
    width: 500px;
    object-fit: contain;
    height: auto;
    border-radius: 8px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -9px;
    right: -6px;
    background: white;
    border: none;
    line-height: 1;
    width: 25px;
    font-size: 28px;
    cursor: pointer;
    height: 25px;
    transition: 0.2s;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.close-btn:hover {
    color: #f00;
}

/* Animation */
@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* FAQ Section Styles */
 .section_padding {
   padding: 80px 0;
 }

 .faq_accordion {
   max-width: 970px;
   display  : block;
   margin   : 0 auto;
 }

 .title_area {
   margin-bottom: 40px;
   position     : relative;
   z-index      : 1;
   text-align   : center;
 }

 .animate_title {
   position      : relative;
   font-size     : 32px;
   font-weight   : 700;
   color         : #000;
   padding-bottom: 20px;
   display       : inline-block;
   opacity       : 0;
   transform     : translateY(30px);
 }

 .animate_title::before,
 .animate_title::after {
   content         : "";
   position        : absolute;
   height          : 3px;
   width           : 50px;
   background-color: red;
   bottom          : 0;
   transition      : 0.4s ease;
 }

 .animate_title::before {
   left: 0;
 }

 .animate_title::after {
   right: 0;
 }

 .animate_title:hover::before,
 .animate_title:hover::after {
   width           : 80px;
   background-color: #ff6b35;
 }

 /* Accordion Styles */
 .accordion_card {
   transition         : 0.4s ease-in-out;
   overflow           : hidden;
   /* background-color: #f0ebeb; */
   position           : relative;
   z-index            : 3;
   border-radius      : 8px;
   box-shadow         : 0 2px 10px rgba(0, 0, 0, 0.1);
   margin-bottom      : 24px;
 }

 .accordion_header {
   position: relative;
 }

 .accordion_button {
   width           : 100%;
   font-size       : 18px;
   font-weight     : 600;
   border          : 0;
   color           : #000;
   background-color: #ffffff;
   letter-spacing  : 0.02em;
   padding         : 24px 60px 24px 48px;
   text-align      : left;
   transition      : 0.3s;
   position        : relative;
   border-radius   : 8px 8px 0 0;
   cursor          : pointer;
   display         : flex;
   align-items     : center;
 }

 .accordion_button.active {
   color              : #000;
   /* background-color: #f0ebeb; */
   padding-bottom     : 15px;
 }

 .accordion_button h1,
 .accordion_button h2,
 .accordion_button h3 {
   font-size  : 18px;
   font-weight: 600;
   margin     : 0;
   color      : inherit;
 }

 .accordion_button::after {
   content    : "+";
   position   : absolute;
   right      : 30px;
   font-size  : 20px;
   font-weight: 500;
   color      : red;
   transition : 0.3s ease-in-out;
 }

 .accordion_button.active::after {
   content: "-";
   color  : orangered;
 }

 .accordion_collapse {
   max-height: 0;
   overflow  : hidden;
   transition: max-height 0.3s ease-out;
 }

 .accordion_collapse.show {
   max-height: 1000px;
   /* Adjust based on content */
 }

 .accordion_body {
   padding      : 0 48px 24px;
   border-radius: 0 0 8px 8px;
 }

 .faq_text {
   margin-bottom: 15px;
   color        : #000;
   line-height  : 1.6;
 }

 .faq_text ul {
   margin-top  : 10px;
   padding-left: 20px;
 }

 .accordion_body ul li {
   margin-bottom: 8px;
   color        : #111111;
 }

 .faq_text a {
   color          : orangered !important;
   text-decoration: none;
   font-weight    : 600;
 }

 .faq_text a:hover {
   text-decoration: underline;
 }

 /* Animation */
 @keyframes fadeUp {
   to {
     opacity  : 1;
     transform: translateY(0);
   }
 }        
    