:root {
    --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    --bg-gradient: radial-gradient(circle at top right, #f8fbff 0%, #ffffff 100%);
    --text-primary: #1a1a1a;
    --text-muted: #6c757d;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --brand-gold: #ffc107;
    
    /* Station Colors from User Reference */
    --clr-hotel: #0d6efd;      /* Blue */
    --clr-restaurant: #198754;   /* Green */
    --clr-halls: #ffca2c;      /* Yellow/Gold (Match User Image) */
    --clr-inventory: #0dcaf0;    /* Cyan */
    --clr-finance: #495057;      /* Dark Gray */
    --clr-services: #0d6efd;     /* Blue */
    --clr-hr: #20c997;           /* Teal */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Customization */
.top-bar {
    background: #000 !important; /* Pitch black for maximum contrast */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
    color: #fff !important;
}

.top-bar a, .top-bar span, .top-bar i {
    color: #fff !important;
    transition: opacity 0.3s ease;
}

.top-bar i.text-warning {
    color: var(--brand-gold) !important;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.navbar {
    background: #0d6efd !important; /* Solid Blue */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    z-index: 1020;
}

.brand-text {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.brand-text span {
    color: var(--brand-gold);
}

.btn-login {
    background: var(--brand-gold);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #fff;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Hero Carousel Styling */
.hero-carousel {
    margin-top: 0;
    min-height: 700px;
    background: #000;
    position: relative;
    z-index: 1;
}

.carousel, .carousel-inner, .carousel-item {
    height: 700px;
}

.slide-overlay {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 10s linear;
}

.carousel-item.active .slide-overlay {
    transform: scale(1.1);
}

.slide-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
}

/* Sections */
.features-section {
    position: relative;
    z-index: 2; /* Move it explicitly into the flow */
    background: #fff;
    margin-top: 0;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease backwards;
}

.animate-up-delay {
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.animate-up-delay-2 {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Station Feature Cards */
.station-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--card-shadow);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.station-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Box Colors */
.ib-hotel { background: rgba(13, 110, 253, 0.1); color: var(--clr-hotel); }
.ib-restaurant { background: rgba(25, 135, 84, 0.1); color: var(--clr-restaurant); }
.ib-halls { background: rgba(255, 193, 7, 0.1); color: var(--clr-halls); }
.ib-inventory { background: rgba(13, 202, 240, 0.1); color: var(--clr-inventory); }
.ib-finance { background: rgba(73, 80, 87, 0.1); color: var(--clr-finance); }
.ib-services { background: rgba(13, 110, 253, 0.1); color: var(--clr-services); }
.ib-hr { background: rgba(32, 201, 151, 0.1); color: var(--clr-hr); }

.station-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 3px 0;
}

.station-features li i {
    color: var(--clr-restaurant);
    margin-right: 8px;
}

/* Pitch Visuals */
.pitch-visual img {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.animate-pulse-slow {
    animation: pulse 4s infinite;
}

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

.fs-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.fs-value { font-weight: 700; color: #1a1a1a; }

.pp-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Footer Customization */
.footer-brand .brand-text { font-size: 1.75rem; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .hero-carousel { height: 70vh; }
    .carousel-caption { text-align: center; }
    .carousel-caption .container { text-align: center !important; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}
