        :root {
            --primary-blue: #0066cc;
            --secondary-blue: #004c99;
            --dark-blue: #003366;
            --light-blue: #e6f0ff;
            --accent: #ff9900;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Header & Navigation */
        .navbar {
            padding: 0px;
            transition: all 0.3s ease;
            background: transparent;
        }
        .navbar .container {
            padding: 15px 0px;
            border-bottom: 1px solid #fff;

        }

        
        .navbar.scrolled {
            background:  rgba(0, 76, 153, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding:0px;
        }
        .navbar.scrolled .container{
            padding: 10px 0px;
            border-bottom: 1px solid #004c99;
        }
        
        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            color: #dfdfdf;  
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .nav-link .active{            
            color: #fff ;  
        }
        
        .navbar.scrolled .nav-link {            
            color: #dfdfdf;  
        }
        .navbar.scrolled .nav-link.active{            
            color: #fff !important;  
        }
        .navbar.scrolled .nav-link:hover{
            color: #fff;  
        }
        
        .nav-link:hover {
            color: #fff;  
        }
        
        .dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-blue);
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
            background-position: center;
            background-size: cover;
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: left;
            max-width: 600px;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Quick Links */
        .quick-links {
            padding: 80px 0;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        /* Company Snapshot */
        .company-snapshot {
            padding: 80px 0;
            background-color: var(--light-blue);
        }
        
        /* Trust Signals */
        .trust-signals {
            padding: 60px 0;
        }
        
        /* Quote Form */
        .quote-form {
            padding: 80px 0;
            background: linear-gradient(rgba(10, 51, 102, 0.5), rgba(10, 51, 102, 0.5)), url('../../assets/img/4270.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 0px;
            border: none;
        }
        .Apage-header {
            padding: 120px 0 80px;
            background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 51, 102, 0.5)), url('../../assets/img/4270.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--primary-blue);
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            padding: 20px;
            background: var(--light-blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 0 0 8px var(--light-blue);
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: var(--light-blue);
        }
        
        .team-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: #fff;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .team-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            background: var(--dark-blue);
            color: #fff;
            padding: 30px 30px 0px 30px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            margin-bottom: 22px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .contact-form {
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Page Header */
        .Cpage-header {
            background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 51, 102, 0.5)), url('../../assets/img/8b7275cb-9140-446e-af56-2fbe811b84d9.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        
        /* Contact Sections */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-section-alt {
            background-color: var(--light-blue);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin-top: 15px;
        }
        
        .text-center .section-title:after {
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Contact Cards */
        .contact-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            border: none;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card .card-body {
            padding: 2rem;
        }
        
        /* Contact Form */
        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        }
        
        /* Map */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Branch Info */
        .branch-info {
            padding: 25px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        /* Page Header */
        .Qpage-header {
            background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 51, 102, 0.5)), url('../../assets/img/8b7275cb-9140-446e-af56-2fbe811b84d9.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        
        /* Quote Sections */
        .quote-section {
            padding: 80px 0;
        }
        
        .quote-section-alt {
            background-color: var(--light-blue);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin-top: 15px;
        }
        
        .text-center .section-title:after {
            margin-left: auto;
            margin-right: auto;
        }
        
        .quote-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Quote Form */
        .quote-form-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-blue);
        }
        
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
        }
        
        /* Progress Bar */
        .progress-bar-container {
            margin-bottom: 40px;
        }
        
        .progress {
            height: 10px;
            margin-bottom: 20px;
        }
        
        .progress-bar {
            background-color: var(--primary-blue);
            transition: width 0.5s ease;
        }
        
        .step-indicators {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .step-indicator {
            text-align: center;
            position: relative;
            flex: 1;
        }
        
        .step-indicator:not(:last-child):after {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background-color: #e9ecef;
            z-index: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            background: #e9ecef;
            color: #6c757d;
            font-weight: 700;
            margin: 0 auto 10px;
            position: relative;
            z-index: 2;
        }
        
        .step-indicator.active .step-number {
            background: var(--primary-blue);
            color: white;
        }
        
        .step-indicator.completed .step-number {
            background: var(--accent);
            color: white;
        }
        
        /* Benefits */
        .benefit-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Page Header */
        .Spage-header {
            background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 51, 102, 0.5)), url('../../assets/img/cars-carrier-truck-road-highway-poland-lorry-transporter-logistics-work-trailer-with-cargo-car-drive-delivery-transport-export-industry-heavy-hauler-haul-vehicle-auto-haulage.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        
        /* Services Sections */
        .services-section {
            padding: 80px 0;
        }
        
        .services-section-alt {
            background-color: var(--light-blue);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin-top: 15px;
        }
        
        .text-center .section-title:after {
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Service Cards */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .service-card .card-body {
            padding: 2rem;
        }
        
        /* Process Section */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            background: var(--primary-blue);
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .process-connector {
            position: absolute;
            top: 90px;
            left: 60%;
            width: 40%;
            height: 2px;
            background: var(--primary-blue);
            z-index: 1;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1597838816882-4435b1977fbe?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: #fff;
            padding: 50px 0 30px;
        }
        
        footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }
        
        footer h5:after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: var(--accent);
            margin-top: 10px;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: #fff;
            text-decoration: none;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
        }
        
        /* Tabs for page switching */
        .page-tabs {
            background: var(--light-blue);
            padding: 15px 0;
        }
        
        .nav-pills .nav-link {
            color: var(--dark-blue) !important;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 5px;
        }
        
        .nav-pills .nav-link.active {
            background-color: var(--primary-blue);
            color: white !important;
        }
        /* Business Hours */
        .business-hours {
            list-style: none;
            padding: 0;
        }
        
        .business-hours li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .business-hours li:last-child {
            border-bottom: none;
        }
        /* Navigation Buttons */
        .btn-nav {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-prev {
            background-color: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .btn-prev:hover {
            background-color: var(--light-blue);
        }
        
        .btn-next {
            background-color: var(--primary-blue);
            color: white;
        }
        
        .btn-next:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Vehicle Preview */
        .vehicle-preview {
            border: 2px dashed var(--primary-blue);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            background: var(--light-blue);
        }
        /* Service Features */
        .service-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .quick-btn{
        position: fixed;
        right: 15px;
        bottom: 5%;
        z-index: 10999;
    }
    .quick-btn ul li{
        margin-bottom: 5px;
        text-align: right;
    }
    .quick-btn ul li a, .quick-btn ul li button{
        border-radius: 50px !important;
        padding: 10px;
        transition: all 0.3s ease-out;

    }
    .quick-btn ul li a span, .quick-btn ul li button span{
        display: none;
        transition: all 0.3s ease-in;
    }
    .quick-btn ul li a:hover span, .quick-btn ul li button:hover span{
        display: inline-block;
        transition: all 0.3s ease;
    }
    .quick-btn ul .last{
    }
        
