:root {
    --primary-orange: #FF6B00;
    --navy-blue: #0A2342;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

/* Typography Utilities */
.text-orange { color: var(--primary-orange) !important; }
.text-navy { color: var(--navy-blue) !important; }
.bg-orange { background-color: var(--primary-orange) !important; }
.bg-navy { background-color: var(--navy-blue) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }
.bg-orange-light { background-color: rgba(255, 107, 0, 0.1) !important; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: #e66000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.btn-outline-navy {
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}
.btn-outline-navy:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding-top: 10px;
    padding-bottom: 10px;
}
.glass-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.glass-nav .nav-link:hover, .glass-nav .nav-link.active {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c83a56?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 35, 66, 0.9) 0%, rgba(10, 35, 66, 0.75) 50%, rgba(10, 35, 66, 0.5) 100%);
}
.hero-stats h3 {
    font-size: 2rem;
}

/* Floating Elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.float-1 { top: 20%; right: 10%; animation: float 6s ease-in-out infinite; }
.float-2 { bottom: 30%; right: 25%; animation: float 8s ease-in-out infinite reverse; }

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

/* Section Padding */
.section-padding {
    padding: 70px 0;
}
.tracking-wider {
    letter-spacing: 1.5px;
}

/* Services */
.service-card {
    background: var(--white);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    z-index: 1;
}
.service-hover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    transition: all 0.4s ease;
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.service-card:hover .service-hover-bg {
    height: 100%;
    opacity: 0.05;
}

/* Dashboard Mockup */
.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}
.dashboard-mockup {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 15px;
    bottom: -20px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-item.active::before {
    background: var(--primary-orange);
}
.timeline-marker {
    position: absolute;
    left: 0;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.pulse {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Fleet */
.fleet-card {
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent !important;
}
.fleet-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-orange) !important;
}
.fleet-card i {
    transition: transform 0.3s ease;
}
.fleet-card:hover i {
    transform: scale(1.1);
    color: var(--primary-orange) !important;
}

/* Industries */
.industry-badge {
    background: var(--white);
    color: var(--navy-blue);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    cursor: default;
}
.industry-badge:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer-links a {
    transition: all 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary-orange) !important;
    padding-left: 5px;
    opacity: 1 !important;
}

/* Experience Badge */
.experience-badge {
    bottom: -20px;
    right: -20px;
    background: rgba(255,255,255,0.9);
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
    .hero-section {
        text-align: center;
    }
    .hero-content .d-flex {
        justify-content: center;
    }
    .section-padding {
        padding: 50px 0;
    }
    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
}
