body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
}

.top-bar {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.store-icon {
    height: 35px;
}

.promo-text {
    font-weight: bold;
    font-size: 14px;
}

.navbar {
    background-color: #9607cf;
    padding: 10px 0;
}

.navbar-nav {
    display: flex;
    justify-content: end;
    flex-grow: 1;
    gap: 10px;

}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    background-color: transparent !important;
    padding: 5px;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 3px;
    background-color: white;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    left: 0;

    transition: 0.3s;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    background-color: #9607cf;
    border-radius: 10px;

}






.hero {
    color: black;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero h1 {
    color: #5a2d82;
    font-weight: bold;
    font-size: 50px;
}

.hero p {
    font-weight: bold;
    font-size: 30px;
}

.btn-primary {
    background-color: #5a2d82;
    border: none;
}

.store-button img {
    width: 150px;
    margin: 10px;
}

@media (max-width: 768px) {
    .store-buttons img {
        width: 120px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .navbar-toggler {
        background-color: white;
    }
}


.features {
    background: url("/assets/images/8.png") no-repeat center center/cover;
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.797);
}

.card-custom {
    position: relative;
    color: white;
    border-radius: 10px;
    overflow: hidden;
}

.card-custom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(50%);
}

.card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.icon {
    font-size: 24px;
    margin-right: 10px;
}





.title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.stat-box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150px;
    text-align: right;
}

.highlight-box .value {
    color: #f4a700;
    font-weight: bold;
    font-size: 24px;
}

.icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.value {
    font-size: 20px;
    font-weight: bold;
}

.description {
    font-size: 14px;
    color: #666;
}







.feature-card {
    background: url('/public/assets/images/6.png') no-repeat center center/cover;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 1;
}


.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 71, 71, 0.534);
}

.download-buttons img {
    width: 150px;
    margin: 10px;
}

.reserv-section {
    background: linear-gradient(to right, #3d0059, #6a0dad);
    color: white;
    position: relative;
    text-align: center;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.img-reserv img {
    width: 250px;
    position: absolute;
    height: 230px;
    top: -50px;
    left: 0;
    bottom: 100px;
}

.testimonial {
    background: rgba(8, 8, 8, 0.819);
    color: white;
    text-align: center;
    position: relative;
}

.testimonail-title {
    display: flex;
    justify-content: space-between;
}

.testimonial-card {
    background: #111;
    border-radius: 10px;
    padding: 20px;
    text-align: right;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 10px
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background: none
}

.accordion-item {
    margin: 10px;
    text-align: right;
}

.accordion-button {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 15px;
    font-size: 1.1rem;
}

.accordion-button::after {
    margin-left: auto;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    font-weight: bold;
}

.footer {
    background-color: #222;
    color: white;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin: 0 10px;
    font-size: 20px;

}

.footer .social-icons i {
    margin: 0 10px;
    font-size: 30px;
    color: white;
}

.back-image-footer {
    background: url("/assets/images/4.png") no-repeat center center/cover;
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.back-image-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.527);
    z-index: 0;
    border-radius: 30px;

}

.back-image-footer h5,
.back-image-footer .d-flex {
    position: relative;
    z-index: 2;
    font-size: 30px;
    color: #6a1b9a;
    font-weight: bold
}

.footer-bottom {
    background-color: #6a1b9a;
    padding: 10px 0;
    text-align: center;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .social-icons a {
    margin: 0 10px;
    font-size: 20px;

}


#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #6a1b9a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-out;
}

#preloader img {
    width: 150px;
    animation: float 1s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

[data-aos] {
    opacity: 0;
    transition: none;
}

.modal-xll {
    --bs-modal-width: 1250px;
}
