.operations-section {
    padding: 80px 0;
    text-align: center;
}

.operations-section h1 {
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 20px;
}

.operations-section p.lead {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.op-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.op-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.op-card i {
    font-size: 2.4rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.op-card h6 {
    font-weight: 600;
    color: #0b2545;
}

.tagline {
    background: #0056b3;
    color: white;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    margin-top: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-btn {
    background: #ff9800;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
}

.cta-btn:hover {
    background: #e68900;
    color: white;
}

/* 🌈 Fancy Read More Button */
.readmore-btn {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.readmore-btn:hover {
    background: linear-gradient(45deg, #003f7d, #0056b3);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.3);
    color: #fff !important;
}

/* Equal height fix for columns */
.row.g-4 > [class*="col-"] {
    display: flex;
}
