/* ============================================
   UPCOMING PROJECTS - ARABIC (RTL)
   ============================================ */

.upcoming-hero {
    min-height: 100vh;
    background: linear-gradient(45deg, #eefff1, #fff9e5, #f3fff5);
    display: flex;
    align-items: center;
    padding-bottom: 180px !important;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    opacity: 0;
    animation: appearFromNowhere 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

.about-title-mark {
    color: #000000;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.about-title-mark::after {
    content: "";
    position: absolute;
    right: -20px;
    left: 0;
    bottom: -6px;
    margin-inline: auto;
    width: 90px;
    height: 10px;
    background: url("https://webdiv.net/LandinPage/assets/images/shape/header-shape.png") no-repeat center / contain;
    pointer-events: none;
    opacity: 1;
    z-index: -1;
}

.project-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.project-img-wrap {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.project-info {
    text-align: center;
    padding: 0 8px;
}

.project-name {
    font-size: 18px;
    font-weight: 700;
    color: #008c1b;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 8px;
}

@keyframes appearFromNowhere {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jumpInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(15px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.upcoming-hero .row > div {
    opacity: 0;
}

.upcoming-hero .row > div:nth-child(1) {
    animation: jumpInFromLeft 0.8s ease-out 0.3s forwards;
}

.upcoming-hero .row > div:nth-child(2) {
    animation: jumpInFromLeft 0.8s ease-out 0.5s forwards;
}

.upcoming-hero .row > div:nth-child(3) {
    animation: jumpInFromLeft 0.8s ease-out 0.7s forwards;
}
