*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: var(--font);
}
:root{
    --font: Inter , sans-serif;
    --primaryColor : #243A50;
    --secondColor :  #64748B ;
    --zaher8ame2 : #9E005D ;
    --shadow :  0 4px 6px rgba(0, 0, 0, 0.1)
}
html, body {
    overflow-x: hidden !important;
}
/* Start Section Home */
main {
    background: linear-gradient(278.18deg, #002C51 6.29%, #032643 61.77%);
    overflow: hidden;
    color: white;
    padding-bottom: 130px;
    position: relative;
    overflow: hidden;
}
main::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("../images/image-2.png");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;        
    z-index: 1; 
}

main .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
main .content nav{
    max-width: 1240px;
    width: 100%;
    height: 70px;
    background-color: white;
    margin: 50px auto 10px;
    gap: 8px;
    border-radius: 80px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 999999999;
    top: 0;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


main .content nav .links .logo img{
    object-fit:contain;
}
   
   
main .content nav .links{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
main .content nav .links .content-links{
    display: flex ;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 100;
}
main .content nav .links .content-links .contact-us-2{
    display: none;
}
main .content nav .links .icon{
    border-radius: 50%;
    padding: 8px 10px;
    display: none;
    color: var(--primaryColor);
    background-color: white;
    transition-property: background-color;
    transition-duration: 0.3s;
}
main .content nav .links .icon:hover{
    background-color: gray;
    cursor: pointer;
}    
main .content nav .links .content-links .logo{
    color: var(--secondColor);
}
main .content nav .links .content-links a{
    text-decoration: none;
    font-family: var(--font);
    font-weight: 400;
    color:var(--primaryColor);
    font-size: 20px;
}
main .content-links a.active,
main .contact a.active {
   
    font-weight: 600 !important;
}
main .content nav .links .contact a{
    text-decoration: none;
    font-family: var(--font);
    color: white;
    font-weight: 600;
    padding: 13px 30px;
    font-size: 20px;
    background-color:#002C51;
    border-radius: 500px;
    transition-property: color background-color;
    transition-duration: 0.5s;
}   
main .content nav .links .contact a:hover{
    background-color : #002542;
}
main .content .mini-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0 20px 0;
    position: relative;
    z-index: 999;
}
main .content .mini-links a{
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 600;
}
main .content .mini-links span{
    font-size: 26px;
    margin : 0 5px ;
    color: white;
}
main .content header{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
    color: white;
} 
main .content header .head-1{
    font-family: var(--font);
    font-weight: 600;
    font-size: 60px;
    line-height: 140%;
    margin:  0 auto ;
    text-align: center;
    max-width: 1200px;

}
main .content header .head-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    font-weight: 200;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #fffffff1;
    letter-spacing: 2px;
    margin-top: 10px;
}
main .content .description{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font);
    gap: 30px;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid #FFFFFF80;
    border-bottom: 1px solid #FFFFFF80;
    width: 100%;
}
main .content .description div{
    display: flex;
    flex-direction: column;
}
main .content .description div h5{
    color: white;
    font-weight: 600; 
    font-family: var(--font);   
}
main .content .description div small{
    text-align: start;
}
@media screen and (min-width: 1600px) {
    main .content nav {
        max-width: 1440px;
    }
}
@media screen and (max-width:992px) {
    main .content nav{
        width: 90%;
    }
    main .content nav .links .content-links{
        position: absolute;
        flex-direction: column;
        top: 106px;
        left: 50%;
        width: 80%;
        align-items: start;
        border-radius: 10px;
        background-color: var(--primaryColor);
        padding: 27px;
        transform: translateX(-50%);
    }
    main .content nav .links .content-links a{
        color: white;
    }
    
    main .content nav .links .logo img{
        width: 100px !important;
    }
    
    main .content nav .links .content-links .contact-us-2{
        display: inline;
    }
    main .content nav .links .icon{
        display: flex;
    }
    main .content nav .links .contact{
        display: none;
    }
    main .content header .head-1{
        font-size: 34px;
    }
}
@media screen and (max-width:568px) {
    main{
        padding-bottom: 200px;
    }
}
/* End Section Home */

/* Start Section Contacts */
.contacts{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 90%;
    left: 50%;
    bottom: 88px;
    height: 180px;
    transform: translateX(-50%);
    background-color: white;
    padding: 30px 0;
    color: var(--primaryColor);
    border-radius: 48px;
    border: 1px solid #E4E4E4;
    z-index: 222;
    /* padding-left: 8%; */
    /* flex-wrap: wrap; */
}
.contacts .data{
    display: flex;
    flex-direction: column;
}
.contacts .data div{
    display: flex;
    align-items: center;
    gap: 15px;
}
.contacts .data div img{
    width: 32px;
    height: 32px;
}
.contacts .data div p{
    font-weight: 600;
    font-size: 20px;
    vertical-align: middle;
    margin: 0;
}
.contacts .data .comminication{
    /* font-weight: bold; */
    padding-left: 47px;
}
@media screen and (max-width:992px) {
    .contacts{
        bottom: 92px;
    }
}
@media screen and (max-width:768px) {
    .contacts{
        gap: 40px;
        align-content: start;
        align-items: start;
        bottom: 89px;
        padding: 20px 0px;
        justify-content: center;
        flex-wrap: wrap;
        height: 215px;
    }
}
@media screen and (max-width:568px) {
    .contacts{
        top: -162px;
        position: relative;
        height: 355px;
        bottom: -388px;
        justify-content: center;
        padding: 30px 30px;
    }
    .contacts .data{
        width: 80%;
    }
}
/* End Section Contacts */

/* Start Section About */
.about .section{
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.about .section .description{
    color: var(--primaryColor);
    width: 45%;
}
.about .section .description .head-1{
    font-size: 24px;
    padding-top: 20px;
}
.about .section .description .head-2{
    font-weight: 600;
    font-size: 45px;
}
.about .section .description .head-2 span{
    color: var(--zaher8ame2);
}
.about .section .description .parag{
    margin-top: 20px;
    max-width: 600px;
    color: var(--secondColor);
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 32px;
}
.about .section .description .percentage{
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 20px;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.about .section .description .percentage div{
    display: flex;
    gap: 30px;
    align-items: center;
}
.about .section .description .percentage div span{
    font-weight: 600;
    font-size: 40px;
    color: #2ECC71;
}
.about .section .description .percentage div p{
    color: var(--secondColor);
    font-size: 16px;
    max-width: 127px;
    margin: 0;
}
@media screen and (max-width:1200px) {
    .about .section{
        gap: 30px;
    }
    .about .section .image{
        width: 477px;
    }
    .about .section .image img{
        width: 100%;
        height: 536px;
    }
    .about .section .description{
        width: 42%;
    }
}
@media screen and (max-width:992px) {
    .about{
        margin-top: -50px;
    }
    .about .section{
        justify-content: center;
    }
    .about .section .image{
        width: 593px;
        height: 358px;
    }
    .about .section .image img{
        height: 100%;
    }
    .about .section .description{
        width: 95%;
    }
}
@media screen and (max-width:768px) {
    .about .section .description .head-2{
        font-size: 30px;
    }    
    .about .section .description .parag{
        font-size: 18px;
    }
}
/* Start Section About

/* Start Section Our Services */
.our-services{
    margin-top: 80px;
}
.our-services .section{
    background-image: url("../images/89e6e1f778d5d3b2e4a244bcd4fde3de5f3d1c18.jpg");
    width: 100%;
    height: 480px;
    background-size:cover ;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.our-services .section .boxes{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    top: 180px;
}
.our-services .section .boxes .box{
    background-color: white;
    border-radius:24px ;
    padding: 40px 20px;
    box-shadow: var(--shadow);
    width: 340px;
}
.our-services .section .boxes .box div{
    text-align: center;
    margin-bottom: 20px;
}
.our-services .section .boxes .box h3{
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}
.our-services .section .boxes .box p{
    padding-top :20px;
    border-top: 1px solid #E4E4E4 ;
    color: var(--secondColor);
    text-align: center;
}
@media screen and (max-width:1200px) {
    .our-services .section .boxes{
        top: 100px;
    }
    .our-services .section{
        height: 900px;
        align-items: start;
    }
}
@media screen and (max-width:992px) {
    .our-services .section{
        height: 1300px;
    }
}
/* End Section Our Services */

/* Start Section Stories */
.stories{
    background: linear-gradient(252.44deg, #002C51 53.46%, #0E3759 100%);
    height: 500px;
    margin-top: 240px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.stories .head-1{
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 600;
}
.stories .star-1 , .stories .star-2 , .stories .star-3{
    position: absolute;
}
.stories .star-1{
    top: 40px;
    left: 80px;
}
.stories .star-2{
    top: 67px;
    left: 1066px;
}
.stories .star-3{
    top: 122px;
    left: 1306px;
}
.stories .head-1{
    margin-top: 200px; 
    color: white;
}
.stories .description{
    position: relative;
    width: 90%;
    top: 50px;
    padding: 50px;
    margin: auto;
    background-color: white;
    min-height: 400px;
    z-index: -1;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.stories .description::before {
    content: "";
    position: absolute;
    top: -200px; left: 0;
    width: 100%; height: 150%;
    background-image: url("../images/chaback.png");
    background-size: cover;
    background-repeat: no-repeat;      
    z-index: -1; 
    opacity: 1;
}
.stories .description .content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.stories .description .content .parag{
    font-weight: 500;
    font-size: 22px;
    font-weight: 500;
    color: #64748B;
    padding-top: 5px;
}
.stories .description .content .between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.stories .description .content .between .owner{
    font-weight: 600;
    font-size: 22px;
    color: var(--primaryColor);
    margin: 0;
}
.stories .description .content .between div{
    display: flex;
    gap: 20px;
}
.stories .description .content .between div span{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primaryColor);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    padding: 12px;
    color: white;
    font-size: 24px;
    font-weight: 300;
    position: relative;
    z-index: -2;
}
@media screen and (max-width:1200px) {
    .stories{
        margin-top: 70px;
    }
    .stories .star-3{
        left: 1106px;
    }
}
@media screen and (max-width:992px) {
    .stories .star-2{
        left: 806px;
    }
    .stories .star-3{
        left: 706px;
    }
}
@media screen and (max-width:768px) {
    .stories .star-2{
        left: 406px;
    }
    .stories .star-3{
        left: 506px;
    }
}
@media screen and (max-width:568px) {
    .carousel-item{
        min-height:400px !important;
    }
    .stories .description{
        min-height: fit-content;
        margin-top: -87px;
        padding:10px;
    }
     .stories .star-2{
        left: 206px;
    }
    .stories .star-3{
        left: 306px;
    }
    .stories .head-1{
        font-size: 30px;
    }
}

#storiesCarousel {
    width: 100%;
}

.carousel-item {
    padding: 20px;
}

.carousel-control-prev, 
.carousel-control-next {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primaryColor);
    border-radius: 6px;
    color: white;
    font-size: 24px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    opacity: 1;
}

.carousel-control-prev span, 
.carousel-control-next span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
    background-color: var(--primaryColor);
    opacity: 0.9;
}

.carousel-indicators {
    display: none;
}
/* End Section Stories */

/* Start Section Answers */
.questions{
    padding: 30px 0;
    margin-top: 300px;
}
.questions .answer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 80%;
    margin: 0 auto;
}
.questions .answer .head-1{
    font-weight: 600;
    text-align: center;
    font-size: 50px;
}
.questions .answer .head-1 span{
    color: var(--zaher8ame2);
}
.questions .answer .parag{
    color: var(--secondColor);
    letter-spacing: 1px;
    text-align: center;
    font-size: 20px;
}
.questions .description{
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.questions .description .data{
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 45px;
    color: var(--primaryColor);
}

.faq-item.aos-init.aos-animate {
    border-bottom: 1px solid #f2f4f5;
    padding-bottom: 10px;
}

.questions .description .data div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}
/* .faq-question {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #1f3246;
} */

.faq-item{
    display: flex;
    flex-direction: column;
}
.questions .description .data .faq-item .faq-answer{
    font-size: 18px;
    color: var(--secondColor);
}
.faq-icon {
      font-size: 22px;
      transition: transform 0.2s;
    }
  .open .faq-answer {
      display: block;
    }
    /* .open .faq-icon {
      transform: rotate(45deg); /* يحول الـ + إلى × */
    /* } */ 
.questions .description .data div p{
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: var(--primaryColor);
}
.questions .description .data div img{
    cursor: pointer;
}
.questions .description .data .click{
    display: none;
}
.questions .description .image{
    width: 40%;
}
.questions .description .image img{
    width: 100%;
}
.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.open .faq-answer {
  display: block;
}

@media screen and (max-width:1200px) {
    .questions .description .data{
        width: 50%;
    }
}
@media screen and (max-width:992px) {
    .questions .description{
        justify-content: center;
        width:95%;
        margin-inline:auto;
    }
    .questions .description .data , .questions .description .image{
        width: 100%;
    }
}
@media screen and (max-width:568px) {
    .questions{
        margin-top: 300px;
    }
    .questions .answer .head-1{
        font-size: 30px;
        line-height: 50px;
    }
    .questions .description .data div p{
        font-size: 22px;
    }
}
/* End Section Answers */

/* Start Section help */
.help{
    position: relative;
    margin-top: 50px;
    z-index: 1;
    min-height: 580px;
    background: #002c51;
}
.help:before{
    content : "" ;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background: url("../images/cart.jpg");
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
}
.help .section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 580px;
    gap: 17px;
    color: white;
}
.help .section h2{
    font-weight: 600;
    color: #FFCD00;
}
.help .section h1{
    font-size: 47px;
    text-align: center;
}
.help .section .line{
    width: 265px;
    height: 4px;
    border-radius: 500px;
    background: #E7E7E766;
}
.help .section p{
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 300;
    max-width: 1000px;
    margin-top: 10px;
}
.help .section button{
    border: 2px solid white;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    width: 200px;
    height: 60px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-weight: 600;
    transition-property: all;
    transition-duration: 0.5s;
}
.help .section a{
    text-decoration: none;
}
.help .section button:hover{
    background-color: #FFCD00;
    border: none;
}
@media screen and (max-width:786px) {
    .help .section h1{
        font-size: 30px;
    }
    .help .section p{
        font-size: 18px;
    }
}
/* End Section help */
/* Start Footer */
footer{
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
}
footer small{
    font-weight: 400;
    font-size: 16px;
    color:#7e7e7e;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--primaryColor);
}
footer .head-1{
    font-weight: 700;
    font-size: 50px;
    color: #0A142F;
}
footer .parag-1{
    font-weight: 400;
    font-size: 20px;
    margin: 10px 0;
}
footer button{
    text-decoration: none;
    font-family: var(--font);
    background-color: var(--primaryColor);
    font-weight: 600;
    padding: 17px 30px;
    font-size: 20px;
    color: white;
    border: none;
    margin-top: 30px;
    border-radius: 10px;
    transition-property: color background-color;
    transition-duration: 0.5s;
    margin-bottom: 30px;
}
footer button:hover{
    background-color:gainsboro;
    color: var(--primaryColor);
}
footer .parag-2{
    font-weight: 400;
    margin-top: 15px;
    font-size: 14px;
    color: #0A142F;
}
footer .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 10px 20px;
    border-top :1px solid #8b8b8b64
}
footer .nav .icon{
    color: var(--secondColor);
}
footer .nav .links{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
footer .nav .links a{
    text-decoration: none;
    color: #0A142F;
    font-weight: 500;
    font-size: 16px;
}
footer .nav .icons{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
footer .nav .icons a{
    border-radius: 100%;
    border: 1px solid rgba(128, 128, 128, 0.356);
    color: var(--secondColor);
    padding: 10px 15px;
}
@media screen and (max-width:992px) {
    footer .head-1{
        text-align: center;
        margin-top: 10px;
    }
    footer .nav .links{
        gap: 20px;
    }  
}
@media screen and (max-width:768px) {
    footer .head-1{
        font-size: 30px;
        text-align: center;
        line-height: 40px;
    }
    footer .nav{
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }    
}
/* End Footer */