/* ---------- HERO BUTTON ---------- */
.btn-custom {
    border-radius: 40px;
    font-weight: 600;
    padding: 10px 32px;
    font-size: 1.1rem;
}

/* ---------- GENERAL TEXT ALIGNMENT (ADDED) ---------- */
p {
    text-align: justify;
    line-height: 1.7;
}

/* ---------- HERO SECTION ALIGNMENT (ADDED) ---------- */
section .row.align-items-center > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ---------- ICON BOX (UPDATED – DUPLICATE SAFE) ---------- */
.icon-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    transition: .3s;
    height: 100%;
    text-align: center; /* added */
}
.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ---------- ACTION CARDS (UPDATED – DUPLICATE SAFE) ---------- */
.action-card{
    border-radius:16px;
    color:#fff;
    padding:30px;
    height:100%;
    transition:transform .3s ease;
    display: flex;                 /* added */
    flex-direction: column;        /* added */
    justify-content: space-between;/* added */
}
.action-card:hover{
    transform:translateY(-6px);
}
.action-card h5{
    font-weight:700;
    margin-bottom:15px;
}
.action-card p{
    font-size:15px;
    opacity:.95;
}
.action-card a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

/* ---------- COLORS ---------- */
.bg-blue{ background:#0d6efd; }
.bg-orange{ background:#fd7e14; }
.bg-green{ background:#198754; }
.bg-teal{ background:#20c997; }
.bg-red{ background:#dc3545; }

/* ---------- TESTIMONIAL (UPDATED) ---------- */
.testimonial-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    height:100%;
    text-align: center; /* added */
}

/* ---------- FAQ (UPDATED) ---------- */
.faq-box{
    background:#fff;
    padding:15px;
    border-radius:10px;
    margin-bottom:15px; /* updated */
    border-left:5px solid #0d6efd;
}

/* ---------- CEO MESSAGE SPACING (ADDED) ---------- */
.welcome-text p {
    margin-bottom: 12px;
}

.text-danger.fw-semibold p {
    line-height: 1.4;
}
