/* ========================================================
   WHY ROUTE2INDIA STYLING (#000000 BLACK & #ed2227 RED)
   ======================================================== */

.bg-black {
    background-color: #000000 !important;
}

/* Ambient Red Glowing Lights */
.r2i-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.r2i-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Badge Styling */
.why-r2i-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.4);
}

.why-r2i-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.why-r2i-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

/* Heading Gradient */
.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 60%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ed2227;
    display: inline-block;
}

.lead-desc {
    font-size: 15px;
    line-height: 1.8;
}

/* Pillar Cards Styling */
.r2i-pillar-card {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.r2i-pillar-card:hover {
    background: rgba(25, 25, 25, 0.9);
    border-color: #ed2227;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(237, 34, 39, 0.25);
}

/* Card Icon Box */
.card-icon-box {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(237, 34, 39, 0.35);
    transition: transform 0.3s ease;
}

.r2i-pillar-card:hover .card-icon-box {
    transform: scale(1.1) rotate(-3deg);
}

.card-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    transition: color 0.3s ease;
}

.r2i-pillar-card:hover .card-num {
    color: rgba(237, 34, 39, 0.6);
}

/* Card Titles & Text */
.pillar-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF!important;
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Bottom Red Line Accent on Hover */
.card-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed2227 0%, #FF5257 100%);
    transition: width 0.4s ease;
}

.r2i-pillar-card:hover .card-bottom-line {
    width: 100%;
}

/* Bottom CTA Banner */
.r2i-cta-box {
    background: linear-gradient(135deg, rgba(25, 12, 14, 0.9) 0%, rgba(12, 12, 12, 0.95) 100%);
    border: 1px solid rgba(237, 34, 39, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.cta-card-glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Primary Red Button */
.btn-r2i-primary {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(237, 34, 39, 0.4);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-r2i-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 34, 39, 0.6);
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .r2i-pillar-card {
        padding: 30px 22px;
    }
}