@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Kalam:wght@700&family=Hind:wght@400;500;600;700&display=swap');

/* ======================== VARIABLES & RESET ======================== */
:root {
    --nav-bg: #061429; 
    --nav-hover: #FFC107; 
    --theme-dark: #061429;     
    --theme-darker: #020a17;
    --theme-light: #f8f9fa;    
    --theme-gold: #FFC107;    
    --theme-gold-hover: #e6ac00;
    --text-dark: #061429;
    --text-muted: #6b7280;
    --text-light: #ffffff;
    --text-light-muted: #cbd5e1;
}

html, body { 
    max-width: 100%; 
    overflow-x: hidden; 
    background-color: var(--theme-light); 
    color: var(--text-dark); 
    scroll-behavior: smooth; 
    font-family: 'Nunito', sans-serif; 
}
body { overflow-x: hidden; width: 100%; }
a { text-decoration: none; transition: 0.3s; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--theme-light); }
::-webkit-scrollbar-thumb { background: var(--theme-gold); border-radius: 5px; }

/* ======================== UTILITIES ======================== */
.site-container { width: 92%; max-width: 1300px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
.section-padding { padding: 80px 0; }
.bg-dark-section { background-color: var(--theme-dark); color: var(--text-light); }
.bg-light-section { background-color: var(--theme-light); color: var(--text-dark); }
.text-gold { color: var(--theme-gold) !important; }

section h2 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; color: var(--theme-dark); }
.subtitle { color: var(--theme-gold); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }

/* ======================== BUTTONS ======================== */
.btn-custom-primary {
    background: linear-gradient(135deg, var(--theme-gold), var(--theme-gold-hover)); color: #061429 !important; padding: 14px 32px;
    border-radius: 50px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: none; box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3); text-decoration: none;
}
.btn-custom-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4); }

.btn-outline-custom {
    border: 2px solid var(--theme-gold); color: var(--theme-gold) !important; padding: 12px 30px; border-radius: 50px;
    font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; text-decoration: none;
}
.btn-outline-custom:hover { background: var(--theme-gold); color: #061429 !important; }

/* ======================== NAVIGATION & TOP BAR ======================== */
.top-info {
    background: var(--theme-dark);
    color: white; 
    padding: 12px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1050;
}
.top-info-left { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.top-info-left span { display: flex; align-items: center; gap: 10px; font-weight: 600; color:#cbd5e1; transition: 0.3s; }
.top-info-left span:hover { color: var(--theme-gold); }
.top-info-left i { color: var(--theme-gold); font-size: 16px; }

.top-social { display: flex; align-items: center; gap: 15px; }
.top-social a { 
    color: white; 
    transition: 0.3s;
    font-size: 16px;
}
.top-social a:hover { color: var(--theme-gold); transform: scale(1.2); }

/* Main Branding Header */
.branding-header {
    background: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s ease;
}
.header-logo-left { width: 120px; }
.header-logo-left img { width: 100%; height: auto; transition: 0.3s; }

.header-center-content { flex: 1; padding: 0 40px; text-align: center; }
.header-hindi-title { 
    color: #b91c1c; 
    font-size: 2.8rem; 
    font-weight: 700; 
    margin-bottom: 0; 
    font-family: 'Kalam', cursive; 
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
}
.header-eng-title { 
    color: #1e3a8a; 
    font-size: 1.5rem; 
    font-weight: 900; 
    margin-bottom: 8px; 
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s ease-out;
}
.header-sub1 { color: #475569; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; text-transform: uppercase; animation: fadeIn 1.5s ease-in; }
.header-sub2 { color: #ea580c; font-size: 0.8rem; font-weight: 800; margin-bottom: 2px; animation: fadeIn 1.7s ease-in; }
.header-sub3 { color: #475569; font-size: 0.8rem; font-weight: 700; margin-bottom: 2px; animation: fadeIn 1.9s ease-in; }
.header-sub4 { color: #ea580c; font-size: 0.85rem; font-weight: 800; margin-bottom: 0; animation: fadeIn 2.1s ease-in; }

.header-right-content { width: 250px; text-align: right; }
.header-helpline { 
    font-size: 0.9rem; 
    font-weight: 800; 
    color: #fff; 
    margin-bottom: 12px; 
    background: linear-gradient(135deg, #1e3a8a, #3b82f6); 
    padding: 6px 15px; 
    border-radius: 50px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
    animation: slideInRight 1s ease-out;
}
.header-logos { display: flex; justify-content: flex-end; gap: 25px; margin-bottom: 10px; }
.header-logo-item { text-align: center; transition: 0.3s; animation: zoomIn 1.5s ease-out; }
.header-logo-item:hover { transform: scale(1.1); }
.header-logo-item i { font-size: 2rem; margin-bottom: 4px; display: block; }
.header-logo-item div { font-size: 0.65rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.header-reg { 
    font-size: 0.8rem; 
    font-weight: 800; 
    color: #b91c1c; 
    border: 1px dashed #b91c1c; 
    padding: 2px 8px; 
    border-radius: 4px; 
    display: inline-block;
    animation: shake 5s infinite;
}

/* Animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Sticky & Glassmorphism Navbar */
.site-navbar { 
    background-color: var(--theme-dark); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 5%; 
    height: 75px; 
    position: sticky; 
    top: 0; 
    z-index: 1030; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-navbar.navbar-scrolled {
    height: 65px;
    background: var(--theme-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 992px) {
    .site-navbar.navbar-scrolled {
        background: rgba(6, 20, 41, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

.nav-menu { display: flex; list-style: none; height: 100%; margin: 0; padding: 0; align-items: center; gap: 8px; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a {
    color: #fff; font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 50px;
    text-transform: uppercase; transition: all 0.3s; display: flex; align-items: center; gap: 8px;
    letter-spacing: 0.5px;
}
.nav-item:hover > a { color: var(--theme-gold); background: rgba(255,255,255,0.08); }

/* Premium Dropdowns */
.custom-dropdown-menu { 
    position: absolute; 
    top: 100%; 
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #fff; 
    min-width: 260px; 
    list-style: none; 
    padding: 15px 0; 
    margin: 0; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    box-shadow: 0 15px 50px rgba(0,0,0,0.15); 
    border-radius: 12px;
    border-top: 5px solid var(--theme-gold);
    overflow: hidden;
}

.nav-item:hover .custom-dropdown-menu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateX(-50%) translateY(0); 
}

.custom-dropdown-item a { 
    color: #1e293b; padding: 12px 25px; display: block; font-size: 15px; 
    font-weight: 700; transition: 0.3s; border-left: 3px solid transparent;
}
.custom-dropdown-item a:hover { 
    background: #f8fafc; 
    color: var(--theme-dark); 
    padding-left: 35px; 
    border-left-color: var(--theme-gold);
}

/* Mobile Menu (Pro Full-Screen Overlay) */
@media (max-width: 991px) {
    .site-navbar { height: 60px; justify-content: space-between; }
    .navbar-toggler { border: none; background: transparent; padding: 0; color: #fff; cursor: pointer; }
    
    .nav-menu {
        position: fixed; top: -100%; left: 0; width: 100%; height: 100vh;
        background: #061429; 
        display: flex !important; flex-direction: column; align-items: center; justify-content: flex-start;
        padding: 100px 20px 40px; transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 2000; overflow-y: auto; text-align: center;
        visibility: hidden; opacity: 0;
    }
    .nav-menu.active { top: 0; visibility: visible; opacity: 1; }
    
    .nav-item { 
        width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; border: none; 
        margin-bottom: 10px; opacity: 0; transform: scale(0.8) translateY(20px); transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-menu.active .nav-item { opacity: 1; transform: scale(1) translateY(0); }
    
    /* Staggered pro animations */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active .nav-item:nth-child(9) { transition-delay: 0.5s; }
    .nav-menu.active .nav-item:nth-child(10) { transition-delay: 0.55s; }

    .nav-item > a { 
        padding: 10px 0; font-size: 1.4rem; font-weight: 800; color: #fff;
        text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 10px;
        width: auto;
    }
    .nav-item > a i { font-size: 0.9rem; transition: 0.3s; }
    .nav-item.dropdown-active > a i { transform: rotate(180deg); color: var(--theme-gold); }

    .custom-dropdown-menu {
        position: relative !important; top: 0 !important; left: 0 !important; transform: none !important;
        width: 90% !important; max-height: 0; opacity: 0; margin: 0 auto;
        visibility: hidden; display: block; background: rgba(255,255,255,0.05);
        padding: 0; border-radius: 12px; border: none; box-shadow: none; transition: all 0.4s ease;
        overflow: hidden;
    }
    .nav-item.dropdown-active .custom-dropdown-menu {
        max-height: 500px; opacity: 1; visibility: visible; padding: 10px 0; margin-top: 10px;
    }
    .custom-dropdown-item a { color: #cbd5e1; font-size: 1.1rem; padding: 12px 0; font-weight: 600; display: block; width: 100%; }
    .custom-dropdown-item a:hover { color: var(--theme-gold); }
    
    .close-menu-btn {
        position: fixed !important; top: 20px !important; right: 20px !important; 
        background: var(--theme-gold) !important;
        width: 45px; height: 45px; border-radius: 50%; display: flex !important; align-items: center;
        justify-content: center; font-size: 1.4rem; color: #000 !important; border: none; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 2100;
    }
    .close-menu-btn i { color: #000 !important; }
    
    .mobile-menu-header { width: 100%; display: flex; justify-content: center; margin-bottom: 30px; }
}

.menu-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 20, 41, 0.98); 
    z-index: 1999; display: none; opacity: 0; transition: 0.6s;
}
.menu-backdrop.active { display: block; opacity: 1; }

body.menu-open { overflow: hidden; }

/* ======================== HERO SECTION ======================== */
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slider .carousel-item { height: 550px; position: relative; }
.hero-slider .carousel-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.hero-caption {
    position: absolute; top: 50%; left: 10%; transform: translateY(-50%);
    color: #fff; max-width: 700px; z-index: 10;
}
.hero-caption h1 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; animation: fadeInUp 0.8s; }
.hero-caption p { font-size: 1.3rem; margin-bottom: 35px; color: #cbd5e1; animation: fadeInUp 1s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ======================== WELCOME SECTION ======================== */
.welcome-section { padding: 100px 0; background: #fff; }
.welcome-grid { display: flex; align-items: center; gap: 60px; }
.welcome-text { flex: 1.2; }
.welcome-text h2 { font-size: 3.2rem; margin-bottom: 25px; }
.welcome-text p { font-size: 1.2rem; line-height: 1.8; color: var(--text-muted); text-align: justify; }
.welcome-image { flex: 0.8; position: relative; }
.welcome-image img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--theme-gold); }

/* ======================== SERVICES / FEATURES ======================== */
.features-section { padding: 80px 0; background: var(--theme-light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { 
    background: #fff; padding: 40px; border-radius: 20px; text-align: center; 
    transition: 0.4s; border-bottom: 5px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--theme-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-icon { width: 80px; height: 80px; background: rgba(255, 193, 7, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--theme-gold); margin: 0 auto 25px; transition: 0.4s; }
.feature-card:hover .feature-icon { background: var(--theme-gold); color: #fff; transform: rotateY(180deg); }
.feature-card h3 { font-size: 1.6rem; margin-bottom: 15px; font-weight: 800; }
.feature-card p { color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ======================== FOOTER ======================== */
footer { background: var(--theme-dark); color: #cbd5e1; padding: 80px 0 20px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-col h4 { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 30px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--theme-gold); }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #cbd5e1; display: flex; align-items: center; gap: 10px; transition: 0.3s; font-weight: 600; }
.footer-col ul li a:hover { color: var(--theme-gold); padding-left: 8px; }
.footer-col ul li i { font-size: 12px; color: var(--theme-gold); }

.footer-contact-info li { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.footer-contact-info i { color: var(--theme-gold); font-size: 1.2rem; margin-top: 5px; }
.footer-contact-info span { font-weight: 600; line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 15px; color: #94a3b8; }
.footer-bottom strong { color: var(--theme-gold); }

/* Enquiry Form in Footer */
.footer-enquiry { background: rgba(255,255,255,0.05); padding: 25px; border-radius: 15px; }
.footer-enquiry h5 { color: #fff; margin-bottom: 20px; font-weight: 800; }
.footer-enquiry .form-control { background: rgba(255,255,255,0.1); border: none; color: #fff; padding: 12px 20px; border-radius: 8px; margin-bottom: 15px; }
.footer-enquiry .form-control::placeholder { color: #94a3b8; }
.footer-enquiry .btn { width: 100%; border-radius: 8px; font-weight: 800; }

/* Map Box */
.footer-map { height: 200px; width: 100%; border-radius: 15px; overflow: hidden; margin-top: 20px; border: 3px solid rgba(255,255,255,0.1); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1200px) {
    .hero-caption h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .branding-header { flex-direction: column; gap: 10px; padding: 15px 5%; }
    .header-logo-left, .header-center-content, .header-right-content { width: 100%; text-align: center; padding: 0; }
    .header-logos { justify-content: center; margin-top: 10px; }
    .header-hindi-title { font-size: 1.6rem; margin-bottom: 2px; }
    .header-eng-title { font-size: 1.2rem; margin-bottom: 5px; }
    .header-sub1, .header-sub2, .header-sub3, .header-sub4 { font-size: 0.75rem; }
    .welcome-grid { flex-direction: column; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-caption { left: 5%; text-align: center; right: 5%; top: 35%; }
}

@media (max-width: 768px) {
    .top-info { flex-direction: column; gap: 10px; text-align: center; }
    .site-navbar { height: auto; padding: 15px 5%; }
    .nav-menu { display: none; } /* Mobile menu logic should be implemented with JS */
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-slider .carousel-item { height: 400px; }
    .hero-caption h1 { font-size: 2.2rem; }
    .welcome-text h2 { font-size: 2.2rem; }
    
    /* Header Mobile Fixes */
    .branding-header { padding: 8px 5px; gap: 5px; }
    .header-logo-left { width: 50px; }
    .header-logo-left img { max-height: 50px; }
    .header-center-content { width: calc(100% - 110px); padding: 0 5px; }
    .header-right-content { width: 60px; }
    
    .header-hindi-title { font-size: 1rem; margin-bottom: 0; letter-spacing: 0; }
    .header-eng-title { font-size: 0.75rem; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 800; }
    .header-sub1 { font-size: 0.55rem; line-height: 1; margin-top: 1px; font-weight: 700; color: #64748b; }
    .header-sub2, .header-sub3, .header-sub4 { display: none; }
    
    .header-right-content .header-helpline { display: none; }
    .header-logos { gap: 5px; margin-bottom: 2px; }
    .header-logo-item i { font-size: 1.2rem; }
    .header-logo-item div { display: none; }
    .header-reg { font-size: 0.6rem; }
    
    /* Branding Header Layout Reset for Mobile */
    .branding-header { 
        flex-direction: row !important; 
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    /* Slider Mobile Caption */
    .hero-caption { top: 50%; left: 0; right: 0; padding: 20px; width: 100%; text-align: center; }
    .hero-caption h1 { font-size: 1.8rem; }
    .hero-caption p { font-size: 0.9rem; }
}

/* ======================== FLOATING BUTTONS ======================== */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1050;
    border: none;
    outline: none;
    background-color: var(--theme-dark);
    color: var(--theme-gold);
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}
#scrollTopBtn:hover { background-color: var(--theme-gold); color: var(--theme-dark); transform: translateY(-5px); }

.floating-chatbot {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    z-index: 1050;
    transition: 0.3s;
    text-decoration: none;
    animation: pulseChatbot 2s infinite;
}
.floating-chatbot:hover { transform: scale(1.1); color: #fff; animation: none; }

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

@keyframes pulseChatbot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ======================== PAGE HERO & BREADCRUMBS ======================== */
.page-hero {
    background: linear-gradient(rgba(6, 20, 41, 0.85), rgba(6, 20, 41, 0.95)), url('rtc_banner_1.png') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    border-bottom: 5px solid var(--theme-gold);
}
.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.page-hero h1 span { color: var(--theme-gold); }

.breadcrumb-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-modern li {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light-muted);
}
.breadcrumb-modern li a {
    color: #fff;
    transition: 0.3s;
}
.breadcrumb-modern li a:hover { color: var(--theme-gold); }
.breadcrumb-modern li i { font-size: 0.8rem; color: var(--theme-gold); }

/* ======================== MISC FIXES ======================== */
.last-child-no-border:last-child { border-bottom: none !important; }

/* ======================== ABOUT US SPECIFIC CSS ======================== */
.split-layout { display: flex; align-items: center; gap: 50px; }
.split-layout.reverse { flex-direction: row-reverse; }
.split-image { flex: 1; position: relative; }
.split-content { flex: 1.2; }
.split-content h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 20px; line-height: 1.2; color: var(--theme-dark); }
.split-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 15px; font-size: 1.05rem; }

/* Collage */
.collage { position: relative; height: 500px; }
.collage .img-1 { width: 70%; height: 350px; object-fit: cover; border-radius: 20px; position: absolute; top: 0; right: 0; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 10px solid #fff; z-index: 2; }
.collage .img-2 { width: 60%; height: 300px; object-fit: cover; border-radius: 20px; position: absolute; bottom: 0; left: 0; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 10px solid #fff; z-index: 3; }
.collage-badge { position: absolute; top: 30%; left: 10%; background: var(--theme-gold); color: #000; padding: 20px; border-radius: 50%; width: 120px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; text-align: center; z-index: 4; box-shadow: 0 10px 20px rgba(255,193,7,0.3); animation: float 3s ease-in-out infinite; }
.collage-badge i { font-size: 2rem; margin-bottom: 5px; }
.single-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
.feature-box { display: flex; align-items: flex-start; gap: 20px; background: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; transition: 0.3s; }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--theme-gold); }
.feature-box i { font-size: 2rem; color: var(--theme-gold); background: rgba(255,193,7,0.15); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.feature-box h4 { font-size: 1.2rem; font-weight: 800; color: var(--theme-dark); margin-bottom: 8px; }

/* Dark Stats */
.dark-stats { background: linear-gradient(135deg, var(--theme-dark), var(--theme-darker)); border-radius: 30px; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 50px; color: #fff; position: relative; overflow: hidden; margin: 90px 2%; }
.dark-stats::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('rtc_banner_1.png') center/cover; opacity: 0.05; }
.dark-stats-left { flex: 1; position: relative; z-index: 2; }
.dark-stats-left h2 { color: #fff; margin-bottom: 10px; font-size: 2.8rem; font-weight: 900; }
.dark-stats-right { flex: 1.5; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat-blk { text-align: center; padding: 30px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.stat-blk:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: var(--theme-gold); }
.stat-blk h3 { font-size: 3rem; font-weight: 900; color: var(--theme-gold); margin-bottom: 10px; }
.stat-blk p { font-size: 1rem; font-weight: 700; color: #cbd5e1; margin: 0; }

@media (max-width: 991px) {
    body { padding-bottom: 80px; }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item { height: auto !important; }
    .hero-slider .carousel-item img { width: 100% !important; height: auto !important; object-fit: contain !important; filter: none !important; }
    .hero-caption { display: none !important; }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0 10px 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    z-index: 1045;
    border-radius: 20px 20px 0 0;
    border-top: 1px solid #f1f5f9;
}
.mobile-bottom-nav .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    flex: 1;
    transition: 0.3s;
}
.mobile-bottom-nav .nav-btn i { font-size: 1.3rem; }
.mobile-bottom-nav .nav-btn:hover { color: var(--theme-dark); }

.enroll-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -22px;
    flex: 1;
}
.enroll-btn {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    margin-bottom: 5px;
    border: 6px solid #fff;
    transition: 0.3s;
}
.enroll-btn-wrap span { font-size: 11px; font-weight: 800; color: #1e3a8a; }
.enroll-btn:hover { transform: scale(1.1); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4); }
