/* --- Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ ØµÙØ­Ù‡ ÙˆØ§ÛŒØ¨ (Ø¢Ù†ÛŒÙ„) --- */

/* Ù…ØªØºÛŒØ±Ù‡Ø§ÛŒ Ø±Ù†Ú¯ÛŒ (Ø§Ú¯Ø± Ù‚Ø¨Ù„Ø§Ù‹ Ø§Ø¶Ø§ÙÙ‡ Ù†Ú©Ø±Ø¯Ù‡â€ŒØ§ÛŒØ¯) */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
}

/* Ø§Ù†ÛŒÙ…ÛŒØ´Ù† ØªÙ¾Ø´ */
.pulse-anil {
    animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 90, 141, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 90, 141, 0); }
}

/* Ú©Ø§Ø±Øªâ€ŒÙ‡Ø§ÛŒ Ù…Ø±Ø§Ø­Ù„ (Steps) */
.step-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift-anil:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    border-color: var(--anil-color) !important;
}

/* Ø´Ù…Ø§Ø±Ù‡ Ù…Ø±Ø­Ù„Ù‡ */
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #f3f3f3;
    z-index: 0;
    opacity: 0.5;
    line-height: 1;
}

/* Ø¢ÛŒÚ©ÙˆÙ† Ù…Ø±Ø¨Ø¹ÛŒ Ùˆ Ø¯Ø§ÛŒØ±Ù‡â€ŒØ§ÛŒ */
.icon-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Ø¯Ú©Ù…Ù‡ Ø¢Ù†ÛŒÙ„ */
.btn-anil {
    background-color: var(--anil-color);
    color: #fff;
    border: none;
    transition: all 0.3s;
}
.btn-anil:hover {
    background-color: var(--anil-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Ø´Ú©Ù„ Ù¾Ø³â€ŒØ²Ù…ÛŒÙ†Ù‡ */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--anil-color);
    top: -100px;
    right: -100px;
}

/* ØªÙ†Ø¸ÛŒÙ…Ø§Øª Ø¹Ù…ÙˆÙ…ÛŒ */
.lh-lg { line-height: 2.2 !important; }
.fs-7 { font-size: 0.9rem; }
.z-1 { z-index: 1; }



.rounded-4 { border-radius: 2rem !important; }