* {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
  }
  
  body {
    height: 100vh;
    background-color: white;
    background-size: cover;
    background-position: center;
    margin: 0; /* Ensure no default body margin */
  }
  
  /* Header styles */
  .web {
    width: 100%;
    background-color: white;
    background-position: left; /* Ensuring background position */
  }
  
  nav {
    width: 100%;
    margin: auto;
    display: flex;
    position: relative;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #f7f7f7;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    background-color: rgb(238, 238, 238);    
    
  }
  
  .menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 50px;
    background-color: rgb(238, 238, 238);    
  }
  
  .logo {
    cursor: pointer;
    width: 400px; /* Adjusted width */
    height: 120px; /* Adjusted height */
    display: block; /* Ensure it's treated as a block-level element */
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin-left: auto;
    margin-right: 5%;
    font-size: 1em;
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul li {
    position: relative; /* Ensure dropdown positioning */
    margin: 0 30px;
    background-color: rgb(238, 238, 238);    
    z-index: 1; /* Ensure main navigation items are behind submenu */
    padding: 45px 15px; /* Adjust padding for main navigation items */
    display: block;
    height: 120px;
  }
  
  nav ul li a {
    color: rgb(55, 55, 59);
    text-decoration: none;
    display: block; /* Make the entire area clickable */
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
    color: rgb(2, 0, 143);
  }
  
  /* Submenu styles */
  nav ul li .submenu {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 2; /* Ensure submenu appears above main navigation items */
    width: 200px; /* Example width; adjust based on your content */
    margin-top: 50px; /* Adjust as needed for spacing */
    padding: 0; /* Reset padding for submenu */
    left: 0; /* Align submenu to the left */
  }
  
  nav ul li:hover .submenu {
    display: block;
  }
  
  nav ul li .submenu li {
    text-align: left; /* Ensure submenu items are aligned to the left */
    background-color: rgb(238, 238, 238);    
    margin: 0;
  }
  
  nav ul li .submenu a {
    text-decoration: none;
    margin: 0;
    background-color: rgb(238, 238, 238);    
  }
  
  nav ul li .submenu a:hover {
    text-decoration: underline;
    margin: 0;
  }
  
  /* Toggle Button */
  .toggle_btn {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgb(238, 238, 238);    
  }
  
  .toggle_btn:hover {
    background-color: #e0e0e0; /* Background color on hover */
  }
  
  @media (max-width: 768px) {
    .toggle_btn {
        display: flex; /* Show toggle button on smaller screens */
    }
  
    nav ul {
        display: none; /* Hide the menu initially */
        flex-direction: column; /* Stack the menu items vertically */
        width: 100%; /* Full width */
        background-color: rgb(238, 238, 238);    
        position: absolute;
        top: 100px; /* Position below the navbar */
        left: 0;
        padding: 0;
    }
  
    nav ul.show {
        display: flex; /* Show the menu when the toggle button is clicked */
    }
  
    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0; /* Remove margin for list items */
        padding-top: 50px; /* Add padding for better spacing */
        
    }
  
    nav ul li a {
        width: 100%;
        display: block;
        padding: 10px 0;
    }
  }


/* HEADER -starttttttttttt*/
#services-section h6 { /*PICTURE HEADER*/
  font-size: 4em;
  margin-top: 0%;
  margin-bottom: 20px;
  margin-left: -100px;
  color: black;
  text-align: left;
  background-image: url('/pictures/VOLTA\(1\)\(1\).png'); /* Update with the correct path to your image */
  width: 105.4vw; /* Adjusted width to cover the full width of the viewport */
  line-height: 100%; /* Adjusted line height */
  background-size: cover;
  background-position: left center;
  color: white; /* Ensures text is readable over the background */
  display: inline-block;
  padding: 150px; /* Added padding for better readability */
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
  background-color: rgb(238, 238, 238);    
}
/* HEADER -endddddddddddd*/



/* SERVICES PICTURE */
section {
    display: flex;
    position: relative;
    background-color: white;
  }

#services-section h2 {
    font-size: 4em;
    margin-bottom: 40px;
    margin-top: 100px;
    width: 100%;
    line-height: 5%;
    text-align: left center;
    background-size: cover;
    background-position: left center;
    color: white; 
    display: inline-block;
    padding: 150px;
    padding-left: 80px;
    box-sizing: border-box; 
    background-color: white;
    z-index: 1;
}

/* Port Agency */

h6 { 
    font-family: 'Public Sans', sans-serif;
    font-weight: bold;
    font-size: 2em;
    text-indent: 3%;
    color: rgb(255, 255, 255);
    width: 100%;
    line-height: 60px;
    text-align: left;
    background: #010192da;
}

.main-content {
    width: 100%; 
    font-size: 1.2em;
    padding: 20px; /* Add padding for better spacing */
    text-align: center; /* Align text to the center */
}

.content-container {
    display: flex;
    flex-direction: row; /* Align items in a row */
    justify-content: flex-start; /* Align items to the start */
    align-items: flex-start; /* Align items to the start vertically */
    width: 100%;
    padding-top: 20px;
}

.left-side {
    width: 60%; 
    max-width: 800px;
    padding-left: 50px; /* Add space between text and image */
    text-align: left; /* Align text to the left */
    font-size: 1.1em;
    line-height: 1.6; /* Adjust line height for better readability */
}

.left-side p {
    margin-bottom: 0; /* Remove default margin */
    padding-bottom: 0.3em; /* Add padding to simulate bottom margin */
    line-height: 1.6; /* Match line height with parent container */
}

.port-container {
    width: 100%; 
    max-width: 800px;
    padding-top: 2%;
}

.port-container img {
    width: 100%; /* Make the image responsive */
    height: 500px; /* Maintain aspect ratio */
    margin-bottom: 30px;
}

.port-agency-text p {
    margin-bottom: 50px; /* Remove default margins for <p> */
}


    /* Footer Section */
    #below {
      width: 100%;
      padding-top: 30px;
      padding-bottom: 1px;
      background-color: rgb(238, 238, 238);    
    }
    
  /* Footer Logo */

  .logo1 {
      cursor: pointer;
      width: 300px;
      height: 100px;
      display: block; /* Ensure it's treated as a block-level element */
      background-color: rgb(238, 238, 238);    
    }



    /* FOOTER LIST */

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 120px;
      background-color: rgb(238, 238, 238);    
    }
    
  
  .footer-content {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding-left: 100%;
      background-color: rgb(238, 238, 238);    
    }
  
  .footer-section {
    margin-left: 10px;
    margin-right: 50px;
    background-color: rgb(238, 238, 238);    
    cursor: pointer;
      color: black;
  }
  
  .footer-section h3 {
      margin-bottom: 40px;
      white-space: nowrap;
      background-color: rgb(238, 238, 238);    
      color: black;
  }
  
  .footer-section p {
    margin-bottom: 5px;
    white-space: nowrap;
    color: black;
    background-color: rgb(238, 238, 238);    
  }
  .footer-section ul {
      list-style: none; /* Remove default list style (bullets) */
      padding: 0; /* Remove default padding */
  }
  
  .footer-section ul li {
      margin-bottom: 10px; /* Add space below each list item */
  }
  
  .footer-section ul li a {
      text-decoration: none;
      color: black;
      display: block;
      padding: 5px 0; /* Adjust padding as needed */
  }
  
  .footer-section a:hover {
      text-decoration: underline;
      background-color: rgb(238, 238, 238);    
    }
  


  /* Media query for smaller screens */
  @media (max-width: 768px) {
      .footer-content {
          flex-direction: column; /* Stack items vertically */
          align-items: flex-start; /* Align items to the start */
      }
  
      .footer-section {
          margin-right: 0; /* Remove margin to stack items */
          margin-bottom: 20px; /* Add space between items */
          width: 100%; /* Full width */
      }
  
      .footer-section h3 {
          margin-bottom: 10px; /* Adjust margin */
      }
  }
    
    .left-img {
      width: 100%;
      height: 100px;
      margin-top: 50px;
      margin-left: 50px;
      cursor: pointer;
    }
    
    
    
    /* Apply background color to all anchor elements */
    .footer-section a {
      text-decoration: none;
      background-color: rgb(238, 238, 238);    
      color: black;
      padding: 5px 0px; 
      max-width: 100%;
    }
    
    
    .footer-section a:hover {
      text-decoration: underline;
      background-color: rgb(238, 238, 238);    
    }
    
    #Copyright {
      background-color: rgb(238, 238, 238);    
      padding: 20px 0; /* Add padding for spacing */
      padding-left: 500px; /* Adjust left padding for larger screens */
      text-align: center; /* Center align text */
  }
  
  /* Media query for responsive alignment */
  @media (max-width: 768px) {
      .footer {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
  
      .footer .footer-content {
          padding-left: 0;
          padding-top: 20px; /* Adjust as needed */
        }
  
      .footer-section {
          margin-right: 0;
      }
  
      .footer-section h3 {
          margin-bottom: 20px; /* Adjust as needed */
      }
  
      #Copyright {
          text-align: left; /* Align left on smaller screens */
          padding: 20px; /* Add padding for spacing */
          padding-left: 20px; /* Adjust left padding for smaller screens */
      }
  
      .fab.fa-facebook.fa-2x {
          margin-left: auto; /* Align to the right on smaller screens */
          margin-right: auto; /* Align to the left on smaller screens */
          padding-left: 0; /* Remove left padding on smaller screens */
          display: block; /* Display as block element */
          margin-top: 10px; /* Adjust spacing between icon and text */
          text-align: center; /* Center align icon */
      }
  }
  
  @media (min-width: 769px) {
      /* Larger screens */
      .fab.fa-facebook.fa-2x {
          margin-left: 250px; /* Adjust spacing between icon and text */
          padding-left: 200px; /* Add padding to separate from the line */
      }
  }









