```

---

## style.css

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

body {
  font-family: 'Poppins', sans-serif;
  color: #0a1f44;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.topbar {
  background: #001b44;
  color: white;
  font-size: 14px;
  padding: 10px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-info span,
.right-info span {
  margin-right: 20px;
}

.header {
  background: white;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
.logo h2 {
  font-size: 32px;
  font-weight: 700;
}
*/

/*
.logo span {
  color: #f4b400;
}
*/

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #0a1f44;
  font-weight: bold;
}

/*
.quote-btn {
  background: #f4b400;
  color: #001b44;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
*/

.hero {
  background: url('../assets/Heroimage.png') center/cover no-repeat;
  height: 750px;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0px 40% 0px 0%;
  background: rgba(0, 20, 60, 0.25);
}

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

.hero-text {
  max-width: 650px;
  color: white;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-text h1 span {
  color: #f4b400;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.primary-btn {
  background: #f4b400;
  color: #001b44;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
}

.services {
  padding: 100px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #f4b400;
  font-weight: bold;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 48px;
  color: #001b44;
  margin-bottom: 20px;
}

.service-box h3 {
  margin-bottom: 15px;
}

.about {
  padding: 8% 0% 8% 0%;
  background: #001b44;
  color: white;
}

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  /*align-items: center;*/
 
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-content span {
  color: #f4b400;
  font-weight: bold;
}

.about-content h2 {
  font-size: 42px;
  margin: 15px 0 25px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-item i {
  font-size: 30px;
  color: #f4b400;
}

.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contact-box {
  background: #f8fafc;
  padding: 35px 20px;
  border-radius: 10px;
  text-align: center;
}

.contact-box i {
  font-size: 36px;
  color: #001b44;
  margin-bottom: 15px;
}

.footer {
  background: #001b44;
  color: white;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 20px;
}

.footer span {
  color: #f4b400;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 600px) {

    .topbar {
  background: #001b44;
  color: white;
  font-size: 3px;
  padding: 5px 0;
}

  .logo{
    padding-left: 1px;
  }
  .logo img{
  width: 52%;
    padding-top: 10px;
}

  .manutext{
    font-size: 8px;
  }

   .hero {
    height: auto;
    padding: 0px 0;
  }
  .hero-text p{
    font-size: 13px;
  }
  
 .hero-text h1{
  font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .section-title h2,
  .about-content h2 {
    font-size: 32px;
  }
  
    .overlay {
  position: absolute;
  inset: 0px 0% 0px 0%;
  background: rgba(0, 20, 60, 0.25);
}
  
  
  .hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  padding-left: 34%;
 
}

.primary-btn {
  background: #f4b400;
  color: #001b44;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
  margin-bottom: 7%
}
  
  
  
}



@media (max-width: 768px) {

   .topbar {
  background: #001b44;
  color: white;
  font-size: 3px;
  padding: 5px 0;
}

  .logo{
    padding-left: 1px;
  }
  .logo img{
  width: 52%;
    padding-top: 10px;
}

  .manutext{
    font-size: 8px;
  }

   .hero {
    height: auto;
    padding: 0px 0;
  }
  .hero-text p{
    font-size: 13px;
  }
  
 .hero-text h1{
  font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .section-title h2,
  .about-content h2 {
    font-size: 32px;
  }
  
  
    .overlay {
  position: absolute;
  inset: 0px 0% 0px 0%;
  background: rgba(0, 20, 60, 0.25);
}
  
  
  .hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  padding-left: 34%;
 
}

.primary-btn {
  background: #f4b400;
  color: #001b44;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
  margin-bottom: 7%
}
  
}
```

---

## HOW TO USE

1. Create a folder named:

```bash
molla-logistics
```

2. Inside the folder create:

```bash
index.html
style.css
```

3. Copy the HTML code into:

```bash
index.html
```

4. Copy the CSS code into:

```bash
style.css
```

5. Open:

```bash
index.html
```

in your browser.

---

## OPTIONAL NEXT STEP

You can later add:

* WhatsApp floating button
* Contact form
* Live quote form
* SEO optimization
* Mobile hamburger menu
* Dark mode
* Animated sections
* WordPress conversion
* Admin dashboard
* Booking system
* Customer tracking
