/* Reset some default styles for better consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.625;
    font-family: Nunito, sans-serif;
  }
  
  /* ... Previous CSS code ... */

  
  /* ... Rest of your CSS code ... */
  

/* Top Header styles */
.top-header {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 0;
  }
  
  .top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-section {
    margin-right: 20px;
  width: 200px; /* Adjust the width as needed */
  height: auto; /* Preserve the aspect ratio */
  }

 /* Flags styles */
.flags {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.flags img {
  width: 25px; /* Adjust the width as needed */
  margin-right: 5px;
}

/* Search and Contact Info Section styles */
.search-contact-section {
  display: flex;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.contact-info span {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Search bar styles */
.search-bar form {
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  padding: 5px;
  border-radius: 20px;
}

.search-bar input[type="text"] {
  padding: 5px;
  border: none;
  background-color: transparent;
  outline: none;
}

.search-bar button {
  padding: 5px 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}
  
  /* Bottom Header styles */
  .bottom-header {
    background-color: #0450a1;
    padding: 10px 0;
    text-align: center;
  }
  
  .bottom-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .bottom-header ul li {
    display: inline-block;
    margin: 0 15px;
  }
  
  /* Hover effect for menus */
.bottom-header ul li {
    position: relative;
  }
  
  .bottom-header ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
  }
  
  /* Add the line that appears on hover */
  .bottom-header ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  /* Apply the hover effect */
  .bottom-header ul li a:hover::after {
    transform: scaleX(1);
  }
  

  
  /* Set a bold professional font for the contact info and menus */
.contact-info,
.bottom-header ul li a {
  font-family: "Arial", sans-serif;
  font-weight: bold;
}

/* Reduce the height of the second header */
.bottom-header {
  height: 40px;
}

.menu-btn{
  display: none;
}


/* Hero section styles */
.hero {
  position: relative;
  overflow: hidden;
  text-align: left;
  height: 65vh;
}

/* Video styles */
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.gradient-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.555) 50%, rgba(0, 0, 0, 0.555));
}

/* Hero content styles */
.container-mainh {
  padding: 100px 0;
  color: #fff;
  position: relative;
}

.hero-content{
  margin-top: 90px;
  margin-bottom: -50px;
}


.hero-content h2 {
  font-size: 45px;
}

.hero-content p {
  font-size: 18px;
}

/* Hero button styles */
.hero-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transform: skewX(-20deg);
  transition: transform 0.3s ease;
}

.hero-button:hover {
  transform: skewX(-20deg) translateY(-5px); /* Move the button up a bit */
}

.hero-button::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  z-index: -1;
}

.hero-button:hover::before {
  width: 100%;
}

  
  /* Remove the background color from the body */
  body {
    background-color: transparent;
  }
  
  /* Long horizontal space with clickable buttons */
.button-section {
    background-color: #fad324;
    padding: 20px 0;
    height: 60px;
    margin-bottom: 30px;
  }
  
  .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    transform: skewX(-20deg); /* Skew the button to create a parallelogram shape */
  }
  
  /* Hover effect for buttons */
  .button:hover {
    background-color: #0056b3;
  }

  .container-mainh {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Define a container to center the content and set its width */
  .container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    /* justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto; */
  }
  
  /* Header styles */
  header {
    background-color: #333;
    color: #fff;
    padding: 10px;
  }
  
  /* Navigation styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    list-style: none;
  }
  
  nav ul li {
    display: inline-block;
    margin-left: 20px;
  }

  /* ... Previous CSS code ... */

/* About section styles */
.about-section {
    background-color: #f7f7f7;
    padding: 40px 0;
    text-align: center;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-content {
    text-align: left;
    max-width: 700px;
  }
  
  .about-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about-content p {
    margin-bottom: 20px;
  }
  
  .images-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
  
  .images-wrapper img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: -50px;
    margin-top: -20px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .images-wrapper img:first-child {
    z-index: 1;
  }
  

  /* Hover effect for images */
  .images-wrapper img.bounce-hover:hover {
    transform: scale(1.1);
  }
  
  /* ... Rest of your CSS code ... */
  
  
  /* ... Previous CSS code ... */

/* Horizontal blocks section */
.stats-section {
    background-color: #ffe600;
    padding: 50px 0;
    text-align: center;
  }
  
  .stats-block {
    display: inline-block;
    width: 300px;
    margin: 20px 10px; /* Adjusted the margin */
    padding: 30px 20px;
    background-color: #007bff;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center; /* Center align the content */
  }
  
  .stats-block h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px; /* Added margin for better spacing */
  }
  
  .stats-block p {
    font-size: 16px;
    margin-bottom: 10px; /* Added margin for better spacing */
  }
  
  .stats-block .count {
    font-size: 30px; /* Adjusted font size */
  }
  
  
  /* ... Rest of your CSS code ... */
  /* Previous CSS code */

/* Services section styles */
.services-section {
    padding: 80px 0;
    background-color: #f7f7f7;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .services-content {
    flex: 1;
    padding-right: 40px;
  }
  

  .services-content h2,
  .services-content h3 {
    color: #007bff;
    font-size: 30px;
  }
  
  .services-content p {
    margin-bottom: 20px;
  }
  
  .services-list {
    list-style: none;
    margin-left: 20px;
  }
  
  .services-list li {
    margin-bottom: 10px;
  }
  
  .services-image {
    flex: 1;
    text-align: center;
  }
  
  .services-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Rest of your CSS code */
  

  /* Choose Us Section styles */
  .choose-us-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
  }
  
  .choose-us-content h2 {
    font-size: 36px;
  }
  
  .choose-us-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 40px;
  }
  
  .card {
    height: 300px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .card h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0056b3;
    margin-top: 20px;
  }
  
  .card p {
    font-size: 16px;
    color: #666;
  }
  
  /* Tank storage section */
.tank-storage-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: -70px;
  margin-top: -70px;
  width: fit-content;
}

.container {
  display: flex;
  align-items: center;
}

.image-wrapper {
  flex: 2;
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: auto;
  height: 150vh;
  padding-left: -50px;
  
}

.floating-block {
  flex: 1;
  background-color: #ffffff;
  padding: 40px;
  color: #000000;
  position: relative;
  margin-left: -500px; /* Adjust this value to overlap the image */
  /* border-radius: 10px; */
}

.floating-block h2 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #012f5f;
}

.floating-block p {
  font-size: 20px;
  line-height: 2.0;
  color: #02172e;
}

  
/* Terminals section */
.terminals-section {
  padding: 80px 0;
  background-color: #fff;
}

.terminals-content {
  text-align: left;
  max-width: 600px;
  margin-bottom: 40px;
}

.terminals-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #012f5f;
}

.terminals-content p {
  font-size: 18px;
  color: #02172e;
  line-height: 1.7;
}

.terminals-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start; /* Align images at the top of the container */
  max-height: 450px; /* Set a fixed height for the container */
  overflow: hidden; /* Hide any overflowing images */
}

.terminal-image {
  width: calc(33.33% - 20px);
  position: relative;
  margin-bottom: 40px;
}

.terminal-image img {
  width: 100%;
  height: 100%; /* Make all images take the full height of the container */
  object-fit: cover; /* Ensure images retain their aspect ratio and cover the container */
  border-radius: 10px;
}

.terminal-image {
  position: relative;
  overflow: hidden;
}

.animated-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(-50%) skewX(-20deg);
  transition: transform 0.3s ease, bottom 0.3s ease;
  z-index: 1;
}

.terminal-image:hover .animated-button {
  transform: translateX(-50%) translateY(-5px) skewX(-20deg);
  bottom: 15px;
}

.terminal-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  z-index: -1;
}

.terminal-image:hover::before {
  width: 100%;
}


/* Newsletter section styles */
.newsletter-section {
  background-color: #0066ff;
  padding: 50px 0;
  text-align: center;
  height: 50px;
  
}

.newsletter-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
  margin-right: 50px;
  margin-bottom: 70px;
  margin-top: -30px;
}

.newsletter-section p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 70px;
  margin-top: -30px;
}

/* Newsletter form styles */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 70px;
  margin-top: -30px;
}

.newsletter-form input[type="email"] {
  padding: 15px;
  width: 70%;
  border: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
}

.newsletter-form button:hover {
  background-color: #05438a;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}




/* Footer styles */
footer {
  background-color: #043069;
  color: #ffffff;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-left: 30px;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-left: 30px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #d6ff42;
  text-decoration: none;
}

.footer-column a:hover {
  color: #007bff;
}

/* .footer-contact{
  margin-top: -100px;
}
 */

.footer-contact h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 16px;
}

.footer-bottom {
  background-color: #ffee00;
  text-align: center;
  padding: 10px 0;
  margin-bottom: -50px;
}

.footer-bottom p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* Social media icons styles */
.social-icons {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
}

.social-icons a:hover {
  color: #007bff;
}




/* Media query for smaller screens */
@media (max-width: 768px) {
/* Top Header styles */
.top-header {
  background-color: #ffffff;
  color: #000000;
  padding: 10px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
width: 200px; /* Adjust the width as needed */
margin-right: 100px;
}

/* Flags styles */
.flags {
display: flex;
align-items: center;
margin-right: 20px;
}

.flags img {
width: 25px; /* Adjust the width as needed */
margin-right: 5px;
}

/* Search and Contact Info Section styles */
.search-contact-section {
display: flex;
flex-direction: column;
align-items: center;
}

.contact-info {
display: flex;
flex-direction: column;
margin-right: 20px;
}

.contact-info span {
font-size: 14px;
margin-bottom: 5px;
}

/* Search bar styles */
.search-bar form {
display: flex;
align-items: center;
background-color: #f7f7f7;
padding: 5px;
border-radius: 20px;
}

.search-bar input[type="text"] {
padding: 5px;
border: none;
background-color: transparent;
outline: none;
}

.search-bar button {
padding: 5px 10px;
border: none;
background-color: #007bff;
color: #fff;
border-radius: 20px;
cursor: pointer;
}

/* Bottom Header styles */
.bottom-header {
  background-color: #0450a1;
  padding: 10px 0;
  text-align: center;
}

.bottom-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom-header ul li {
  display: inline-block;
  margin: 0 15px;
}

/* Hover effect for menus */
.bottom-header ul li {
  position: relative;
}

.bottom-header ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* .hero{
  margin-top: -40px;
} */


  .hero-content{
    margin-top: 45px;
    margin-bottom: -25px;
  }
  
  
  .hero-content h2 {
    font-size: 25px;
  }
  
  .hero-content p {
    font-size: 15px;
  }
  
  /* Long horizontal space with clickable buttons */
.button-section {
  background-color: #fad324;
  padding: 10px 0;
  height: 40px;
  margin-bottom: 30px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -12px;
}

.button {
  width: 90px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 10.5px;
  margin: 0 5px;
  transform: skewX(-20deg); /* Skew the button to create a parallelogram shape */
}


/* About section styles */
.about-section {
  background-color: #f7f7f7;
  padding: 40px 0;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  text-align: left;
  max-width: 700px;
  margin: 15px;
}

.about-content h3 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.images-wrapper {
  margin-left: 50px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.images-wrapper img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: -50px;
  margin-top: -20px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.images-wrapper img:first-child {
  z-index: 1;
}


/* Hover effect for images */
.images-wrapper img.bounce-hover:hover {
  transform: scale(1.1);
}

/* ... Rest of your CSS code ... */


/* ... Previous CSS code ... */

/* Horizontal blocks section */
.stats-section {
  background-color: #ffe600;
  padding: 50px 0;
  text-align: center;
}

.stats-block {
  display: inline-block;
  width: 300px;
  margin: 20px 10px; /* Adjusted the margin */
  padding: 30px 20px;
  background-color: #007bff;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center; /* Center align the content */
}

.stats-block h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px; /* Added margin for better spacing */
}

.stats-block p {
  font-size: 16px;
  margin-bottom: 10px; /* Added margin for better spacing */
}

.stats-block .count {
  font-size: 30px; /* Adjusted font size */
}


/* ... Rest of your CSS code ... */
/* Previous CSS code */

/* Services section styles */
.services-section {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-content {
  flex: 1;
  padding-right: 40px;
  margin-left: 40px;
}


.services-content h2,
.services-content h3 {
  color: #007bff;
  font-size: 20px;
  text-align: center;
}

.services-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.services-list {
  list-style: none;
  margin-left: 20px;
}

.services-list li {
  margin-bottom: 10px;
}

.services-image {
  flex: 1;
  text-align: center;
}

.services-image img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Rest of your CSS code */


/* Choose Us Section styles */
.choose-us-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
  margin-top: -50px;
}

.choose-us-content h2 {
  font-size: 20px;
}

.choose-us-content h3 {
  font-size: 16px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
}

.card {
  height: 300px;
  background-color: #ffd900;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  margin-left: 15.5px;
}

.card h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0056b3;
  margin-top: 20px;
}

.card p {
  font-size: 16px;
  color: #000000;
}


/* Tank storage section */
.tank-storage-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: -150px;
  margin-top: -90px;
  width: fit-content;
}

.container {
  display: flex;
  align-items: center;
}

.image-wrapper {
  flex: 2;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 300px;
  height: auto;
  padding-left: -50px;
  
}

.floating-block {
  flex: 1;
  background-color: #ffffff;
  padding: 40px;
  color: #000000;
  position: relative;
  margin-left: 0; /* Adjust this value to overlap the image */
  /* border-radius: 10px; */
}

.floating-block h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #012f5f;
  margin-top: -20px;
}

.floating-block p {
  font-size: 15px;
  line-height: 2.0;
  color: #02172e;
}

  
/* Terminals section */
.terminals-section {
  padding: 80px 0;
  background-color: #fff;
}

.terminals-content {
  text-align: left;
  max-width: 600px;
  margin-bottom: 40px;
}

.terminals-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #012f5f;
  text-align: center;
}

.terminals-content p {
  font-size: 16px;
  color: #02172e;
  line-height: 1.7;
  margin: 10px;
}

.terminals-images {
  margin-bottom: -50px;
  margin-left: 30px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  /* flex-direction: column; */
  max-height: 750px; /* Set a fixed height for the container */
  overflow: hidden; /* Hide any overflowing images */
}

.terminal-image {
  flex-wrap: wrap;
  width: 90%;
  position: relative;
  margin-bottom: 20px;
}

.terminal-image img {
  width: 100%;
  height: auto; /* Make all images take the full height of the container */
  object-fit: cover; /* Ensure images retain their aspect ratio and cover the container */
  border-radius: 10px;
}

.terminal-image {
  position: relative;
  overflow: hidden;
}

.animated-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transform: translateX(-50%) skewX(-20deg);
  transition: transform 0.3s ease, bottom 0.3s ease;
  z-index: 1;
}

.terminal-image:hover .animated-button {
  transform: translateX(-50%) translateY(-5px) skewX(-20deg);
  bottom: 15px;
}

.terminal-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  z-index: -1;
}

.terminal-image:hover::before {
  width: 100%;
}



/* Newsletter section styles */
.newsletter-section {
  border-radius: 70px;
  background-color: #0066ff;
  padding: 70px 0;
  text-align: center;
  height: 15px;
  margin-top: -35px;
  margin-bottom: 20px;
  margin: 8px;
}

.newsletter-section h2 {
  font-size: 16px;
  margin-bottom: 1px;
  color: #fff;
  margin-right: -5px;
  margin-bottom: 70px;
  margin-top: -50px;
}

.newsletter-section p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 70px;
  margin-top: -70px;
}

/* Newsletter form styles */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 70px;
  margin-top: -60px;
}

.newsletter-form input[type="email"] {
  padding: 15px;
  height: 30px;
  width: 50%;
  border: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  font-size: 13px;
}

.newsletter-form button {
  padding: 10px 25px;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
}

.newsletter-form button:hover {
  background-color: #05438a;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}




/* Footer styles */
footer {
  background-color: #043069;
  color: #ffffff;
  padding: 50px 0;
}

.footer-content {
  margin-right: 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer-column {
  margin-bottom: 20px;
  flex: 1;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fdcdd4;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-left: 30px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #007bff;
}

/* .footer-contact{
  margin-top: -100px;
}
 */

.footer-contact h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 16px;
}

.footer-bottom {
  background-color: #ffee00;
  text-align: center;
  padding: 10px 0;
  margin-bottom: -50px;
}

.footer-bottom p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* Social media icons styles */
.social-icons {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
}

.social-icons a:hover {
  color: #007bff;
}


/* Hide the menu on mobile */
.menu {
  display: none;
}

/* Styling for the hamburger menu icon */
/* .menu-btn {
  display: inline-block;
  cursor: pointer;
  background: rgb(255, 153, 0);
  border: none;
  padding: 10px;
  position: relative;
  z-index: 100;
  margin-bottom: 5px;
  
} */

/* Styling for the hamburger menu icon */
.menu-btn {
  margin-top: -48px;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  position: absolute;
  z-index: 100;
  top: 40%; /* Center the button vertically */
  left: 50%; /* Center the button horizontally */
  transform: translate(-50%, -50%); /* Center the button both horizontally and vertically */
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  background-color: #ffffff;
  height: 2px;
  width: 25px;
  transition: transform 0.5s ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(6px);
}

/* Rotate the menu icon to form a times sign when the menu is open */
.menu-btn.open .menu-icon {
  transform: rotate(55deg);
}

.menu-btn.open .menu-icon::before {
  transform: translateY(0) rotate(75deg);
}

.menu-btn.open .menu-icon::after {
  transform: translateY(0) rotate(75deg);
}

/* Hide the menu initially */
.menu-btn + .bottom-header .menu {
  display: block;
  position: absolute;
  top: 40px; /* Adjust this value to position the menu properly */
  right: 0;
  background-color: #0450a1;
  padding: 10px 0;
  width: 100%;
  margin-top: -50px;
  opacity: 0; /* Initially set opacity to 0 */
  transform: translateY(-10px); /* Move the menu slightly upwards */
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease; /* Apply 1-second transition to opacity and transform */
}

/* Show the menu when the menu button is clicked */
.menu-btn.open + .bottom-header .menu {
  opacity: 1; /* Change opacity to 1 when menu is open */
  transform: translateY(0); /* Reset the transform to move the menu back to its original position */
  visibility: visible;
}

/* Additional styling for the open menu items */
.menu-btn.open + .bottom-header .menu li {
  display: block;
  margin: 10px 0;
}

.menu-btn.open + .bottom-header .menu a {
  color: #fff;
}

}



/* Media query to show/hide the mobile menu button based on screen width */
@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  .bottom-header ul {
    display: none; /* Hide the desktop menu on mobile */
  }
}