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

.shorten_url{
    background-color: #F6F9FC;
    padding: 40px 10px;
    margin-top: 30px;
}

.shorten_url h2{
    color: #343F51;
    font-weight: bolder;
}
.shorten_url .card{
    box-shadow: 0px 0px 10px #f4f4f4;
    border-color: #f5f5f5;
}
.shorten_url .shortened-url{
    background: #f7f9fc;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ececec;
}
.shorten_url .shortened-url a,
.shorten_url .original-url a{
    color: #1c4974;
}
.shorten_url .original-url{
    background: #f7f9fc;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ececec;
}
.shorten_url .share-text{
    font-weight: bold;
    margin-top: 20px;
}


/*********** Start How Create **********/

.how-create{
    background-color: #fff;
    padding: 40px 10px;
    margin-top: 30px;
}

.how-create h2,
.why-use h2{
    color: #343F51;
    font-weight: bolder;
}
.how-create .head-p,
.why-use .head-p{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}
.how-create ol,
.why-use ul{
    margin-top: 20px;
    line-height: 2;
    color: #343f50;
    font-size: 18px;
}



/*************** Start Why Use *******/

.why-use{
    padding: 40px 10px;
    margin-top: 30px;
    background-color: #fff;
}

/************ Start More Tools *********/

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

}




/************************ 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;
    }
}
