/* ── Project Cards ─────────────────────────────────── */
.our-project .project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 25, 72, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.our-project .row {
    row-gap: 30px; /* or use margin-bottom on each col */
}

.our-project .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(6, 25, 72, 0.16);
}

/* Image wrapper with overlay arrow on hover */
.our-project .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.our-project .card-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.our-project .project-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* Arrow overlay */
.our-project .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 25, 72, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.our-project .project-card:hover .card-overlay {
    opacity: 1;
}

.our-project .card-overlay .arrow-btn {
    width: 52px;
    height: 52px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.our-project .card-overlay .arrow-btn:hover {
    background: #fff;
    color: #061948;
    transform: scale(1.1);
}

/* Card body */
.our-project .card-body-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.our-project .card-category {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #4a7bd4;
    margin-bottom: 8px;
}

.our-project .card-title-link {
    font-size: 20px;
    font-weight: 700;
    color: #061948;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 12px;
    display: block;
    transition: color 0.2s;
}

.our-project .card-title-link:hover {
    color: #4a7bd4;
}

.our-project .card-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.our-project .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #061948;
    text-decoration: none;
    border-bottom: 2px solid #4a7bd4;
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s, border-color 0.2s;
}

.our-project .card-cta:hover {
    color: #4a7bd4;
}

/* Intro section */
.project-intro {
    text-align: center;
    max-width: 760px;
    margin: 80px auto 50px;
}

.project-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #061948;
    margin-bottom: 16px;
}

.project-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}
/* Industries Section */
.industries-section{
    padding:100px 0;
    /* background:#fff; */
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:32px;
    font-weight:700;
    color:#061948;
    margin-bottom:15px;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.industry-card{
    background:#fff;
    border:1px solid #e5eaf4;
    border-radius:12px;
    padding:25px;
    text-align:center;
    font-weight:600;
    color:#061948;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(6,25,72,.12);
}

/* CTA Section */
.project-cta{
    background:#061948;
    color:#fff;
    text-align:center;
    padding:90px 20px;
    margin-top:100px;
    border-radius:20px;
}

.project-cta h2{
    color:white;
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.project-cta p{
    max-width:750px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    opacity:.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#ff7b22;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.3);
}

.btn-secondary:hover{
    background:#fff;
    color:#061948;
}

/* Responsive */
@media(max-width:991px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .industries-grid{
        grid-template-columns:1fr;
    }

    .project-cta h2{
        font-size:30px;
    }
}
