:root {
    --primary: #003566;
    --secondary: #00509d;
    --accent: #ffc300;
    --light: #f8fbff;
    --dark: #001d3d;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    overflow-x: hidden;
}

.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.navbar {
    background: rgba(0, 29, 61, .95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 29, 61, .75), rgba(0, 29, 61, .75)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 70px;
    font-weight: 800;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary);
}

.service-card,
.fleet-card,
.contact-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.service-card:hover,
.fleet-card:hover {
    transform: translateY(-10px);
}

.service-card {
    padding: 40px 25px;
}

.service-card i {
    color: var(--secondary);
    margin-bottom: 20px;
}

.fleet-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.counter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.counter-box h2 {
    font-size: 60px;
    font-weight: 800;
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 25px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid #fff;
}

.accordion-button {
    font-weight: 600;
}

.contact-box {
    padding: 50px;
}

.contact-box .form-control {
    padding: 14px;
    border-radius: 10px;
}

.btn-primary {
    background: var(--secondary);
    border: none;
}

.btn-warning {
    background: var(--accent);
    border: none;
}

.cta-section {
    background:
        linear-gradient(rgba(0, 29, 61, .85), rgba(0, 29, 61, .85)),
        url('https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

footer {
    background: var(--dark);
    color: #fff;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: var(--accent);
}

.swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }
}