* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .top-bar {
    background-color: #d16221;
    padding: 10px 20px;
    text-align: left;
    color: #ffffff;
  }
  

  .contact-info {
    font-size: 14px;
  }
  
  .contact-info i {
    margin-right: 5px; /* Add spacing between icon and text */
  }
  
  header {
    background-color: #ffffff;
    padding: 20px 50px; /* Increased padding to move logo and menu away from the edges */
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    width: 70px;
  }
  
  .menu {
    list-style-type: none;
    display: flex;
  }

  .menu li {
    margin-left: 30px; /* Increased spacing between menu items */
    font-weight: 600;
  }
  
  .menu li a {
    text-decoration: none;
    color: #000000;
    position: relative;
    transition: color 0.3s;
  }
  
  .menu li a:hover {
    color: #f44336;
  }
  
  .menu li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f44336;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  
  .menu li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }
  
  /* .menu li {
    margin-left: 15px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #ffffff;
  } */
  
.hero {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.171), rgba(0, 0, 0, 0.171)), url('img/h1.jpg'); */
    background-size: cover;
    background-position: center;
    height: 100vh; 
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: #ffffff;
    padding: 70px 60px 60px 60px;
  } 

  .hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 85px;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  .hero-content {
    background-color: #ffffff;
    padding: 40px;
    width: 700px;
    text-align: left; /* Changed to left-aligned */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #333;
    margin-bottom: 150px;
  }
  

  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero p{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 2.0;
  }

  .divider {
    border: 1px solid black;
    border-top: 1px solid #333;
    width: 350px;
    margin: 10px 0;
  }
  
  .buy-button {
    margin-top: 10px;
    display: inline-block;
    background-color: #f44336;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
  }
  
  .buy-button:before {
    content: "→";
    position: absolute;
    font-size: 18px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
  }
  
  .buy-button:hover:before {
    right: 10px;
    opacity: 1;
  }


  .cards {
    display: flex;
    justify-content: center;
    margin-top: -160px; /* Overlap with the hero section */
  }
  
  .card {
    background-color: #ffffff;
    width: 300px; /* Increased width */
    padding: 40px; /* Increased padding for a larger card */
    margin: 0 15px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.233);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s;
  }
  
  .card p {
    line-height: 2.0;
    text-align: left;
    font-size: 16px;
    margin-bottom: 35px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card i {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* .card-link {
    text-decoration: none;
    color: #333;
    position: relative;
    transition: color 0.3s;
  }
  
  .card-link:hover {
    color: #f44336;
  }
  
  .card-link:before {
    content: "→";
    position: absolute;
    font-size: 18px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
  }
  
  .card-link:hover:before {
    right: 10px;
    opacity: 1;
  } */

  .card-button {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    margin-top: 50px;
  }
  
  .card-button:hover {
    color: #f44336;
  }
  
  .card-button i {
    font-size: 18px;
    margin-left: 5px;
    position: relative;
    top: 10px; /* Further adjust the arrow alignment with the text */
  }
  


/* ... (keep the previous content) */

.about-us {
    text-align: left;
    padding: 50px;
    margin: 0;
    background-image: url('img/bk.avif');
    background-size: cover;
    background-position: center;
    padding: 50px;
    margin-top: 35px;
    padding: 85px;
  }
  
  .about-us h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .about-us h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: lighter;
  }
  
  .about-us p {
    font-size: 18px;
    line-height: 2.0;
    margin-bottom: 20px;
  }
  
  .about-us ul {
    padding-left: 20px;
  }
  
  .about-us li {
    font-size: 16px;
    line-height: 2.5;
  }
  
  /* ... (keep the previous content) */
  
  /* ... (keep the previous content) */

.who-we-are {
    margin-top: 50px;
    display: flex;
    background-image: linear-gradient(to right, rgba(0, 0, 255, 0.377), rgba(0, 0, 255, 0.377)), url('img/h1.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px;
    min-height: 600px; /* Increase the height of the section */
  }
  
  .who-we-are-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-left: 20px;
    width: 500px; /* Adjust the width of the image */
    height: 600px; /* Adjust the height of the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    margin-top: 45px;
  }
  
  .who-we-are-text {
    flex: 1;
    text-align: left;
    padding: 50px;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .who-we-are-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .who-we-are-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .who-we-are-text p {
    font-size: 18px;
    line-height: 2.5;
    margin-bottom: 20px;
  }
  
  .about-us-button {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s, background-color 0.3s;
    background-color: #ffffff; /* Add background color */
    border: 1px solid #333; /* Add border */
    border-radius: 5px; /* Add rounded corners */
    padding: 10px 15px; /* Add padding */
  }
  
  .about-us-button:hover {
    color: #ffffff; /* Change text color on hover */
    background-color: #f44336; /* Change background color on hover */
  }
  
  .about-us-button i {
    font-size: 18px;
    margin-left: 5px;
  }
  
  /* ... (keep the previous content) */
  
  
  .services {
    text-align: center;
    padding: 50px;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
  }
  
  .service-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    width: 400px; /* Updated width from 300px to 350px */
    transition: transform 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .services h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .services p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .learn-more-btn {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
  }
  
  .learn-more-btn:hover {
    text-decoration: underline;
  }
  
  .arrow {
    font-size: 24px;
    vertical-align: middle;
  }

.what-we-offer {
    display: flex;
    padding: 50px;
    position: relative;
  }
  
  /* ... (keep the previous content) */
  
  /* .offer-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
  } */
  
  .offer-text {
    flex: 1;
    text-align: left;
  }
  
  .offer-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    /* border: 10px solid rgba(0, 0, 0, 0.562); */
    width: 50%;
  }
  
  .what-we-offer h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .what-we-offer h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .what-we-offer p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .progress-container {
    margin-top: 20px;
  }
  
  .progress-label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .progress-bar {
    background-color: #f0f0f0;
    border-radius: 5px;
    height: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    width: 90%;
  }
  
  .progress-value {
    background-color: #f44336;
    height: 100%;
    transition: width 10s;
  }
  
  .diesel {
    width: 91%;
  }
  
  .aviation-fuel {
    width: 81%;
  }
  
  .lng {
    width: 88%;
  }
  
  .lpg {
    width: 61%;
  }
  
  /* ... (keep the previous content) */
  

  .sustainability {
    background-image: linear-gradient(to right, rgba(0, 0, 255, 0.377), rgba(0, 0, 255, 0.377)), url('img/h1.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px;
  }
  
  .sustainability-content {
    max-width: 50%;
    font-family: 'Arial', sans-serif; /* Use a professional font */
  }

  .sustainability{
    color: #ffffff;
    line-height: 2.5;
  }
  
  .sustainability h2 {
    font-size: 40px;
    margin-bottom: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.5;
  }
  
  .sustainability h3 {
    color: rgb(204, 201, 201);
    font-weight: lighter;
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .sustainability p {
    font-size: 18px;
    line-height: 2.0;
    margin-bottom: 15px;
  }
  

/* ... (keep the previous content) */

.contact-us {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-image: linear-gradient(to right, #0011ff93, #ffbb00a1); /* Gradient background */
    min-height: 300px; /* Added minimum height */
  }
  
  .contact-us-left {
    max-width: 50%;
  }
  
  .contact-us-left h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .contact-us-right {
    display: flex;
    gap: 25px;
  }
  
  .contact-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    width: 300px; /* Adjusted width */
    text-align: center;
    height: 200px;
  }
  
  .contact-card i {
    margin-top: 20px;
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .contact-card p {
    font-size: 15px;
  }
  
  /* ... (keep the previous content) */
  
  



  .services,
  .projects,
  .news {
    padding: 40px;
  }
  
  .service,
  .project,
  article {
    margin-bottom: 20px;
  }
  
  .services h2,
  .projects h2,
  .news h2 {
    margin-bottom: 20px;
    font-size: 36px;
  }
  
 /* ... (keep the previous content) */

/* Footer */
footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 50px 0;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    height: 60px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 24px;
    font-weight: bold;
  }
  
  .footer-links,
  .footer-contact {
    width: 300px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-contact p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    color: #0094ff;
  }
  
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
  }
  
  /* ... (keep the previous content)
  
  
  /* ... (keep the previous content) */


/* ... (keep the previous content) */

/* .nav-open {
  display: flex;
  animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
} */


.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: rgb(0, 0, 0);
}

  @media(max-width: 700px) {
    /* ... (keep the previous content) */

    .hamburger{
      display: block;
    }

    .hamburger.active .bar:nth-child(2){
      opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
    }

    .nav-items{
      margin: 16px auto;
    }

    .menu{
      position: fixed;
      left: -100%;
      top: 150px;
      gap: 0;
      flex-direction: column;
      background-color: #ffffff;
      width: 100%;
      text-align: center;
      transition: 0.5s;
    }

    .menu.active{
      left: 0;
    }

    .menu li:not(:last-child) {
      border-bottom: 1px solid #000;
  }
    

    .footer-links h4,
  .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 35px;
  }

    .footer-container {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      margin-left: 30px;
    }
    
    .footer-logo img {
      height: 60px;
      margin-bottom: 20px;
    }

    .who-we-are {
      width: 100%;
      margin-top: 50px;
      display: flex;
      background-image: linear-gradient(to right, rgba(0, 0, 255, 0.377), rgba(0, 0, 255, 0.377)), url('img/h1.jpg');
      background-size: cover;
      background-position: center;
      padding: 50px;
      min-height: 600px; /* Increase the height of the section */
    }
  
    .contact-us-right {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-us-left p {
      font-size: 20px;
      margin-bottom: 35px;
    }

    .contact-us-left h2 {
      font-size: 30px;
      margin-bottom: 15px;
    }
    
    .contact-us {
      margin-top: 20px;
      flex-direction: column;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px;
      background-image: linear-gradient(to right, #0011ff93, #ffbb00a1); /* Gradient background */
      min-height: 300px; /* Added minimum height */
    }

    .contact-card {
      background-color: #f0f0f0;
      border-radius: 10px;
      padding: 0;
      width: 380px; /* Adjusted width */
      text-align: center;
      height: 200px;
    }

    .top-bar {
      width: 100%;
      background-color: #d16221;
      padding: 10px 20px;
      text-align: left;
      color: #ffffff;
    }

    /* .hero-background-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 100%;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    } */

    /* .menu {
      list-style-type: none;
      display: flex;
      display: none;
    } */

    .logo{
      align-items: center;
    }

    .divider {
      border: 1px solid black;
      border-top: 1px solid #333;
      width: 300px;
      margin: 10px 0;
    }

    .hero-background-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 50%;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .hero-content {
      margin-top: -150px;
      background-color: #ffffff;
      padding: 40px;
      width: 350%;
      align-items: center;
      text-align: left;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      color: #333;
      margin-bottom: 150px;
    }
    
    .hero {
      /* background-image: linear-gradient(rgba(0, 0, 0, 0.171), rgba(0, 0, 0, 0.171)), url('img/h1.jpg'); */
      background-size: cover;
      background-position: center;
      height: 100vh; 
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      padding: 70px 60px 60px 60px;
    } 
  
    
    .hero h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }
  
    .hero p{
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      line-height: 2.0;
    }

    .cards {
      
      /* margin-left: 45px; */
      display: flex;
      justify-content: center;
      margin-top: -160px; /* Overlap with the hero section */
      flex-direction: column;
    }

    .card{
      width: auto;
      margin-bottom: 40px;
    }
    

    html, body {
      overflow-x: hidden;
    }

    .about-us {
      text-align: center;
      background-image: url('img/bk.avif');
      background-size: cover;
      background-position: center;
      margin-top: 35px;
      margin: 10px;
      padding: 10px;
      
    }
    
    .about-us h2 {
      width: 100%;
      font-size: 36px;
      margin-bottom: 15px;
      font-family: 'Courier New', Courier, monospace;
    }
    
    .about-us h3 {
      margin-top: 35px;
      font-size: 24px;
      margin-bottom: 15px;
      font-family: 'Courier New', Courier, monospace;
      font-weight: lighter;
    }
    
    .about-us p {
      margin-top: 35px;
      font-size: 18px;
      line-height: 2.0;
      margin-bottom: 20px;
    }
    
    .about-us ul {
      text-align: left;
    }
    
    .about-us li {
      font-size: 16px;
      line-height: 2.5;
    }

    .divider2 {
      border: 1px solid black;
      border-top: 1px solid #333;
      width: 300px;
      margin-left: 40px;
    }

    .who-we-are {
      width: 100%;
      margin-top: 50px;
      display: flex;
      background-image: linear-gradient(to right, rgba(0, 0, 255, 0.377), rgba(0, 0, 255, 0.377)), url('img/h1.jpg');
      background-size: cover;
      background-position: center;
      padding: 20px;
      min-height: 600px; /* Increase the height of the section */
      flex-direction: column-reverse;
    }

    .who-we-are-image {
      flex: 1;
      background-size: cover;
      background-position: center;
      width: auto; 
      height: auto;
      background-repeat: no-repeat; 
      margin-bottom: 10px;
    }
    
    .who-we-are-text {
      flex: 1;
      text-align: left;
      padding: 0;
      margin: 0;
      color: #ffffff;
      font-family: 'Courier New', Courier, monospace;
    }
    
    .who-we-are-text h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }
    
    .who-we-are-text h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .who-we-are-text p {
      font-size: 18px;
      line-height: 2.5;
      margin-bottom: 20px;
    }

    .card-container {
      align-items: center;
      flex-direction: column;
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-bottom: 20px;
    }

    .what-we-offer {
      display: flex;
      flex-direction: column;
      padding: 50px;
      position: relative;
    }

    .offer-image {
      flex: 1;
      background-size: cover;
      background-position: center;
      border: 10px solid rgba(0, 0, 0, 0.562);
      height: auto;
      width: 100%;
      margin-top: 15px;
    }

    .sustainability {
      background-image: linear-gradient(to right, rgba(0, 0, 255, 0.377), rgba(0, 0, 255, 0.377)), url('img/h1.jpg');
      background-size: cover;
      background-position: center;
      padding: 1px;
    }
    
    .sustainability-content {
      margin-top: 20px;
      margin-bottom: 20px;
      margin-left: 20px;
      max-width: 100%;
      font-family: 'Arial', sans-serif; /* Use a professional font */
    }
  
    .sustainability{
      color: #ffffff;
      line-height: 2.5;
    }
    
    .sustainability h2 {
      font-size: 40px;
      margin-bottom: 5px;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      line-height: 1.5;
    }
    
    .sustainability h3 {
      color: rgb(204, 201, 201);
      font-weight: lighter;
      font-size: 18px;
      margin-bottom: 5px;
    }
    
    .sustainability p {
      font-size: 18px;
      line-height: 2.0;
      margin-bottom: 15px;
    }
    

  }

  /* Desktop view */
  @media(max-width: 700px) {
  .menu-toggle {
    display: none;
  }
}