* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.mobile-nav{
  display: none;
}
header {

  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.header-container {
  width: 98.9vw;
}


.logo-nav img {
  position: absolute;
  height: 49px;
  width: 214px;
  top: 30px;
  left: 50px;



}

.header-text {
  position: absolute;
  bottom: 290px;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(255, 255, 255);
  font-size: 36px;
  text-align: center;

  justify-content: center;
  width: 1640px;
  gap: 5px;
  filter: drop-shadow(9px 5px 5px #28282B);

}


nav ul {
  position: absolute;
  display: flex;
  gap: 70px;

  height: 19px;
  top: 21px;
  right: 21px;
  font-size: 1.4vw;
}

nav ul div a {
  color:
    rgb(100%, 100%, 100%);
  text-decoration: none;
  filter: drop-shadow(12px 7px 6px black);
}

.small-button {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 12px;
  border: none;
  background-color: red;
  color: white;
  cursor: pointer;
}

.tops {
  text-align: center;
  margin-top: 20px;
}

.tops h1 {
  font-size: 2em;
  color: #1a5dab;
  /* Blue color for title */
}

.underline {
  width: 80px;
  height: 3px;
  background-color: #e94e1b;
  /* Red underline */
  margin: 8px auto 20px;
}

/* Main Content Container */
.content-container {
  display: flex;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin-top: 4%;
  margin-left: 16%;
  font-size: 1.2vw;
}

/* Details Section */
.details-section {
  flex: 1;
  color: #1a5dab;
  margin-top: 34px;
  /* Blue color for heading */
}

.details-section h2 {
  font-size: 1.5em;
  margin-bottom: 45px;
}

.details-section ul {
  list-style: none;
  padding-left: 0;
}

.details-section li {
  font-size: 1em;
  margin-bottom: 10px;
  color: #333;
  /* Default color for list text */
  padding-bottom: 8px;
  /* Space between text and line */
  border-bottom: 1px solid #ccc;
  /* Light gray line under each item */
}

.details-section strong {
  color: #1a5dab;
  /* Blue for strong text */
}

/* Image Section */
.image-section {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 8px;
}

.image-section img {
  width: 866px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
  margin-top: 48px;
  height: 50vh;
  background-color: #0151A6;
  color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  color: #01a627;
}

.footer-info {
  margin-bottom: 10px;
  align-items: center;
  font-size: 1.5vw;

}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  font-size: 1.3vw;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 71px;
}

.footer-nav li {
  margin-right: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #fcf7f7;
}

.social-media {
  gap: 32px;
  margin: 10px 0;
  display: flex;
}


.social-media img {
  margin-right: 10px;
  color: #fff;
}

.social-media img {
  font-size: 24px;
  height: 29px;
  width: 29px;
  border-radius: 4px;
  justify-content: center;
}

.footer-logo img {
  width: 345px;
  height: 79px;

}

@media (max-width: 435px) {
  .logo-nav img {
    height: 32px;
    width: 135px;
  }

  nav ul {
    display: none;
    /* visibility: hidden; */
  }

  .header-text {
    position: absolute;
    bottom: 972px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-align: center;

    justify-content: center;

    gap: 5px;
    filter: drop-shadow(9px 5px 5px #28282B);

  }

  .header-container {
    width: 100%;
    /* height: 10vh; */
  }

  .content-container {
    flex-direction: column;
    margin-left: 10%;
    font-size: 3.2vw;
  }




  .image-section img {
    width: 240px;
  }














  footer {
    height: 27vh;
    width: 100%;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    color: #01a627;

  }

  .footer-info {
    /* margin-bottom: 10px;
    align-items: center; */
    font-size: 5.5vw;

  }

  .footer-nav {
    display: none;
  }

  .footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 71px;
  }




  .social-media {
    gap: 33px;
    /* margin: 10px 0;
      display: flex; */
  }





  .footer-logo img {
    width: 169px;
    height: 35px;

  }


  .hamburger-menu {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
  }

  .bar {
    width: 25px;
    height: 3px;
    background-color: #002855;
    margin: 5px 0;
    transition: 0.4s;
  }

  /* Hamburger Animation */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Mobile Navigation */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 40, 85, 0.95);
    z-index: 999;
  }

  .mobile-nav.active {
    display: block;
  }

  .mobile-nav ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-nav ul li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s forwards;
  }

  .mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }

  .mobile-nav .small-button {
    background: red;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
  }

  /* Animation for menu items */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Add animation delay for each menu item */
  .mobile-nav.active ul li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-nav.active ul li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .mobile-nav.active ul li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .mobile-nav.active ul li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .mobile-nav.active ul li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .mobile-nav.active ul li:nth-child(6) {
    animation-delay: 0.6s;
  }

  .mobile-nav.active ul li:nth-child(7) {
    animation-delay: 0.7s;
  }

  .mobile-nav.active ul li:nth-child(8) {
    animation-delay: 0.8s;
  }
}

@media (max-width: 320px) {
  .logo-nav img {
    left: 18px;
}
}