/* ========================================================
   ROUTE2INDIA ABOUT & MISSION STYLING (#000000 & #ed2227)
   ======================================================== */

.bg-black {
    background-color: #000000 !important;
}

/* Ambient Red Glows */
.r2i-about-glow-1 {
    position: absolute;
    top: 5%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.r2i-about-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.14) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Badge Styling */
.r2i-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.4);
}

.r2i-about-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.r2i-about-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #cf0707;
}

/* Typography & Red Gradient */
.r2i-about-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 60%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #000000;
    display: inline-block;
}

.text-red {
    color: #ed2227 !important;
}

.r2i-story-text .lead-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

.r2i-story-text .sub-text {
    font-size: 14.5px;
    color: #000000;
    line-height: 1.75;
}

/* Right Column Image Frame */
.r2i-about-img-frame {
    height: 480px;
    border: 1px solid rgba(237, 34, 39, 0.3);
    background-color: #111111;
}

.r2i-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.r2i-about-img-frame:hover .r2i-about-img {
    transform: scale(1.06);
}

.img-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

.floating-tour-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    z-index: 2;
}

/* Primary Button */
.btn-r2i-primary {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    padding: 13px 30px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(237, 34, 39, 0.35);
    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.55);
}

/* Mission Card */
.r2i-mission-card {
    background: linear-gradient(135deg, rgba(25, 12, 14, 0.85) 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.6);
}

.mission-icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(237, 34, 39, 0.4);
}

.mission-card-title {
    font-size: 24px;
    font-weight: 700;
}

.mission-card-text {
    font-size: 15px;
    color: #E2E8F0;
    line-height: 1.8;
}

.mission-glow-bg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .r2i-about-img-frame {
        height: 380px;
    }
}