*{
    padding: 0;
    margin: 0;  
    box-sizing: border-box;
}
body{
    direction: ltr;
}

/* 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: #ffffff;
    --default-color: #444444; 
    --heading-color: #2a2c39;
    --accent-color: #b38e57; 
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --color-active: #997439 ;
}

/* Nav Menu Colors */
:root {
--nav-color: #b38e57;
--nav-color-active:#b38e57;
--nav-hover-color: #b38e57; 
--nav-mobile-background-color: rgb(253, 246, 236);
--nav-background-color: #fdf6ec; 
}

/* Smooth scroll */
:root {
scroll-behavior: smooth;
}
  
/*--------------------------------------------------------------
# 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: --nav-background-color 0.5s ease;
    background-color: var(--nav-background-color);
}
.header.scrolled {
    background-color:var(--nav-background-color);
}
nav {
    width: 100%;
}
nav .logo {
    width: 3rem;
    height: 3rem;
    transition: transform 0.3s ease;
}
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-ar, 'Cairo', sans-serif);
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    color: var(--nav-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(--nav-color);
    padding: 5px 10px;
    font-family: var(--heading-font-ar, '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(--nav-background-color);
}

.navbar-toggler {
    border-color:var(--nav-color);
}

.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(237, 187, 26, 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: var(--nav-color);
}

.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(237, 187, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    border-color: var(--nav-color);
}

@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: 0;
        margin-right: 15px;
    }
    nav .lang-btn-div{
        text-align: left;
        width: 57%;
    }
}

@media (max-width: 780px) {
    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: 3rem;
        height: 3rem;
        margin-left: 0;
        margin-right: 15px;
    }
    nav .lang-btn-div{
        text-align: center;
        width: 100%;

    }
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home ,.carousel-item {
    height: 100vh;
}

#home .carousel-item1{
    background-image: url(../images/cover1.jpg);
    background-size: cover;
}

#home .carousel-item2{
    background-image: url(../images/cover6.jpeg);
    background-size: cover;
}

#home .carousel-item3{
    background-image: url(../images/cover3.jpg);
    background-size: cover;
}

#home .carousel{
    position:relative
}
#home .carousel-inner-cover{
    position:absolute;
    left:0;
    top: 0;
    z-index: 55;
    width:100%;
    height: 100%;
    background-color: rgba(202, 172, 123,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .carousel-inner-cover .box-title{
    width: 50%;
} 
.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
#home .marquee h1 {
    display: inline-block;
    font-size: 4rem;
    line-height: 86.4px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to left, #462e02, #7c591f);
    background-size: 200% auto;
    animation: slide 15s linear infinite;
}
@keyframes slide {
    0% { transform: translateX(100%); } 
    100% { transform: translateX(-100%); }
}
#home h2 {
    display: block;
    font-size: 2rem;
    line-height: 86.4px;
    text-transform: capitalize;
    font-weight: 600;
    color: #462e02;
}
@media (max-width: 991px) {
    #home .carousel-inner-cover .box-title{
        width: 100%;
    } 

    #home .marquee h1 {
        font-size: 2rem;
    }

    #home h2 {
        padding-right: 30px;
        font-size: 1.5rem;
    }

}

@media (max-width: 767px) {
    #home .carousel-inner-cover .box-title{
        width: 100%;
    } 

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

    #home h2{
        padding-right: 10px;
        font-size: 1.2rem;
    }

    #home .carousel-item1{
    background-image: url(../images/covers5.jpg);
    background-size: cover;
    }

    #home .carousel-item2{
        background-image: url(../images/covers4.jpg);
        background-size: cover;
    }

    #home .carousel-item3{
        background-image: url(../images/covers6.jpg);
        background-size: cover;
    }

}

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

.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;
    margin-bottom: 1rem;
}

.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);
}

#about .about-details{
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 16px;
    transition: color 1s ease;
}
#about .about-details i{
   font-size: 2.8rem;
   color: var(--accent-color);
   margin-right: 1rem;
}
#about .about-details h5{
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

#about .about-details p{
    font-size: 1rem;
}

#about .about-details:hover i,
#about .about-details:hover h5{
    color: var(--color-active);
}

@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 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 h4 {
        font-size: 1.5rem;
    }

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

    #about .about-details i{
        font-size: 2rem;

    }
    #about .about-i{
         padding: 1rem; 
    }
     #about .about-details h5{
         font-size: 1rem;
   
    }
     
    #about .about-details p{
         font-size: 0.85rem;
    }
}

/*--------------------------------------------------------------
#about abdallah Section
--------------------------------------------------------------*/
.about-abdallah {
   background-color: var(--nav-background-color);
}
.about-abdallah  img{
   width: 10rem;
   height: 10rem;
}
.about-abdallah .about-abdallah-data{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.about-abdallah .about-abdallah-data  p{
    font-family: var(--default-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 400;
    text-align: left;
    margin-bottom: 1rem;
}
@media (max-width: 1200px) {
   .about-abdallah .section-title h2 {
        font-size: 2rem;
    }
   .about-abdallah  .section-title p {
        font-size: 1rem;
    }
    .about-abdallah .about-abdallah-data  p{
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 575px) {
    .about-abdallah  .section-title h2 {
        font-size: 1.5rem;
    }
  .about-abdallah .section-title p {
        font-size: 0.85rem;
    }
    .about-abdallah .about-abdallah-data  p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

}


/*--------------------------------------------------------------
#about2 Section
--------------------------------------------------------------*/
#about2  .about2-section{
    background-color: var(--nav-background-color);
    height: 450px;
    padding: 2rem;
    border-left:var(--accent-color) solid 4px ;
    transition: border-left 1s ease;
}
#about2 .about2-i{
    border:var(--accent-color) solid 4px ;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    margin: auto;
    margin-bottom: 1.5rem;
    transition: border 1s ease;
}
#about2  .about2-section i{
   color: var(--accent-color);
   font-size: 4rem;
   margin-top: 1rem;
   margin-bottom: 1rem;
   transition: color 1s ease;
}
#about2  .about2-section h3{
    color: var(--accent-color);
    text-align: center;
    transition: color 1s ease;
}
#about2  .about2-section:hover{
    border-left:#644304 solid 4px ;
}
#about2  .about2-section:hover .about2-i{
    border:#644304 solid 4px ;
}
#about2  .about2-section:hover i{
    color:#644304;
}
#about2  .about2-section:hover h3{
    color:#644304;
}

@media (max-width: 1200px) {
    #about2 .about2-section {
        height: 450px;
        padding: 1.5rem;
        border-left: var(--accent-color) solid 3px;
    }

    #about2 .about2-i {
        width: 80px;
        height: 80px;
        border: var(--accent-color) solid 3px;
        margin-bottom: 1rem;
    }

    #about2 .about2-section i {
        font-size: 3rem;
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    #about2 .about2-section h3 {
        font-size: 1.5rem;
    }

    #about2 .about2-section:hover {
        border-left: var(--color-active) solid 3px;
    }

    #about2 .about2-section:hover .about2-i {
        border: var(--color-active) solid 3px;
    }
}

@media (max-width: 480px) {
    #about2 .about2-section {
        height: 350px;
        padding: 1rem;
        border-left: var(--accent-color) solid 2px;
    }

    #about2 .about2-i {
        width: 60px;
        height: 60px;
        border: var(--accent-color) solid 2px;
        margin-bottom: 0.8rem;
    }

    #about2 .about2-section i {
        font-size: 2.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #about2 .about2-section h3 {
        font-size: 1.2rem;
    }

    #about2 .about2-section:hover {
        border-left: var(--color-active) solid 2px;
    }

    #about2 .about2-section:hover .about2-i {
        border: var(--color-active) solid 2px;
    }

    #about2 .col-lg-4{
        margin-bottom: 1rem!important;
    }
}


/*--------------------------------------------------------------
#Services Section
--------------------------------------------------------------*/
#services .service-section {
    height: 250px;
    background-color: var(--nav-background-color);
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(134, 114, 114, 0.2); 
    cursor: pointer;
    transition: transform 0.3s ease; 
}

#services .service-section:hover {
    transform: translateY(-10px);
}

#services .service-section .service-img {
    height: 70%;
    padding: 1rem;
    overflow: hidden; 
}

#services .service-section img {
    height: 100%;
    transition: transform 0.3s ease; 
}

#services .service-section:hover img {
    transform: scale(1.1);
}

#services .service-section h2 {
    font-size: 1.5rem;
    color: var(--nav-color);
}

#descrTextBox
{
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.light-box
{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(202, 172, 123,0.5);
}
.light-box  
{
    z-index: 1100;
    justify-content: center;
    align-items: center;
}
.light-box  i
{
    font-size: 30px;
    color: var(--accent-color);
    cursor: pointer;
}
.close-btn
{
    top: 20px;
    left: 20px;
}
.small-light-box{
    background-color: var(--nav-background-color);
    width: 70%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s ease; 
}
.img-box-light{
    padding: 2.5rem;
}

.img-light-box{
    width: 100%;
    height: 100%;
}

#services .small-light-box:hover .img-light-box {
    transform: scale(1.1);
}

@media screen and (max-width: 999px) {
    .small-light-box {
        width: 97%;
        height: 90%;
        padding: 1rem;
    }
    .img-box-light {
        padding: 2.5rem;
        width: 80%;
        margin: auto;
       text-align: center;
    }
    .img-light-box{
    width: 80%;
    height: 80%;
    }
    .lightBox i {
        font-size: 18px;
    }
    .close-btn {
        top: 8px;
        left: 8px;
    }
}

@media screen and (max-width: 518px) {
    .small-light-box {
        width: 97%;
        padding: 0.5rem;
    }
    .img-box-light {
        padding: 2.5rem;
        width: 80%;
        margin: auto;
       text-align: center;
    }
    .img-light-box{
    width: 75%;
    height: 75%;
    }
    .lightBox i {
        font-size: 18px;
    }
    .close-btn {
        top: 8px;
        left: 8px;
    }
}

/*--------------------------------------------------------------
# Whatsapp BOX Section #services 
--------------------------------------------------------------*/
#services .whatsapp {
    background-color: #25D366;
    border-radius: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    
}

#services .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
}

#services  .whatsapp-icon {
    color: white!important;
    font-size: 2.5rem;
    animation: bounce 2s infinite
}

@keyframes bounce {

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

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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Whatsapp BOX Section 
--------------------------------------------------------------*/
#whatsapp {
    background-color: #25D366;
    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:var(--background-color);
    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(253, 246, 236, 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(255, 255, 255, 0.5);
}

#carouselExampleDark .carousel-item {
    width: 100%;
    text-align: center;
    padding: 100px;
    color: var(--accent-color);
}

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

#carouselExampleDark .carousel-item .review-content {
    font-family: var(--default-font);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--accent-color);
    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;
    }

}

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

#question .section-question {
    background-color: var(--nav-background-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-top: 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-left: auto;
}

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

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
#contact{
    background-image: url(../images/cover2.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
    padding: 0!important;
}
#contact .pink-cover{
    width: 100%;
    height: 100%;
    background-color: rgba(253, 246, 236, 0.6);
    padding: 60px 0;
}
#contact .section-contact{
    background-color: var(--nav-background-color);
    padding: 60px 60px;
}

.contact .email-form {
  height: 100%;
}

.contact .email-form input[type=text],
.contact .email-form input[type=email],
.contact .email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  text-align: left;
}

.contact .email-form input[type=text]:focus,
.contact .email-form input[type=email]:focus,
.contact .email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .email-form input[type=text]::placeholder,
.contact .email-form input[type=email]::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact .email-form label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
}

.contact .email-form input[type=checkbox] {
  margin-right: 10px;
  cursor: pointer;
}

.contact .email-form .file-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
}

.contact .email-form .custom-file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contact .email-form input[type=file] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  text-align: left;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.contact .email-form .custom-file-upload .file-text {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  text-align: left;
  border-radius: 0;
  cursor: pointer;
}

.contact .email-form .custom-file-upload .file-text:hover,
.contact .email-form input[type=file]:focus + .file-text {
  border-color: var(--accent-color);
  color: var(--default-color);
}

.contact .email-form input[type=checkbox] {
  margin-left: 10px;
  cursor: pointer;
  accent-color: var(--accent-color);
  width: 16px;
  height: 16px;
}

.contact .email-form .col-md-12 {
  margin-bottom: 15px;
}

#contact .conaiter-left-contact h3
{
    font-size: 23px;
    line-height: 35px;
}
#contact .conaiter-left-contact h4
{
    font-size: 18px;
    line-height: 24px;
    transition: color 1s;
    margin-left: 1rem;
}
#contact .container-contact:hover h4
{
    color:var(--accent-color)  ;
}
#contact .conaiter-left-contact p
{
    font-size: 14px;
    line-height: 24.5px;
    margin-left: 1rem;
}
#contact .conaiter-left-contact i
{
   font-size: 40px;
   line-height: 40px;
   color:var(--accent-color)  ;
  
}
.contact .twasol
{
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 50%;
    line-height: 1.6;
    margin: 0 15px 0 0;
    box-shadow: 0 0 0 3px var(--color-active); 
    transition: all 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
    color:var(--accent-color);
}
.contact .twasol:hover
{
    background-color:var(--accent-color) ;
    color:#fff;
    box-shadow: 0 0 0 3px var(--color-active); 
}

@media screen and (max-width: 768px) {
    #contact .conaiter-left-contact h3
    {
    font-size: 18px;
    line-height: 24px;
    }
    #contact .conaiter-left-contact h4 {
        font-size: 16px;
        line-height: 22px;
        margin-left: 0.8rem;
    }

    #contact .container-contact:hover h4 {
        color: var(--accent-color);
    }

    #contact .conaiter-left-contact p {
        font-size: 13px;
        line-height: 22px;
        margin-left: 0.8rem;
    }

    #contact .conaiter-left-contact i {
        font-size: 36px;
        line-height: 36px;
    }

    .contact .twasol {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin: 0 12px 0 12px;
        box-shadow: 0 0 0 2.5px var(--color-active);
    }

    .contact .twasol:hover {
        background-color: var(--accent-color);
        color: #fff;
        box-shadow: 0 0 0 2.5px var(--color-active);
    }
}

@media screen and (max-width: 480px) {
    #contact .conaiter-left-contact h3
    {
    font-size: 16px;
    line-height: 22px;
    }
    #contact .conaiter-left-contact h4 {
        font-size: 14px;
        line-height: 20px;
        margin-left: 1.2rem;
    }

    #contact .container-contact:hover h4 {
        color: var(--accent-color);
    }

    #contact .conaiter-left-contact p {
        font-size: 12px;
        line-height: 20px;
        margin-left: 1.2rem;
    }

    #contact .conaiter-left-contact i {
        font-size: 32px;
        line-height: 32px;
    }

    .contact .twasol {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin: 0 10px 0 10px;
        box-shadow: 0 0 0 2px var(--color-active);
    }

    .contact .twasol:hover {
        background-color: var(--accent-color);
        color: #fff;
        box-shadow: 0 0 0 2px var(--color-active);
    }
}


/*--------------------------------------------------------------
# Blogs Section
--------------------------------------------------------------*/
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide {
    width: 400px;
    height: 560px;
    background-color: var(--nav-background-color);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(134, 114, 114, 0.2); 
    cursor: pointer; 
    filter: blur(1px);
}
.swiper-slide-active{
     filter: blur(0px);
}
.swiper-slide i{
    font-size: 3.5rem;
    display: block;
    color: rgba(116, 98, 98, 0.2);
}

.swiper-slide h3{
    text-align: left!important;
    transition: color 1s ease;
}
.swiper-slide:hover h3{
    color:var(--color-active);
}
.swiper-slide  p{
    font-family: var(--default-font);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-weight: 400;
    text-align: left!important;
    margin-bottom: 0rem;
}
.swiper-slide .advice{
    color: var(--accent-color);
    font-size: 1.2rem;
}    
@media screen and (max-width: 1024px) {
    .swiper-slide {
        width: 350px;
        height: 500px;
        padding: 0.8rem;
    }
    .swiper-slide i {
        font-size: 3rem;
    }
    .swiper-slide h3 {
        font-size: 1.5rem;
    }
    .swiper-slide p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .swiper-slide .advice {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .swiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .swiper-slide {
        width: 300px;
        height: 450px;
        padding: 0.6rem;
        border-radius: 0.8rem;
    }
    .swiper-slide i {
        font-size: 2.5rem;
    }
    .swiper-slide h3 {
        font-size: 1.3rem;
    }
    .swiper-slide p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .swiper-slide .advice {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .swiper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .swiper-slide {
        width: 90%;
        height: 400px;
        padding: 0.5rem;
        border-radius: 0.6rem;
        box-shadow: 0 2px 4px rgba(134, 114, 114, 0.15);
    }
    .swiper-slide i {
        font-size: 2rem;
    }
    .swiper-slide h3 {
        font-size: 1.1rem;
    }
    .swiper-slide p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .swiper-slide .advice {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/
#footer {
    background-color: var(--nav-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(--accent-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(--accent-color);
}

#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: justify;
}

#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: left;
}

@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)
}

