* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  font-family: "Lato", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Update Section ---------- */
.update-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.update-block {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.line {
  height: 2px;
  background: #ccc;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.date-tag {
  position: absolute;
  top: -12px;
  right: 0;
  background: #fff;
  color: #555;
  font-size: 14px;
  padding: 4px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.update-heading {
  font-size: clamp(20px, 5vw, 26px);
  margin: 20px 0 30px;
  color: #111;
}

/* ---------- Swiper Styles ---------- */
.swiper {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  font-size: clamp(14px, 4vw, 17px);
  line-height: 1.6;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Header Styles ---------- */
.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header img {
  height: 75px;
  margin-left: 60px;
}

/* ---------- Hamburger Menu ---------- */
.menu-wrapper {
  position: relative;
}

.hamburger {
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger span {
  background-color: #000;
  width: 100%;
  height: 3px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(36deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-36deg);
}

/* ---------- Sliding Background ---------- */
.nav-background {
  position: fixed;
  top: 60px;
  right: 0;
  width: 0px;
  height: calc(100vh - 60px);
  background-color: #000;
  z-index: 5;
  transition: width 0.4s ease;
}

/* ---------- Navigation Links ---------- */
#nav-links {
  list-style: none;
  padding: 0;
  position: fixed;
  top: 80px;
  right: 20px;
  opacity: 0;
  z-index: 10;
  display: none;
  transition: all 0.3s ease;
}

#nav-links.open {
  display: block;
  opacity: 1;
}

#nav-links li {
  padding: 10px 15px;
}

#nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: x-large;
}

#nav-links a:hover {
  color: #6a6a6a;
}

/* ---------- Nav Animation ---------- */
#nav-links.open li {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Footer Styles ---------- */
footer {
  background: linear-gradient(to bottom, #dedede, #ffffff);
  padding: 80px 0;
  font-family: "Lato", sans-serif;
  width: 100vw;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav,
.footer-left,
.footer-newsletter,
.footer-social {
  flex: 1;
  text-align: left;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin: 10px 0;
}

.footer-nav ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  color: #333;
  font-size: 14px;
}

.footer-newsletter {
  margin-top: 50px;
}

.footer-newsletter h4 {
  font-weight: normal;
  color: gray;
  font-size: 14px;
}

.footer-newsletter h4 span {
  font-weight: bold;
  color: #555;
  font-size: 20px;
}

.footer-newsletter form {
  display: flex;
  margin-top: 15px;
}

.footer-newsletter input {
  padding: 10px;
  border: 0;
  border-radius: 10px 0 0 10px;
  width: 70%;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-social {
  text-align: right;
}

.footer-social a {
  margin-right: 10px;
  color: black;
  font-size: 18px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  margin: 0 15px;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .header {
    justify-content: flex-start;
    gap: 57%;
    padding: 10px 15px;
  }

  .header img {
    height: 40px;
    margin-left: 0px;
  }

  .hamburger {
    height: 20px;
    width: 26px;
    margin-top: 15%;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  #nav-links a {
    font-size: large;
  }

  #nav-links {
    margin-top: -10px;
    margin-right: -5px;
  }

  .swiper {
    height: 300px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

  .footer-left,
  .footer-nav,
  .footer-newsletter,
  .footer-social {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px;
  }

  .footer-bottom {
    margin-bottom: -20px;
  }
}

@media (max-width: 480px) {
  .update-heading {
    font-size: 20px;
  }

  .description {
    font-size: 15px;
  }

  .swiper {
    height: 250px;
  }

  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 2px;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px;
  }

  .footer-newsletter button {
    border-radius: 8px;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
}

@media (max-width: 480px) {
  .update-heading {
    font-size: 20px;
  }

  .description {
    font-size: 15px;
  }

  .swiper {
    height: 250px;
  }

  .header {
    gap: 40%;
    padding: 15px;
  }

  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 2px;
  }

  #nav-links a {
    font-size: medium;
  }

  footer {
    background: linear-gradient(to bottom, #dedede, #ffffff);
    padding: 40px 20px;
    text-align: center;
    font-family: "Lato", sans-serif;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .footer-nav ul li {
    margin: 8px 0;
  }

  .footer-nav ul li a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .footer-contact p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
  }

  .footer-newsletter {
    margin: 30px 0 20px;
  }

  .footer-newsletter h4 {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
  }

  .footer-newsletter h4 span {
    color: #333;
    font-size: 18px;
    font-weight: bold;
  }

  .footer-newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    outline: none;
  }

  .footer-newsletter button {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }

  .footer-social {
    margin: 20px 0;
  }

  .footer-social a {
    margin: 0 6px;
    color: black;
    font-size: 18px;
    text-decoration: none;
  }

  .footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 25px;
    font-size: 11px;
    color: #666;
  }

  .footer-bottom a {
    color: #666;
    margin: 0 5px;
    text-decoration: none;
  }

  .footer-bottom p {
    margin-bottom: 5px;
  }
}
}
