section{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;!important;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: 'Vazir', sans-serif;
}
a{
    text-decoration: none;
    padding: 0;
    margin: 0;
}
ul,li{
    padding: 0;
    margin: 0;
}

div{
    padding: 0;
    margin: 0;
}
p{
    padding: 0;
    margin: 0;
}
.navbar1{
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(140deg, #053a41, #010634 74%);

}
.menu{
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .logo{
    width: 5%;
}
.menu .hamburger-menu{
    width: 40px;
    height: 40px;
    cursor: pointer;

}
.menu .hamburger-menu .bar{
    position: relative;
    width: 30px;
    height: 3px;
    background: #eee;
    transition: .4s ease-in-out;


}
.menu .hamburger-menu .bar::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eee;
    transition: .4s ease-in-out;
}
.menu .hamburger-menu .bar::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eee;
    transition: .4s ease-in-out;

}
.bar::before{
    transform: translateY(-10px);
}
.bar::after{
    transform: translateY(10px);
}

.offcanvas{
    background: linear-gradient(140deg, #053a41, #010634 74%);
}
.offcanvas-header h5{
    background-color: #008a93;
    border-radius: 50px 0 50px 0;
    padding: 15px;
    font-size: 15px;
    color: white;
    transition: all .3s ease-in-out;
    position: relative;
}
.offcanvas-header h5::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    transform: scale(.9);
    color: #850303;
    border-radius: 50px 0 50px 0;

}
.offcanvas-header h5:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #850303;
    border-radius: 0 50px 0 50px;

}
.offcanvas-header h5:hover {
    border-radius: 0 50px 0 50px;
    box-shadow: 0 0 5px #850303;
    text-shadow: 0 0 5px #850303;
    color:#850303 ;

}
.links ul li {
    margin: 10px 0;

}
.links ul li a{
    position: relative;
    color: #666;
    padding: 20px 10px;
    transition: .3s ease-out;
    font-size: 10px;
    background: #333333;
    text-align: center;
    border-radius: 10px;
    margin: 10px 0;
    display: block;

}
.links ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: .5s;
    transform: scale(.9);
    color: #ff9200;
}
.links ul li a:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #ff9200;
}

.links ul li a:hover{
    color: #ff9200;
    box-shadow: 0 0 5px #ff9200;
    text-shadow: 0 0 5px #ff9200;}
/*body*/

.first-main{
    background-image: url('golden-texture-powder-dust-bursting-background-illustration.jpg');
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    padding: 10px 0;

}

.second-main{
    width: 100%;
    background:linear-gradient(175deg, #795a00 30%, #022141 90%);


    padding: 20px 0;
}

.title1{
    width: 100%;
    position: relative;
    padding: 15px;
    color: #ff9200;

}
.title1:before{
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 90%;
    background: linear-gradient(to top, rgb(208, 193, 248), rgb(204, 0, 0));
}
.title1:after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 20%;
    height: 4px;
    right: 0;
    background: linear-gradient(to left, rgb(208, 193, 248), rgb(204, 0, 0));
    z-index: 2;

}
.sentence {
    font-size: 18px;
    opacity: 0;
    color: white;
    transition: all .5s ease-out, top 2s ease-out; /* تغییر در opacity و موقعیت */
    transform:scale(.1) rotate(40deg) perspective(200px) translateX(100px);
    margin-top: 10px;
}
.sentence.visible {
    opacity: 1;

    transform:scale(1) rotate(0deg) perspective(0) translateX(0);
    color: #f0e8ff;


}
.second-main-title{
    color: #ea6d71;
}

.text-paragraph {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    color: white;
}



/* نمایش پاراگراف‌ها وقتی وارد صفحه می‌شوند */
.text-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.third-main{
    background-image: url('dakal.jpg');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sentence1 {
    opacity: 0; /* جملات ابتدا مخفی هستند */
    transform: translateY(20px) translateX(100px) rotate(5deg); /* جملات ابتدا پایین تر هستند */
    transition: opacity 1s ease, transform 1s ease;
    font-size: 20px;
    width: 100%;
    padding: 5px 0;
    color: whitesmoke;

}

@media (max-width: 600px) {
    .sentence1 {
        width: 90%; /* ریسپانسیو برای موبایل */
        font-size: 18px;
    }
}

.fourth-main{
    background:linear-gradient(190deg, #2d021a 30%, rgb(147, 13, 13) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.sentence2{
    font-size: 20px;
    padding: 5px 0;
    color: whitesmoke;

}

.fivth-main{
    background-image: url('red-gold.jpg');
    background-size: cover;
    background-attachment: fixed;}
.slider_wrapper{
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px;

}
.card_list .card_item{
    color: white;
    background: rgba(37, 29, 29, 0.2);
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    user-select: none;
}
.card_list .card_item .user-image{
    width: 150px;
    height: 150px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    padding: 2px;
}
.card_list .card_item .card_desc{
    font-size: 1.1rem;
    color: #e3e3e3;
    font-weight: 500;
    margin: 5px 0;
}

.slider_wrapper .swiper-pagination-bullet{
    height: 15px;
    width: 15px;
    background: #0a2d62;
}
.slider_wrapper .swiper-slide-button {
    color: whitesmoke;
    transition: all .3s ease-in;
}
.slider_wrapper .swiper-slide-button:hover {
    color: #0a2d62;
}
/*footer*/
#footer{
    width: 100%;
    background: url("thunderstorm-city (2).jpg");
    background-size: cover;
    background-attachment: fixed;

}
#footer section{
    position: relative;
    bottom: 0;
    right: 0;
}
.overlay-1{

    background: rgba(40, 37, 37, 0.4);
    width: 100%;
    height: 100%;
}





.footer-title{
    text-align: center;
    border-radius: 10px;
    background-color: #232121;
    color: #54504b;
    transition: all .3s ease-in-out;
    padding: 5px 0;
    margin: 5px 0 ;


}



.footer-title:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #ff9200;
}

.footer-title:hover{
    color: #ff9200;
    box-shadow: 0 0 5px #ff9200;
    text-shadow: 0 0 5px #ff9200;}

.footer-text{
    color: white;
    transition: all.3s ease-in-out;
}
.footer-text:hover{
    color: #ff9200;
    text-shadow:3px 2px 4px rgba(176, 103, 5, 0.89);
}
.cursor {
    cursor: pointer;
}


