* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #5a8dde;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Hamburger */
#toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  transition: all 0.3s ease;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem;
  transition: 0.3s;
}

.menu li a:hover {
  color: #00c9ff;
}

/* Dropdown */
.menu li ul {
  /* margin: 10px 0; */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2c5364;
  display: none;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
}

.menu li:hover ul {
  display: block;
}

.menu li ul li a {
  padding: 0.6rem 1rem;
  display: block;
}

.menu li ul li a:hover {
  background-color: #1e3c52;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .menu li {
    width: 100%;
  }

  .menu li ul {
    position: static;
    box-shadow: none;
  }

  #toggle:checked + .hamburger + .menu {
    max-height: 1000px;
    margin-top: 2rem;
  }
}
/* navbarend  */

    .in-container {
      max-width: 800px;
      margin: 50px auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    h1 {
      text-align: center;
      color: #c0392b;
      margin-bottom: 20px;
    }

    p {
      text-align: center;
      color: #555;
    }

    .contact-info {
      margin-top: 30px;
      color: #333;
    }

    .contact-info p {
      margin: 10px 0;
    }

    form {
      margin-top: 30px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0 20px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    button {
      background-color: #c0392b;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    button:hover {
      background-color: #a93226;
    }

    .social-linksa a {
      margin-right: 15px;
      text-decoration: none;
      color: #2980b9;
      margin-left: 10px;
    }

    .social-linksa a:hover {
      text-decoration: underline;
    }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.footer {
  background: linear-gradient(to right, #5a8dde, #0046a7);
  color: #fff;
  padding: 40px 0 20px;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  margin: 20px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col.subscribe form {
  display: flex;
  background: white;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.footer-col.subscribe input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.footer-col.subscribe button {
  padding: 10px 15px;
  background: transparent;
  border: none;
  color: #0a6ed1;
  cursor: pointer;
  font-size: 18px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #fff;
}
