/* Header */
.page-header-custom {
    background: #1f3c88;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
}

/* Title section */
.title-section {
    text-align: center;
    padding: 30px 10px;
}
.title-section h2 {
    font-weight: bold;
    color: #1f3c88;
}
.title-section p {
    color: #777;
}

/* Card design */
.program-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 180px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 26px;
    margin-bottom: 10px;
}

.blue { background: #e3edff; color: #2a5bd7; }
.green { background: #e4f7ec; color: #1ea55b; }
.purple { background: #f0e6ff; color: #7a4bd1; }
.orange { background: #fff1e6; color: #ff7a00; }
.pink { background: #ffe6ef; color: #d63384; }
.teal { background: #e6fbff; color: #17a2b8; }

.program-card h4 {
    font-weight: bold;
    margin-top: 10px;
}

.program-card p {
    font-size: 13px;
    color: #666;
}

/* Buttons */
.btn-custom {
    margin-top: 10px;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 12px;
}

.btn-blue { background:#2a5bd7; color:#fff; }
.btn-green { background:#1ea55b; color:#fff; }
.btn-purple { background:#7a4bd1; color:#fff; }
.btn-orange { background:#ff7a00; color:#fff; }
.btn-pink { background:#d63384; color:#fff; }
.btn-teal { background:#17a2b8; color:#fff; }



/* Container for image */
.image-box {
    position: relative;
}

/* Main image responsive */
.image-box img {
    width: 100%;
    height: auto;
}

/* Icon on image */
.image-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
}

/* Optional: make icon circular */
.image-icon img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
}