/* ========================================================
   ROUTE2INDIA HERO STYLING (#ed2227 RED & #000000 BLACK)
   ======================================================== */

.r2i-hero-section {
    min-height: 90vh;
    background-color: #000000;
    position: relative;
}

/* Background Image Layer */
.r2i-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Multi-layer Dark Overlay for Maximum Text Readability */
.r2i-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.75) 50%, 
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* Badge Styling */
.r2i-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.5);
}

.r2i-pill-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.r2i-pill-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFFFFF;
}

/* Typography & Red Gradient (#ed2227) */
.r2i-hero-title {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.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;
}

.text-red {
    color: #ed2227 !important;
}

.r2i-hero-desc {
    font-size: 16.5px;
    line-height: 1.8;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.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);
}

.btn-r2i-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-r2i-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ed2227;
    transform: translateY(-3px);
}

/* Stats Counter Row */
.r2i-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.r2i-stat-label {
    font-size: 13px;
    color: #ed2227;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.r2i-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    align-self: center;
}

/* Right Video Frame */
.r2i-video-wrapper {
    height: 500px;
    border: 1px solid rgba(237, 34, 39, 0.4);
    background-color: #000000;
}

.r2i-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.r2i-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}

.r2i-top-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12.5px;
    font-weight: 600;
    color: #FFFFFF;
}

.r2i-play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(237, 34, 39, 0.6);
    transition: transform 0.3s ease;
    text-decoration: none;
    z-index: 3;
}

.r2i-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    color: #FFFFFF;
}

.r2i-bottom-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.caption-title {
    font-size: 20px;
    font-weight: 700;
}

.caption-sub {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .r2i-video-wrapper {
        height: 380px;
    }
    .r2i-stat-divider {
        display: none;
    }
}