/* Orion Maritime Coaching Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --navy-dark: #07162c;
    --navy-mid: #0a2540;
    --navy-light: #1e3a5f;
    --gold: #C5A059;
    --gold-hover: #e5c07b;
    --gold-bright: #D4AF37;
    --ice-blue: #f2f7fc;
    --white: #ffffff;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --accent-red: #c0392b;
    --whatsapp-green: #25d366;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --font-headers: 'Playfair Display', 'Cinzel', Georgia, serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.65;
    padding-top: 60px; /* Offset for compact mobile navigation */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 600;
    color: var(--navy-mid);
}

a {
    text-decoration: none;
    color: var(--navy-light);
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

/* Color & BG Helper Utilities */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy-mid) !important; }
.bg-navy { background-color: var(--navy-mid) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-ice-blue { background-color: var(--ice-blue) !important; }
.border-gold { border-color: var(--gold) !important; }

/* Micro-animations and Transitions */
.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 4px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-navy {
    background-color: var(--navy-mid);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 4px;
    border: 2px solid var(--navy-mid);
    transition: var(--transition);
}

.btn-navy:hover {
    background-color: transparent;
    color: var(--navy-mid);
    border-color: var(--navy-mid);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 4px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--navy-dark);
}

/* Navbar Top bar */
.top-bar {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--gold);
}
.top-bar a {
    color: #dfdfdf;
}
.top-bar a:hover {
    color: var(--gold);
}

/* Mobile-First Navigation Bar Style (Default) */
.navbar-custom {
    background-color: var(--navy-dark);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
    padding: 8px 16px !important;
    width: 100%;
    min-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: var(--transition);
}

.navbar-brand img {
    height: 42px; /* Compact logo */
    transition: var(--transition);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--gold) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
    width: 60%;
}

/* Dropdown Menu styling */
.dropdown-menu-custom {
    background-color: var(--navy-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    margin-top: 10px !important;
}
.dropdown-item-custom {
    color: #e0e0e0 !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: var(--transition);
}
.dropdown-item-custom:hover {
    background-color: var(--gold);
    color: var(--navy-dark) !important;
}

/* Floating WhatsApp Widget - Compact & Non-intrusive (Mobile-First) */
.whatsapp-float {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08) rotate(10deg);
    color: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0.6;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Page Header Sections - Clean Gradient Overlay */
.page-header {
    background: linear-gradient(180deg, rgba(7, 22, 44, 0.55) 0%, rgba(7, 22, 44, 0.8) 100%), url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding: 85px 0 50px 0;
    color: var(--white);
    border-bottom: 4px solid var(--gold);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Section Header Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Home Hero Carousel / Showcase */
.hero-showcase-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 140px 0;
    border-bottom: 5px solid var(--gold);
}

.carousel-fade .carousel-item {
    transition: opacity 1.2s ease-in-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-headers);
}

.hero-title span {
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 650px;
    margin-bottom: 30px;
}

/* Pillars Grid Section */
.pillar-card {
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-bottom: 4px solid var(--navy-mid);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.pillar-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--ice-blue);
    color: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon-wrapper {
    background-color: var(--gold);
    color: var(--navy-dark);
}

/* Course Cards */
.course-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.course-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-card-image img {
    transform: scale(1.08);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--navy-mid);
    color: var(--gold);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

.course-info {
    padding: 25px;
}

.course-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.course-meta {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
}

/* Faculty Section */
.faculty-card {
    background-color: var(--navy-mid);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 30px;
    color: var(--white);
    transition: var(--transition);
    height: 100%;
}

.faculty-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 5px;
}

.faculty-rank {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #dfdfdf;
    margin-bottom: 15px;
    font-weight: 600;
}

.faculty-bio {
    font-size: 0.9rem;
    color: #cfd8dc;
}

/* CTA Mid Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.95), rgba(30, 58, 95, 0.95)), url('../images/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 70px 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '“';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(197, 160, 89, 0.15);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-meta span {
    font-size: 0.85rem;
    color: var(--light-text);
    text-transform: uppercase;
}

/* Blog Cards */
.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-body {
    padding: 25px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Gallery Grid */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 22, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Info Box */
.contact-info-box {
    background-color: var(--navy-mid);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    height: 100%;
    border-left: 5px solid var(--gold);
}

.contact-info-box h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-link {
    color: #e0e0e0;
    transition: var(--transition);
}
.contact-link:hover {
    color: var(--gold);
}

/* Modern Premium Footer styling */
.footer-custom {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #030a14 100%);
    color: #cbd5e1;
    padding: 90px 0 40px 0;
    border-top: 5px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
    z-index: 1;
}

.footer-custom p,
.footer-custom span,
.footer-custom li {
    color: #cbd5e1 !important; /* Legible light text on dark navy */
    position: relative;
    z-index: 2;
}

.footer-custom strong {
    color: var(--white) !important;
}

.footer-custom .text-muted {
    color: #94a3b8 !important; /* Force light gray instead of dark text-muted on navy */
}

.footer-custom h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
    z-index: 2;
}

.footer-custom h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    z-index: 2;
    position: relative;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white) !important;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    z-index: 2;
    position: relative;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.3);
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

/* Admin Dashboard Table */
.admin-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}

.admin-table th {
    background-color: var(--navy-mid);
    color: var(--white);
    font-weight: 600;
}

.admin-sidebar {
    background-color: var(--navy-mid);
    color: var(--white);
    min-height: 100vh;
    padding-top: 20px;
}

.admin-sidebar-link {
    color: rgba(255,255,255,0.8);
    display: block;
    padding: 15px 25px;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.admin-sidebar-link:hover, .admin-sidebar-link.active {
    background-color: rgba(255,255,255,0.05);
    color: var(--gold);
    border-left-color: var(--gold);
}

.admin-card {
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-sm);
}

/* Section Spacing Consistency */
section {
    padding: 60px 0;
    overflow: hidden; /* Prevent horizontal scroll from reveal animations */
}
@media (min-width: 992px) {
    body {
        padding-top: 85px; /* Offset for desktop floating capsule nav */
    }
    section {
        padding: 90px 0 !important;
    }
    .navbar-custom {
        background-color: rgba(7, 22, 44, 0.85);
        backdrop-filter: blur(15px) saturate(160%);
        border: 1px solid rgba(197, 160, 89, 0.18) !important;
        border-radius: 60px;
        margin: 12px auto;
        width: 94%;
        max-width: 1200px;
        height: auto;
        padding: 6px 25px !important;
        left: 0;
        right: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 24px;
        right: 24px;
        font-size: 24px;
    }
}

/* Responsive Overrides & Mobile-First Optimizations */
@media (max-width: 991px) {
    section {
        padding: 24px 0 !important; /* 16-24px padding on mobile */
    }
    
    .row {
        --bs-gutter-y: 16px; /* 12-16px element gap on mobile */
    }

    .navbar-collapse {
        background-color: var(--navy-dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 4px;
        border: 1px solid rgba(197, 160, 89, 0.2);
    }
    
    .nav-link-custom::after {
        display: none;
    }
    
    .hero-title {
        font-size: 32px !important; /* 28-32px max on mobile */
        line-height: 1.25;
    }
    
    .page-header h1 {
        font-size: 30px !important;
    }
    
    .contact-info-box {
        margin-top: 30px;
    }
    
    .hero-showcase-slide {
        padding: 70px 0 !important;
        text-align: center;
        min-height: auto !important;
    }
    
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px !important;
        max-width: 100% !important;
    }
    
    .section-title h2 {
        font-size: 26px !important;
    }
    
    .page-header {
        padding: 70px 0 35px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 20px 0 !important; /* Tighter padding for very small displays */
    }
    .hero-title {
        font-size: 28px !important; /* 28-32px max on mobile */
    }
    .hero-subtitle {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    .section-title h2 {
        font-size: 22px !important;
    }
    .btn-gold, .btn-navy, .btn-outline-gold {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .d-flex.flex-wrap {
        flex-direction: column;
    }
    .pillar-card, .course-card, .faculty-card, .testimonial-card {
        padding: 24px 16px !important;
    }
}

/* Premium Scroll Reveal Animation system */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) !important;
}

/* Delay modifiers for staggered load-in */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Enhanced Button Glow Transitions */
.btn-gold {
    box-shadow: 0 4px 14px 0 rgba(197, 160, 89, 0.25);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    box-shadow: 0 6px 20px 0 rgba(197, 160, 89, 0.45);
    transform: translateY(-2px);
}

.btn-navy {
    box-shadow: 0 4px 14px 0 rgba(10, 37, 64, 0.25);
    transition: all 0.3s ease;
}
.btn-navy:hover {
    box-shadow: 0 6px 20px 0 rgba(10, 37, 64, 0.45);
    transform: translateY(-2px);
}

/* Premium Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
    border: 2px solid var(--navy-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Premium Chart Coordinates Grid Background Overlay */
.bg-chart-grid {
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    position: relative;
}
.bg-chart-grid::before {
    content: '⚓';
    font-family: 'FontAwesome';
    font-size: 8rem;
    color: rgba(197, 160, 89, 0.03);
    position: absolute;
    top: 15%;
    right: 8%;
    pointer-events: none;
}

/* Glassmorphism Dark Cards */
.glass-card-dark {
    background: rgba(7, 22, 44, 0.45) !important;
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(7, 22, 44, 0.25) !important;
    color: var(--white) !important;
}

/* Rule of the Road Simulator night box */
.simulator-sky-box {
    background-color: #020710;
    height: 180px;
    border-radius: 8px;
    border: 2px solid #111e30;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

/* Navigation lights simulation */
.nav-light {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.nav-light.red {
    background-color: #ff3333;
    box-shadow: 0 0 15px #ff3333, 0 0 30px #ff3333;
}

.nav-light.green {
    background-color: #33ff33;
    box-shadow: 0 0 15px #33ff33, 0 0 30px #33ff33;
}

.nav-light.white {
    background-color: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff;
}

