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

:root {
    --navy: #004990;
    --electric: #0d254c;
    --silver: #A7A9AC;
    --gainsboro: #DCDDDE;
    --green: #008000;
    --red: #c21807;
    --radius: 10px;
    --transition: 0.2s cubic-bezier(.62,.01,.5,1);
    --gradient-primary: linear-gradient(135deg, var(--electric) 0%, var(--navy) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13, 37, 76, 0.95) 0%, rgba(0, 73, 144, 0.95) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--electric);
    overflow-x: hidden;
    background: #f8f9fa;
    max-width: 100vw;
}

/* Floating Shapes Background */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), transparent);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent, var(--navy));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy), transparent);
    border-radius: 50%;
    animation-delay: 4s;
}

.shape-4 {
    top: 30%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent, var(--navy));
    border-radius: 50%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translate(30px, -50px) rotate(120deg) scale(1.1);
    }
    66% { 
        transform: translate(-20px, 30px) rotate(240deg) scale(0.9);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.08;
    animation: floatIcon 15s infinite ease-in-out;
    pointer-events: none;
}

.icon-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    color: var(--navy);
}

.icon-2 {
    top: 45%;
    right: 8%;
    animation-delay: 3s;
    color: var(--electric);
}

.icon-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 6s;
    color: var(--navy);
}

.icon-4 {
    top: 70%;
    right: 20%;
    animation-delay: 9s;
    color: var(--electric);
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.25;
    }
}

/* Particle System */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rise 8s infinite ease-in;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Top Banner */
.top-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: all var(--transition);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
        }

        .navbar-brand {
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }

        .navbar-nav .nav-link {
            color: var(--electric) !important;
            font-weight: 600;
            margin: 0 20px;
            transition: all var(--transition);
            position: relative;
            font-size: 15px;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width var(--transition);
            border-radius: 10px;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-login {
            border: 2px solid var(--navy);
            color: var(--navy);
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            transition: all var(--transition);
            background: transparent;
            font-size: 15px;
            min-height: 48px;
            min-width: 100px;
        }

        .btn-login:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 73, 144, 0.3);
        }

        .btn-login:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0, 73, 144, 0.2);
        }

        .btn-register {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            transition: all var(--transition);
            font-size: 15px;
            box-shadow: 0 6px 20px rgba(0, 73, 144, 0.25);
            position: relative;
            overflow: hidden;
            min-height: 48px;
            min-width: 140px;
        }

        .btn-register::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-register:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-register:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 73, 144, 0.4);
        }

        .btn-register:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 73, 144, 0.3);
        }

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb-section {
    background: transparent;
    padding: 20px 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--electric);
    position: relative;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 73, 144, 0.15);
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 73, 144, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 73, 144, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('https://rajsolutions.co.in/wp-content/uploads/2025/08/Logistics-Image-VD_Medium.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 73, 144, 0.15);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--electric);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 0.25rem rgba(0, 73, 144, 0.15);
}

textarea.form-control {
    min-height: 120px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 73, 144, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 73, 144, 0.4);
}

/* Contact Info */
.contact-info-banner {
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    color: white;
}

.contact-info-banner h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 73, 144, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 73, 144, 0.2);
    border-left-color: var(--navy);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 73, 144, 0.25);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-item a {
    color: rgba(13, 37, 76, 0.7);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--navy);
}

.contact-item p {
    color: rgba(13, 37, 76, 0.7);
    margin: 0;
    font-size: 1.05rem;
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 73, 144, 0.15);
    height: 500px;
    border: 3px solid #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: var(--electric);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 1.3rem;
}

.footer .col-lg-4 h5 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff87, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .col-lg-4 > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition);
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer a:hover {
    color: #00ff87;
    transform: translateX(8px);
}

.footer .col-lg-4 ul li {
    margin-bottom: 15px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.footer .copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: 12px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 50px;
    min-height: 50px;
}

.social-icons a:hover {
    background: #00ff87;
    color: var(--electric);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 135, 0.3);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    background: white;
    color: var(--navy);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Loader Content (from landing page) */
.loader-content {
    text-align: center;
    color: white;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #00ff87;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .hero-section { padding: 80px 0 60px; }
}

@media (max-width: 768px) {
    .navbar-nav { text-align: center; margin-top: 20px; }
    .navbar-nav .nav-link { margin: 10px 0; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 2.5rem; }
    .newsletter-form { flex-direction: column; }
    .map-container { height: 300px !important; }
    .floating-icon, .shape { display: none; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .contact-form-card { padding: 25px; }
    .contact-item { padding: 20px; }
}

/* Skip to content for accessibility */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 12px 24px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
}

/* Focus indicators for accessibility */
*:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Tracking Card Styles */
.tracking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 8px 32px 0 rgba(0, 73, 144, 0.2);
    position: relative;
    overflow: hidden;
}

.tracking-card h4 {
    color: var(--navy);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.tracking-input {
    border: 2px solid var(--gainsboro);
    border-radius: 50px;
    padding: 20px 28px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.tracking-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(0, 73, 144, 0.1);
    outline: none;
}

.btn-track {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-weight: 800;
    color: white;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 73, 144, 0.3);
    transition: all 0.3s ease;
}

.btn-track:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 73, 144, 0.4);
}

/* Step Card Styles */
.how-it-works {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 50px 35px;
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 73, 144, 0.2);
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 73, 144, 0.3);
}

.step-number i {
    font-size: 42px;
}

.step-card h4 {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.4rem;
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 73, 144, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 73, 144, 0.3);
    transition: all 0.4s ease;
}

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

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

/* City Card Styles */
.city-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 73, 144, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--navy);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 73, 144, 0.2);
}

.city-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.city-card .badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Results Display */
#resultsContainer .result-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 73, 144, 0.15);
    animation: slideIn 0.4s ease;
}

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

/* Visually Hidden for Screen Readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Highlight */
.hero-highlight {
    background: linear-gradient(135deg, #00ff87, #60efff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Additional Responsive Fixes */
@media (max-width: 991px) {
    .tracking-card {
        padding: 35px 25px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
    }
    
    .step-number i {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh !important;
        padding-top: 80px !important;
    }
    
    .tracking-card {
        padding: 30px 20px;
    }
    
    .tracking-card h4 {
        font-size: 1.3rem;
    }
    
    .btn-track {
        width: 100%;
        padding: 16px 30px;
    }
    
    .step-card {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .tracking-card {
        padding: 25px 15px;
    }
    
    .tracking-input {
        padding: 16px 20px;
        font-size: 14px;
    }
}
