

/* HERO SECTION */
.suraj {
    background: linear-gradient(rgba(10, 68, 180, 0.5), rgba(10, 68, 180, 0.5)), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1500&q=60') no-repeat center/cover;
    padding: 120px 20px;
}
.suraj h1 { font-size: 50px; color: #fff; }
.suraj p { font-size: 18px; color: #f1f1f1; margin-top: 10px; }

/* INTRO */
.swati h2 { font-size: 32px; font-weight: 700; }
.swati p { font-size: 17px; max-width: 750px; margin: auto; }

/* SERVICE CARDS */
.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: 0.4s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #0b56d6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 12px;
}

.service-box h4 { font-weight: 600; }
.service-box p { font-size: 14px; color: #555; }

/* FEATURE STRIP */
.hitesh {
    background: #0b56d6;
    color: #fff;
}
.rahul li {
    list-style: none;
    font-size: 17px;
    padding: 8px 0;
}

/* WORKFLOW BOX */
.step-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: .4s;
}

.step-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-box span {
    font-size: 32px;
    font-weight: 700;
    color: #0b56d6;
}

.step-box h5 { font-weight: 600; margin-top: 10px; }

/* ANIMATION */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}
.animate.active {
    opacity: 1;
    transform: translateY(0);
}
