
        :root {
            --primary: #0056b3;
            --primary-dark: #003d82;
            --secondary: #f8f9fa;
            --accent: #ff6b00;
            --text: #333;
            --light-text: #6c757d;
            --border: #dee2e6;
            --success: #28a745;
            --danger: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 15px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100px;
            margin-right: 10px;
            transition: transform 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide-content {
            max-width: 800px;
            padding: 0 20px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-1 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8)), url('https://images.unsplash.com/photo-1526721940322-10fb6e3ae94a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
        }
        
        .slide-2 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8)), url('https://images.unsplash.com/photo-1528605105345-5344ea20e269?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
        }
        
        .slide-3 {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.8)), url('https://images.unsplash.com/photo-1579389083046-e3df9c2b3325?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80');
        }
        
        .slide h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .slide p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #e05e00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.3);
        }
		.inner-banner-section {
    position: relative;
    background-image: url("../images/about.png");
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.inner-banner-section::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.8;
}

.inner-banner-content{
    margin-top: -12px;
    margin-bottom: -10px;
}

.inner-banner-content .title{
    font-size: 60px;
    color: #fff;
    line-height: 1.2;
}

.breadcrumb-section{
    background-color: #fafafa;
    padding: 10px;
}

.breadcrumb{
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item.active{
    font-weight: 700;
    color: var(--main-color);
}

.breadcrumb .breadcrumb-item a{
    font-weight: 700;
    transition: all 0.3s;
}

.breadcrumb .breadcrumb-item a:hover{
    color: var(--main-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/";
}

.about-section {
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    background-color: #f8f9fd;
}

.about-section::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 24%;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;

}

.about-left-content{
    margin-top: -10px;
}

.about-left-content .title{
    margin-bottom: 30px;
}

.about-left-content p{
    margin-bottom: 15px;
}

.about-item li{
    padding: 3px 0;
}

.about-item li::before {
    content: "\f00c";
    color: var(--main-color);
    font-family: 'Font Awesome 5 Free';
    font-size: 12px;
    margin-right: 10px;
    font-weight: 700;
}

.about-left-content .cmn-btn{
    margin-top: 30px;
}

.about-element-one {
    position: absolute;
    top: 25%;
    right: 35px;
}

.about-element-one img{
    animation: rotate2 30s linear infinite;
}

.about-element-two {
    position: absolute;
    top: 30%;
    right: 0;
}

.about-section .cmn-btn{
    display: inline-flex;
}

.service-item{
    position: relative;
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.pt-80{
    padding-top: 80px;
}

.pt-120 {
    padding-top: 120px;
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media (max-width: 575px) {
    .pt-120 {
        padding-top: 70px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media (max-width: 575px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 575px) {
    .px-40 {
        padding-left: 15px;
        padding-right: 15px;
    }
}



.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: transparent;
    border-radius: 50%;
    color: #fff;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

.scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
    color: #fff;
}

.scrollToTop:hover{
    color: #fff;
}

		  /* Improved comment styling */
        .comments-list {
            max-height: 500px;
            overflow-y: auto;
        }
        .comment-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        .comment-content {
            padding-left: 70px;
        }
        .comment-thumb img {
            border-radius: 50%;
            width: 50px;
            height: 50px;
            object-fit: cover;
        }
        
        /* Responsive images */
        .blog-thumb--style2 img {
            max-width: 100%;
            height: auto;
        }
        
        /* Form enhancements */
        .comment-form .form-group {
            margin-bottom: 20px;
        }
        .comment-form textarea {
            min-height: 150px;
        }
        .required {
            color: #e74c3c;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .modal-content {
            background-color: white;
            max-width: 700px;
            margin: 50px auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
            animation: modalOpen 0.4s ease;
        }
        
        @keyframes modalOpen {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8rem;
            color: var(--light-text);
            cursor: pointer;
            transition: color 0.3s;
            background: none;
            border: none;
            z-index: 10;
        }
        
        .close-modal:hover {
            color: var(--primary);
        }
        
        .modal-header {
            padding: 25px 30px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 10px 10px 0 0;
        }
        
        .modal-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--light-text);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        /* Tracking Results */
        .tracking-result {
            margin-top: 30px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .status-bar {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 30px 0;
        }
        
        .status-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--border);
            z-index: 1;
        }
        
        .status-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            position: relative;
        }
        
        .status-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .status-step.active .status-dot {
            background-color: var(--success);
            transform: scale(1.2);
        }
        
        .status-step.completed .status-dot {
            background-color: var(--primary);
        }
        
        .shipment-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .detail-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
        }
        
        .detail-card h4 {
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .detail-card h4 i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, var(--primary-dark), #002856);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-column ul li a i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-column p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.2rem;
            width: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Alert Messages */
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .alert i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .slide h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-slider {
                height: 70vh;
            }
            
            .slide h2 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .logo {
                margin-left: 10px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                width: 100%;
                padding: 12px;
                font-size: 1rem;
            }
            
            .status-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .status-bar::before {
                display: none;
            }
            
            .status-step {
                flex-direction: row;
                margin-bottom: 20px;
            }
            
            .status-dot {
                margin-right: 15px;
                margin-bottom: 0;
            }
            
            .logo h1 {
                font-size: 1.3rem;
            }
            
            .mobile-menu-btn {
                margin-right: 10px;
            }
        }
		
		
		 /* Tracking Section */
        .tracking {
            padding: 80px 0;
            background-color: #f5f7fa;
        }
        
        .tracking-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
        }
        
        /* Booking Section */
        .booking {
            padding: 80px 0;
            background-color: white;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        /* Tracking Results */
        .tracking-result {
            margin-top: 30px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .status-bar {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 30px 0;
        }
        
        .status-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--border);
            z-index: 1;
        }
        
        .status-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            position: relative;
        }
        
        .status-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: white;
        }
        
        .status-step.active .status-dot {
            background-color: var(--success);
        }
        
        .status-step.completed .status-dot {
            background-color: var(--primary);
        }
        
        .shipment-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .detail-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .detail-card h4 {
            margin-bottom: 10px;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-column p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Alert Messages */
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .tracking-container, .booking-container {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .hero h2 {
                font-size: 1.6rem;
            }
            
            .btn {
                width: 100%;
                padding: 15px;
            }
            
            .status-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .status-bar::before {
                display: none;
            }
            
            .status-step {
                flex-direction: row;
                margin-bottom: 20px;
            }
            
            .status-dot {
                margin-right: 15px;
                margin-bottom: 0;
            }
        }
   