/* --- Ø§Ø³ØªØ§ÛŒÙ„â€ŒÙ‡Ø§ÛŒ Ø§Ø®ØªØµØ§ØµÛŒ ØµÙØ­Ù‡ ØªÙ…Ø§Ø³ Ø¨Ø§ Ù…Ø§ (Ø¢Ù†ÛŒÙ„) --- */

/* Ø§Ø³ØªÙØ§Ø¯Ù‡ Ø§Ø² Ù…ØªØºÛŒØ±Ù‡Ø§ÛŒ Ø±Ù†Ú¯ÛŒ ØªØ¹Ø±ÛŒÙ Ø´Ø¯Ù‡ Ø¯Ø± Ø¨Ø®Ø´ Ù‚Ø¨Ù„ÛŒ */
/* Ø§Ú¯Ø± Ø¨Ø®Ø´ Ù‚Ø¨Ù„ÛŒ Ø±Ø§ Ø§Ø¶Ø§ÙÙ‡ Ù†Ú©Ø±Ø¯ÛŒØ¯ØŒ Ø§ÛŒÙ† Ø¨Ø®Ø´ Ø±Ø§ Ø­ØªÙ…Ø§ Ø§Ø¶Ø§ÙÙ‡ Ú©Ù†ÛŒØ¯: */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
}

.text-anil { color: var(--anil-color) !important; }
.bg-anil { background-color: var(--anil-color) !important; }
.bg-blue-soft { background-color: var(--anil-soft) !important; }
.bg-gray-soft { background-color: var(--gray-soft) !important; }

/* Ø§Ø³ØªØ§ÛŒÙ„ Ø¨Ø§Ú©Ø³ Ø®Ø¯Ù…Ø§Øª Ù¾Ø³ Ø§Ø² ÙØ±ÙˆØ´ */
.service-box {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift-anil:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
    background-color: #fff !important; /* ØªØºÛŒÛŒØ± Ø±Ù†Ú¯ Ù¾Ø³â€ŒØ²Ù…ÛŒÙ†Ù‡ Ø¯Ø± Ù‡Ø§ÙˆØ± */
}

/* Ø¢ÛŒÚ©ÙˆÙ† Ù…Ø±Ø¨Ø¹ÛŒ */
.icon-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ø¢ÛŒÚ©ÙˆÙ† Ø¯Ø§ÛŒØ±Ù‡â€ŒØ§ÛŒ */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ø¯Ú©Ù…Ù‡ Ø§Ø®ØªØµØ§ØµÛŒ */
.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);
    box-shadow: 0 10px 20px rgba(74, 90, 141, 0.4) !important;
}

/* Ø§Ø´Ú©Ø§Ù„ Ù¾Ø³â€ŒØ²Ù…ÛŒÙ†Ù‡ (Background Shapes) */
.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;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--anil-dark);
    bottom: -50px;
    left: -50px;
}

/* Ø§Ù†ÛŒÙ…ÛŒØ´Ù†â€ŒÙ‡Ø§ */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { to { opacity: 1; transform: scale(1); } }

/* Ø§Ù„Ù…Ø§Ù† ØªØ²ÛŒÛŒÙ†ÛŒ Ù‡ÛŒØ±Ùˆ */
.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74,90,141,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-anil 3s infinite alternate;
}

@keyframes pulse-anil {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Ø³Ø§ÛŒØ± ØªÙ†Ø¸ÛŒÙ…Ø§Øª */
.lh-lg { line-height: 2.2 !important; }
.tracking-wide { letter-spacing: 1px; }
.text-justify { text-align: justify; }
.pointer-events-none { pointer-events: none; }
.opacity-10 { opacity: 0.1; }




.rounded-4 { border-radius: 2rem !important; }