.rl-intro img{
    border-top-left-radius: 124px;
    border-top-right-radius: 124px;
    overflow: hidden; /* ensure child content respects border radius */
}

.rl-intro-v2 img {
    border-radius: 24px;
}

.project-details__text1-img {
    margin-bottom: 32px;
}

.image-split-gallery {
    margin-bottom: 40px;
}

.image-stack-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.single-img-wrapper img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-img-wrapper:hover img {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .image-stack-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .single-img-wrapper img {
        height: 200px;
    }
}

/*Pagination Style*/

.pagination .page-link {
    background-color: #231F20;
    color: #fff;
    border: 1px solid #E94F35;
    padding: 9px 20px;
    font-weight: 500;
    margin: 0 12px;
    border-radius: 50px;
    transition: 0.3s;
}

.pagination .page-item.active .page-link {
    background-color: #E94F35;       /* Red background for active */
    border-color: #E94F35;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #E94F35;
    color: #fff;
    border-color: #E94F35;
}

.pagination .page-item.disabled .page-link {
    background-color: #333;          /* Slightly lighter dark for disabled */
    color: #aaa;
    border-color: #444;
}

.rl-blog-post-card {
    width: 64px;
    height: 64px;
    border-radius: 100px;
}

/* 🧩 Tech Stack Grid Styling */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* 🧱 Tech Box */
.tech-stack-grid .feature-one__title-box-wrap {
    background: #121212;
    padding: 16px 24px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #2c2c2c;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 🖋️ Tech Title */
.tech-stack-grid .feature-one__title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: 'Rajdhani', sans-serif;
}

/* 🎯 Hover Effect */
.tech-stack-grid .feature-one__title-box-wrap:hover {
    background-color: #B91202;
    border-color: #B91202;
    transform: translateY(-3px);
    color: #fff;
}

.tech-stack-grid .feature-one__title-box-wrap:hover .feature-one__title {
    color: #fff;
}

/* Default (Desktop) */
.feature-one__title svg {
    width: 74px;
}

.footer-logo-one img {
    margin-left: -42px;
}

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .feature-one__title svg {
        width: 52px;
    }
}

/* Optional: Separate Mobile (max-width: 768px) if needed */
@media (max-width: 768px) {
    .feature-one__title svg {
        width: 42px;
    }
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


