*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#06294a;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.top-bar{
background:#06294a;
color:#fff;
padding:10px 0;
font-size:14px;
}

.top-content{
display:flex;
justify-content:space-between;
}

header{
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
color:#06294a;
}

.logo img{
width:120px;
height:120px;
object-fit:contain;
}

.logo h2{
font-size:22px;
}

.logo p{
font-size:12px;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:#06294a;
font-weight:500;
}

.active{
color:#f28c28;
}

.hero{
min-height:85vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(6,41,74,0.75),
rgba(6,41,74,0.75)),
url('exclusive\ road.jpg');
background-size:cover;
background-position:center;
color:white;
text-align:center;
}

.hero h1{
font-size:4rem;
margin-bottom:20px;
}

.hero p{
max-width:800px;
margin:auto;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:#f28c28;
color:white;
text-decoration:none;
padding:15px 30px;
border-radius:8px;
font-weight:600;
}

.btn-secondary{
border:2px solid white;
color:white;
text-decoration:none;
padding:15px 30px;
border-radius:8px;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:2.5rem;
margin-bottom:10px;
}

.about-preview,
.services,
.fleet-preview,
.testimonials{
padding:90px 0;
}

.services{
background:#f8f9fb;
}

.service-grid,
.fleet-grid,
.testimonial-grid,
.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card,
.testimonial{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.stats{
background:#06294a;
color:white;
padding:80px 0;
text-align:center;
}

.stats h2{
color:#f28c28;
font-size:2.5rem;
}

.fleet-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.fleet-card img{
width:100%;
height:230px;
object-fit:cover;
}

.fleet-card h3,
.fleet-card p{
padding:0 20px;
}

.fleet-card h3{
margin-top:20px;
}

.fleet-card p{
padding-bottom:20px;
}

.center-btn{
text-align:center;
margin-top:40px;
}

.cta{
background:#06294a;
color:white;
text-align:center;
padding:100px 20px;
}

.cta h2{
margin-bottom:15px;
}

footer{
background:#041d35;
color:white;
padding:60px 0 20px;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-grid a{
display:block;
color:white;
text-decoration:none;
margin-top:10px;
}

.copyright{
text-align:center;
margin-top:40px;
}

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:white;
text-decoration:none;
padding:15px 20px;
border-radius:50px;
font-weight:600;
z-index:999;
}

@media(max-width:768px){

```
.hero h1{
    font-size:2.5rem;
}

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.top-content{
    flex-direction:column;
    text-align:center;
    gap:5px;
}
```

}


/* CTA Section - Parcel & Courier */
.cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional subtle pattern overlay */
.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.05;
    pointer-events: none;
}

/* Container */
.cta .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Paragraph */
.cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #f97316; /* orange accent for logistics energy */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hover effect */
.btn-primary:hover {
    background: #fb923c;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 60px 15px;
    }

    .cta h2 {
        font-size: 1.7rem;
    }

    .cta p {
        font-size: 1rem;
    }
}
* ==========================================================================
   6. FOOTER
   ========================================================================== */
footer {
    background-color: #06294a;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #f28c28;
    position: relative;
}

footer p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

footer a {
    display: block;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

footer a:hover {
    color: #f28c28;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==========================================================================
   7. STICKY WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E;
    color: #fff;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
    }
    .overview-text h2::after {
        margin: 10px auto 0 auto;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .about-hero {
        padding: 60px 0;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}
