
.hero-section{
    color: #000;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('..website/images/hero.svg') center/cover repeat;
    animation: moveBackground 3s ease-in-out infinite;
}

/* حركة الخلفية */
@keyframes moveBackground {
    0% {
      background-position: center 0;
    }
    50% {
      background-position: center 20px; /* مقدار الحركة للأسفل */
    }
    100% {
      background-position: center 0;
    }
  }

.hero-section h1{
color: #343F51;
font-weight: bolder;
}
.hero-section p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 20px;
    margin-bottom: 35px;
}
.hero-section a{
}

/************************ Start Tools Section *********/

.tools-section{
    background-color: #F6F9FC;
    padding: 40px 10px;
    margin-top: 30px;
}
.tools-section h2{
    color: #343F51;
    font-weight: bolder;
}
.tools-section .head-p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}
.tools-section .tool-card{
    box-shadow: 0px 0px 10px #f4f4f4;
    border-color: #f5f5f5;
    min-height: 240px;
}
.tools-section .tool-card i{
    font-size: 35px;
    color: #1e4d78;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.tools-section .tool-card h5{
    color: #343F51;
    font-weight: bolder;
}
.tools-section .tool-card .card-text{
    color: #343f50;
    font-size: 15px;
    line-height: 2;
}
.tools-section .tool-card .gradient-button{
        margin-top: 57px;
    border-radius: 20px;
    padding: 10px;
    font-size: 13px;

}
/************************* End Tools Section *************/

/************************* Start Why Section *************/

.why-section{
    padding: 40px 10px;
    margin-top: 30px;
}
.why-section h2{
    color: #343F51;
    font-weight: bolder;
}
.why-section .head-p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}
.why-section .info{
    box-shadow: 0px 0px 10px #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    background: #f7f9fc;
}
.why-section .info i{
    font-size: 35px;
    color: #1e4d78;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
/************************ End Why Section ****************/

/************************ Start Testmonails Section *********/

.testmonails{
    background-color: #F6F9FC;
    padding: 40px 10px;
    margin-top: 30px;
}
.testmonails h2{
    color: #343F51;
    font-weight: bolder;
}
.testmonails .head-p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}
.testmonails .testimonial-card{
    box-shadow: 0px 0px 10px #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

/************************ End Testmonails Section *************/

/************************ Start FAQ Section *************/

.faq-section{
    padding: 40px 10px;
    margin-top: 30px;
}
.faq-section h2{
    color: #343F51;
    font-weight: bolder;
}
.faq-section .head-p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}
.faq-section .accordion{
    margin-top: 20px;
}
.faq-section .accordion-item{
    box-shadow: 0px 0px 10px #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}


@media(max-width:991px){
    .hero-section{
        padding:  40px 0 30px;
    }
    .hero-section h1{
        font-size: 24px;
        line-height: 2;
    }
    .hero-section p{
        font-size: 17px;
        line-height: 1.8;
    }
}
