/* =========================================
   BRIGHT ANGEL - INDIA SERVICES UI
   ========================================= */

/* --- 1. Inner Hero for India --- */
.india-hero {
    padding: 180px 20px 80px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
    border-bottom: 1px solid #cbd5e1;
}

.india-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.india-hero p {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- 2. Professional Service Cards --- */
.service-card-elite {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.service-card-elite:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.1);
    border-color: #3b82f6;
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Custom Colors for India Services */
.bg-placement { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bg-staffing { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.bg-hr { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.bg-rpo { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bg-bpo { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.service-card-elite:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card-elite h5 {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card-elite p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-learn-more {
    margin-top: auto;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-learn-more:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .india-hero { padding: 140px 20px 60px 20px; }
    .india-hero h1 { font-size: 2.2rem; }
}