.webdev-section {
    background-color: #f9f9fb;
    font-family: 'Segoe UI', sans-serif;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.dev-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
}

.dev-card:hover {
    transform: translateY(-6px);
}

.dev-card img {
    display: block;
    width: 150px;
    height: auto;
}


.dev-card h5 {
    font-weight: 600;
    font-size: 16px;
    color: #060643;
    margin-bottom: 10px;
}

.dev-card p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.dev-content .heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #060643;
}

.dev-content .text-highlight {
    background: linear-gradient(to right, #cf2128);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-content .description {
    font-size: 14.5px;
    color: #333;
    margin-top: 20px;   
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-btn1 {
    background: #cf2128;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.cta-btn1:hover {
    background: #c93b3f;
    color: #fff;
}

@media (max-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }

    .dev-content .heading {
        font-size: 22px;
    }

    .dev-card.offset-down {
        top: 0;
        /* remove stagger on small screens */
    }

    .dev-card img {
        display: block;
        width: 80px;
        /* increased from 80px */
        height: auto;
    }

}

/* ✅ Staggered effect on large screens only */
@media (min-width: 769px) {
    .dev-card.offset-down {
        top: 50px;
    }
}



/* .customs-btns {
    background-color: #cf2128;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .customs-btn:hover {
    background-color: #a91c22; 
    transform: translateY(-2px);
    color: #f9f9fb;
  } */

.customs-btns {
    background-color: #cf2128;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #cf2128;
}

.customs-btns:hover {
    background-color: #fff;
    color: #cf2128;
    border: 2px solid #fff;
}







