* {
    padding: 0;
    margin: 0;
}

/* Global font */
:root {
    --default-font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Cormorant Garamond", serif;
    --nav-font: "Quicksand", sans-serif;
}


/* Global Colors */
:root {
    --background-color: rgb(33 39 47);
    --background-color-dark: rgb(23 28 35);
    --default-color: #f5e39a;
    --heading-color: #f5e39a;
    --accent-color: #f5e39a;
    --accent-color2: #e76e17;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --color-active: #058b4b;
}

/* Nav Menu Colors */
:root {
    --nav-color: #f5e39a;
    --nav-color-active: #f5e39a;
    --nav-hover-color: #f5e39a;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #060606;
    --nav-dropdown-hover-color: #ef6603;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 77px;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 ;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
    font-family: var(--heading-font);
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--default-font);
}

@media only screen and (max-width: 600px) {
    .section-title {
        padding-bottom: 20px;
    }

    .section-title h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .section-title h2::after {
        width: 60px;
        margin: 4px 5px;
    }

    .section-title p {
        font-size: 0.9rem;
    }
}
/*--------------------------------------------------------------
# Header Section (Nav Bar)
--------------------------------------------------------------*/
.header {
    /* transition: background-color 0.5s ease;
    background-color: transparent; */
    background-color: var(--background-color);
}

/* .header.scrolled {
    background-color: var(--background-color);
} */

nav {
    width: 100%;
}

nav .logo {
    width: 2.5rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

nav .logo:hover {
    transform: scale(1.1);
}

nav .navbar-nav {
    display: flex;
    align-items: center;
}

nav .nav-item a {
    font-size: 15px;
    color: var(--nav-color) !important;
}

nav .nav-item {
    position: relative;
}

nav .nav-link {
    font-family: var(--heading-font, 'Cairo', sans-serif);
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    color: var(--default-font-color, #333);
    position: relative;
    transition: color 0.3s ease;
}

nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--nav-color-active);
    transition: width 0.3s ease;
}

nav .nav-link:hover::after,
nav .nav-link.active::after {
    width: calc(100% - 30px);
}

nav .nav-link:hover {
    color: var(--nav-color-active) !important;
}

nav .nav-link.active {
    color: var(--nav-color-active) !important;
}

nav .lang-btn {
    background-color: transparent;
    color: var(--accent-color);
    padding: 5px 10px;
    font-family: var(--heading-font, 'Cairo', sans-serif);
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav .lang-btn:hover {
    background-color: var(--nav-color-active);
    color: var(--background-color);
}

.navbar-toggler {
    border-color: #f5e39a
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245, 227, 154 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-toggler:not(.collapsed) {
    border-color: rgb(245, 227, 154);
}

.navbar-toggler-icon:not(.collapsed) {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245, 227, 154, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    border-color: rgb(245, 227, 154);
}

.navbar .container{
    position: relative;
}
.logo-small-screen{
    position: absolute;
    top:0;
    right:0;
}

@media (max-width: 991px) {
    nav .nav-link {
        font-size: 16px;
        padding: 10px;
    }

    nav .nav-link::after {
        bottom: 5px;
    }

    nav .nav-link:hover::after,
    nav .nav-link.active::after {
        width: calc(100% - 20px);
    }

    nav .lang-btn {
        margin-top: 10px;
    }

    nav .logo {
        width: 2.5rem;
        margin-left: 15px;
        margin-right: 0;
    }

    nav .lang-btn-div {
        text-align: left;
        width: 57%;
    }
}

@media (max-width: 767px) {
    nav .nav-link {
        font-size: 14px;
        padding: 8px;
    }

    nav .nav-link::after {
        bottom: 3px;
    }

    nav .nav-link:hover::after,
    nav .nav-link.active::after {
        width: calc(100% - 16px);
    }

    nav .logo {
        width: 2.5rem;
        margin-left: 15px;
        margin-right: 0;
    }

    .me-2 {
        margin-right: 1rem !important;
    }

    nav .lang-btn-div {
        text-align: right;
        width: 45%;
        display: none;
    }
    .logo-small-screen{
        display: inline-block!important;
    }
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
    /* background-image: linear-gradient(to bottom, var(--accent-color),#f1d6c3); */

    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

#home .text-content {
    padding-right: 40px;
}

#home .text-content h1 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#home .text-content p {
    font-family: var(--default-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

#home .home-img {
    width: 85%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    animation: fanReveal 3s ease-in-out forwards, bounce 5s infinite 3s;
}

@keyframes fanReveal {
    0% {
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }

    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

#home .cta-btn {
    border: none;
    padding: 5px 25px;
    border-radius: 7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-active);
}

#home .pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
}

#home .cta-btn a {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

#home .cta-btn i {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

#home .cta-btn:hover {
    background-color: var(--color-active);
}

#home .cta-btn:hover a {
    color: #ffba0d;
}

#home .cta-btn:hover i {
    color: #ffba0d;
}

@media (max-width: 991px) {
    #home {
        height: auto;
        padding: 40px 0;
    }

    #home .text-content h1 {
        font-size: 1.5rem;
    }

    #home .text-content {
        padding-right: 30px;
    }

    #home .text-content p {
        font-size: 0.9rem;
    }

    #home .home-img {
        margin-top: 30px;
        max-width: 350px;
    }

    #home .cta-btn {
        padding: 10px 30px;
    }

    #home .cta-btn a {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    #home {
        padding: 30px 0;
        text-align: center;
    }

    #home .text-content h1 {
        font-size: 1.2rem;
    }

    #home .text-content {
        padding-right: 12px;
    }

    #home .text-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    #home .home-img {
        max-width: 300px;
        margin-top: 20px;
    }

    #home .cta-btn {
        padding: 8px 25px;
    }

    #home .cta-btn a {
        font-size: 0.85rem;
    }

    #home .row {
        flex-direction: column-reverse;
        margin-top: 35px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about.section {
    padding: 60px 0;
    background-color: var(--background-color-dark);
}

.about .content h5 {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.about .content h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.about .content p {
    font-family: var(--default-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 400;
    text-align: justify;
}

.about-img {
    padding-left: 4rem;
}

.about-img .about-img-border {
    width: 330px;
    height: 370px;
    border: solid 8px var(--accent-color);
    border-radius: 5px;
    position: relative;
    margin-right: auto;
}

.about-img .about-img-container {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 5px;
    width: 330px;
    height: 370px;
    overflow: hidden;
}

.about-img .about-img-container .about-photo,
.about-img .about-img-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-img .about-img-container .about-photo {
    position: relative;
}

.about-img .about-img-container .about-cover-opacity-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 227, 154, 0.5);
    transform: translateY(100%);
    transition: transform 1s ease;
}

.about-img .about-img-container:hover .about-cover-opacity-photo {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .about .section-title h2 {
        font-size: 2rem;
    }

    .about .section-title p {
        font-size: 1rem;
    }

    .about-img {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-img .about-img-border,
    .about-img .about-img-container {
        width: 100%;
        max-width: 280px;
        height: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .about .content h5 {
        font-size: 1rem;
    }

    .about .content h4 {
        font-size: 1.2rem;
    }

    .about .content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 575px) {
    .about .section-title h2 {
        font-size: 1.5rem;
    }

    .about .section-title p {
        font-size: 0.85rem;
    }

    .about-img {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-img .about-img-border,
    .about-img .about-img-container {
        width: 100%;
        max-width: 280px;
        height: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .about .content h5 {
        font-size: 1rem;
    }

    .about .content h4 {
        font-size: 1.5rem;
    }

    .about .content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/*--------------------------------------------------------------
# Experiences Section
--------------------------------------------------------------*/
.experience .content {
    border-top: solid var(--accent-color) 10px;
    border-bottom: solid var(--accent-color) 10px;
    border-radius: 0.7rem;
    width: 30%;
    height: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience .content img {
    width: 75%;
    height: 90%;
    object-fit: contain;
}

.experience .experience1 {
    background-color: var(--color-active);
}

.experience .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.experience .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .experience .content {
        width: 40%;
        height: 180px;
        padding: 1.5rem;
    }

    .experience .swiper-slide-active {
        transform: scale(1.03);
    }
}

@media (max-width: 767px) {
    .experience .content {
        width: 60%;
        height: 150px;
        padding: 1rem;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }

    .experience .swiper-slide-active {
        transform: scale(1);
    }

    .swiper .mySwiper {
        padding: 0 10px;
    }

    .swiper-wrapper {
        align-items: center;
    }
}

/*--------------------------------------------------------------
# Services Section 
--------------------------------------------------------------*/
#service .service-content {
    height: 300px;
    background-color: var(--default-color);
    color: var(--background-color);
    text-align: left;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#service .service-content .service-content-box {
    text-align: left!important;
}

#service .service-content p {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--default-font);
    margin-bottom: 0;
}

#service .service-title {
    height: 300px;
    background-color: var(--default-color);
    color: var(--background-color);
    text-align: left;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    opacity: 1;
    transition:  opacity 1s ease;
}

#service .service-title:hover {
    opacity: 0;
}

#service .service-title .service-title-i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    border: rgba(6, 6, 6, 0.5) 2px solid;
    padding: 3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service .service-title i {
    font-size: 15px;
    color: rgba(6, 6, 6, 0.5);
}

#service .service-title .service-title-box {
    text-align: center;
}

#service .service-title h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-family: var(--heading-font);
}

#service .service-title-box div {
   width: 80px;
   height: 80px;
   border: rgb(33 39 47) 2px solid;
   border-radius: 50%;
   margin: auto;
   padding: 1rem;
}
#service .service-title-box i {
    font-size: 2rem;
    color: rgb(33 39 47);
}

@media (max-width: 1200px) {
    #service .service-title h3 {
        font-size: 1.15rem;
        line-height: 1.6rem
    }

    #service .service-content p {
        font-size: 0.95rem;
        line-height: 1.4rem
    }

    #service .service-title-i {
        top: 0.9rem;
        left: 0.9rem
    }
}

@media (max-width: 992px) {
    #service .service-title h3 {
        font-size: 1.1rem;
        line-height: 1.5rem
    }

    #service .service-content p {
        font-size: 0.9rem;
        line-height: 1.3rem
    }

    #service .service-title-i {
        top: 0.8rem;
        left: 0.8rem
    }
}

@media (max-width: 768px) {

    #service .service-title h3 {
        font-size: 1rem;
        line-height: 1.4rem
    }

    #service .service-content p {
        font-size: 0.85rem;
        line-height: 1.2rem
    }

    #service .service-title-i {
        top: 0.7rem;
        left: 0.7rem
    }
}

@media (max-width: 576px) {
    #service .service-title {
        height: 200px;
        padding: 1rem
    }

    #service .service-content {
        height: 200px;
        padding: 1rem
    }

    #service .service-title h3 {
        font-size: 0.9rem;
        line-height: 1.3rem
    }

    #service .service-content p {
        font-size: 0.8rem;
        line-height: 1.2rem
    }

    #service .service-title-i {
        top: 0.6rem;
        left: 0.6rem;
    
    }

    #service .service-title i {
        font-size: 12px
    }

    #service .service-title-box div {
        display: flex;
        text-align: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        padding:0.8;
     
     }
     #service .service-title-box i {
         font-size: 1rem;
         color: rgb(33 39 47);
     }
}

/*--------------------------------------------------------------
# Whatsapp BOX Section 
--------------------------------------------------------------*/
#whatsapp {
    background-color: var(--default-color);
    border-radius: 1rem
}

#whatsapp p {
    color: var(--background-color);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--default-font);
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.whatsapp-icon {
    color: #25D366;
    font-size: 2.5rem;
    animation: bounce 2s infinite
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

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

    60% {
        transform: translateY(-5px)
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .whatsapp-icon {
        font-size: 2.3rem
    }

    #whatsapp p {
        font-size: 0.95rem
    }
}

@media (max-width: 992px) {
    .whatsapp-icon {
        font-size: 2rem
    }

    #whatsapp p {
        font-size: 0.9rem
    }
}

@media (max-width: 768px) {
    .whatsapp-icon {
        font-size: 1.8rem
    }

    #whatsapp p {
        font-size: 0.85rem
    }
}

@media (max-width: 576px) {
    .whatsapp-icon {
        font-size: 1.5rem
    }

    #whatsapp p {
        font-size: 0.8rem;
        gap: 8px
    }
}

@media (max-width: 400px) {
    .whatsapp-icon {
        font-size: 1.3rem
    }

    #whatsapp p {
        font-size: 0.75rem;
        gap: 6px
    }
}

/*--------------------------------------------------------------
# Reviews Section 
--------------------------------------------------------------*/
#review {
    background-color: var(--background-color-dark);
}

#review .review-video {

    position: relative;
    height: 100%;
}

#review video,
#review source {
    width: 100%;
    height: 100%;
}

#review .black-cover {
    position: absolute;
    width: 100%;
    height: 99%;
    top: 0;
    left: 0;
    background-color: rgba(245, 227, 154, 0.9);

}

#review .review-video .content {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

#carouselExampleDark {
    width: 90%;
    height: 85%;
    background-color: rgba(0, 0, 0, 0.2);
}

#carouselExampleDark .carousel-item {
    width: 100%;
    text-align: center;
    padding: 100px;
    color: black;
}

#carouselExampleDark .carousel-item .review-name {
    font-family: var(--default-font);
    font-size: 2.5rem;
    line-height: 1.8;
    color: black;
    font-weight: 500;
}

#carouselExampleDark .carousel-item .review-content {
    font-family: var(--default-font);
    font-size: 1.3rem;
    line-height: 1.8;
    color: black;
    font-weight: 500;
    text-align: left;
}

#carouselExampleDark .carousel-item i {
    font-size: 1rem;
    color: yellow;
}

#carouselExampleDark .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
}

#carouselExampleDark .carousel-indicators {
    margin-bottom: 3rem !important;
}

@media (max-width: 991px) {

    #review video,
    #review source {
        width: 100%;
        height: 250px;
    }

    #carouselExampleDark .carousel-item {
        padding: 1rem;

    }

    #carouselExampleDark {
        width: 95%;
        height: 90%;
    }

    #carouselExampleDark .carousel-item .review-name {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    #carouselExampleDark .carousel-item .review-content {
        font-size: 0.7rem;
        line-height: 1;
        justify-content: right;
        padding-bottom: 1rem;
    }

    #carouselExampleDark .carousel-item i {
        font-size: 0.8rem;
    }

    #carouselExampleDark .carousel-indicators button {
        width: 5px;
        height: 5px;
    }

    #carouselExampleDark .carousel-indicators {
        margin-bottom: 1rem !important;
    }

}

/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/
#client .swiper {
    pointer-events: none;
}

#client .content {
    background-color: var(--accent-color);
    border-radius: 0.7rem;
    width: 14%;
    height: 200px;
    text-align: center;
    padding: 2.5rem;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#client .content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

#client .content:hover img {
    transform: scale(1.3);
}

#client .client2 img,
#client .client3 img,
#client .client6 img,
#client .client7 img,
#client .client9 img,
#client .client10 img,
#client .client12 img,
#client .client13 img,
#client .client14 img {
    mix-blend-mode: multiply !important;
}

#client .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

#client .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 768px) {
    #client .content {
        width: 35%;
        height: 150px;
        padding: 1.5rem;
        margin: 0.3rem;
    }

    #client .content:hover img {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    #client .content {
        width: 55%;
        height: 120px;
        padding: 1rem;
    }

    #client .content:hover img {
        transform: scale(1.03);
    }
}

/*--------------------------------------------------------------
# Questions Section
--------------------------------------------------------------*/
#question {
    background-color: var(--background-color-dark);
}

#question .section-question {
    background-color: var(--accent-color);
    border-radius: 1rem;
}

#question h2 {
    font-size: 1rem;
    font-family: var(--heading-font);
}

.accordion-button {
    background-color: transparent;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left!important;
    padding: 1rem;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    margin-right: 0;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease-in-out;

}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion {
    --bs-accordion-bg: transparent;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button:active {
    box-shadow: none;
}

.accordion-body {
    padding: 1rem;
}

.question-more a {
    width: 110px;
    font-family: var(--default-font);
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: auto;
}

.question-more i {
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer {
    background-color: var(--background-color);
    padding: 2rem;
}

#footer a {
    text-decoration: none;
}

#footer .logo {
    width: 35%;
    height: 35%;
    margin: auto;
    transition: transform 0.3s ease;
}

#footer .logo:hover {
    transform: scale(1.1);
}

#footer li {
    width: auto;
    padding: 0.5rem !important;
}

#footer i {
    font-size: 1.8rem;
    transform: all 1s;
    color: var(--default-color);
}

#footer .buyicon:hover {
    color: var(--color-active) !important;
}

#footer .twitter:hover {
    color: rgb(36, 35, 35) !important;
}

#footer .linkedin:hover {
    color: #0a66c2 !important;
}

#footer .facebook:hover {
    color: #0866ff !important;
}

#footer .tiktok:hover {
    color: rgb(247, 0, 0) !important;
}

#footer .instagram:hover {
    color: #d62976 !important;
}

#footer .whatsapp:hover {
    color: #25d366 !important;
}

.box-copyright {
    margin: auto;
    width: 100%;
    background-color: var(--background-color);
}

.box-copyright .copyright {
    text-align: end;
}

#footer h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-active);
    margin-bottom: 15px;
}

#footer p {
    font-family: var(--default-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 400;
    text-align: left;
}

#footer h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

#footer p {
    font-family: var(--default-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 400;
    text-align: justify;
}

@media (max-width: 991px) {
    #footer h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    #footer p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .box-copyright {
        text-align: center;
    }

    .box-copyright .copyright {
        text-align: center;
    }
}

@media (max-width: 767px) {
    #footer h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    #footer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .box-copyright {
        text-align: center;
    }

    .box-copyright .copyright {
        text-align: center;
    }
}

@media (max-width: 575px) {
    #footer h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    #footer p {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    .box-copyright {
        text-align: center;
    }

    .box-copyright .copyright {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    #footer h4 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    #footer p {
        font-size: 1.2rem;
        line-height: 2;
    }
}

.to-up-icon {
    bottom: 50px;
    right: 35px;
    z-index: 255;
    background-color:rgb(232, 240, 235);
    padding: 8px 11px;
   
}

.to-up-icon i {
    font-size: 2.5rem;
    color: red!important;
}

.to-up-icon2 {
    bottom: 110px;
    right: 35px;
    z-index: 255;
    background-color: #25D366;
    padding: 8px ;
}

.to-up-icon2 i {
    font-size: 2.5rem;
    color: rgb(232, 240, 235);
}
.box-copyright  a {
    text-decoration: none;
    color: rgb(232, 240, 235)
}



@media (max-width: 991.98px) {
    .lang-btn-div {
        opacity: 0;
        transform: translateY(-25px); 
        pointer-events: none;
    }

    .navbar-collapse.show ~ .lang-btn-div {
        opacity: 1;
        transform: translateY(0); 
        pointer-events: auto;
    }
}