span.title-span{
    color: #77DD77;
    font-size: 16px;
    font-weight: 700;
}
span.title-span::after {
    content: "";
    display: inline-block;
    background: url("../images/title-span.png") no-repeat center center;
    background-size: contain; /* میشه cover هم بذاری */
    width: 33px;
    height: 17px;
    margin-left: 5px;
    position: relative;
    top: 5px;
}
.single-project-form form{
    background: #EAF2FA;
    padding: 24px;
    border-radius: 20px;
}
.single-project-form form label{
    direction: rtl;
}
.single-project-form form input,.single-project-form form select{
    border: none !important;
    border-radius: 10px !important;
    text-align: right;
}
.single-project-form form textarea{
    border: none;
    border-radius: 10px;
    max-height: 200px !important;
    min-height: 200px !important;
}
input[type="submit"] {
    background: #77DD77;
    color: #0A315B;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
section.single-project{
    margin-top: 44px;
}
section.single-project h1{
    color: #104E92;
    font-size: 28px;
    margin-top: 20px;
    font-weight: 700;
}
section.single-project p{
    font-size: 16px;
    font-weight: 400;
    color:#6A6A6A ;
    text-align: justify;
    direction: rtl;
    line-height: 28px;
    margin-top: 20px;
}
section.single-project div.images{
    margin-top: 16px;
}
.project-item {
    direction: rtl;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: .5rem; /* فاصله بین آیکون و متن */
    position: relative;
}

/* خطوط جداکننده بین آیتم‌ها */
.project-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 1px;
    height: 80%;
    background-color: #ddd;
}
section.single-project-content .row{
    background: #F8F8F8;
    padding: 16px;
    border-radius: 8px;
}
section.single-project-content .row h2,section.single-project-content .row h3{
    color: #104E92;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 20px;
}

section.single-project-content .row ul{
    padding-right: 26px;
    font-size: 16px;
    line-height: 28px;
    color: #434343;
}
section.single-project-content .row p{
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}
section.gallery{
    margin-top: 40px;
    background: #F8F8F8;
    padding-top: 32px;
    padding-bottom: 64px;

}
section.gallery h2{
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 48px;
}

section.gallery .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -60px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;

}
.carousel-indicators [data-bs-target]{
    background-color: #000;
}
.carousel-indicators .active{
    background-color: #77DD77;
    width: 50px;
}
.bg-blue {
    background: #104E92;
    height: 470px;
    border-radius: 10px;
    position: absolute;
    overflow: hidden;
    top: 140px;
    width: 92%;
    left: 50%;              /* قرارگیری نقطه شروع در وسط */
    transform: translateX(-50%); /* جابجایی برای مرکز کردن کامل */

}

section.single-project-form{
    padding-top: 64px;
}

section.single-project-form h2{
    color: #104E92;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 16px;
}
section.single-project-form p{
    color: #919191;
    line-height: 28px;
    text-align: justify;
    direction: rtl;
}

@media (max-width: 480px) {
    .inline-inputs {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .project-item:nth-child(1),
    .project-item:nth-child(2) {
        border-bottom: 1px solid #B8B8B8;
        padding-bottom: 39px;
        margin-bottom: 32px;
    }

    .project-item:nth-child(n+3) {
        border-bottom: none;
        margin-bottom: 32px; /* یا هر مقدار دلخواه */
    }

}