.noscript-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.noscript-checkbox {
  display: none;
}

.noscript-checkbox:checked ~ .noscript-warning {
  display: none;
}

.noscript-warning {
  background-color: red;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}

.noscript-close-btn {
  display: inline-block;
  margin-left: 1rem;
  cursor: pointer;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-image: linear-gradient(160deg, #2F4F4F 0%, #003882 100%);
}



header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  backdrop-filter: blur(10px);
  border-radius: 40px;
  z-index: 300;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #0080ff3d;
  backdrop-filter: blur(10px);
  border-radius: 40px;
}

.logo-wrapper {
  position: relative; 
  height: 250%; 
}

.logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-height: 250px; 
  max-width: 250px; 
}


.nav-links {
  display: flex;
  justify-content: space-around;
  width: 40%;
  list-style-type: none;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

@media screen and (min-width: 769px) {
  .nav-links {
    transform: translateY(0);
  }
}

.nav-links li {
  position: relative;
  padding-bottom: 5px;
}

.nav-links li:hover {
  color: white;
}

.nav-links li:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: rgba(220, 216, 216, 0);
}



.nav-links li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 18px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 5px; 
  overflow: hidden;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-links li a:hover {
  color: #333; 
}

.nav-links li a:hover::before {
  width: 100%; 
}


.burger {
  display: none;
  cursor: pointer;
  z-index: 200;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

.burger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open div:nth-child(2) {
  opacity: 0;
}

.burger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav-active {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 128, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    transform: translateY(0);
  }
}

.slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 900px; 
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
}

.slideshow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.slide-title {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 15px;
  font-size: 70px;
  font-weight: bold;
}

.slide-description {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 5px;
  font-size: 25px;
}






.two-columns {
  width: 100%;
  padding: 50px 0;
  background-image: linear-gradient(160deg, #2F4F4F 0%, #003882 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.column-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; 
}

.column-text {
  flex-basis: 30%; 
  width: calc(50% - 20px);
}

.column-photo {
  flex-basis: 30%; 
  width: 40px;
  display: flex;
  justify-content: center;
}

.column-photo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}





.scroll-down {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  
}

.scroll-down .scroll-down-img {
  width: 50px; 
  height: auto; 
  animation: levitate 4s infinite ease-in-out;
}
@keyframes levitate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}



.p1 {
  font-size: 50px; 
}

.centered-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.centered-text {
  max-width: 600px; 
  text-align: center;
  margin-bottom: 20px;
}



.blurred-box {
  background-color: rgba(255, 255, 255, 0.562); 
  backdrop-filter: blur(10px); 
  padding: 20px;
  border-radius: 10px; 
}






.round-button {
  display: inline-block;
  border: none;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  display: none;
  justify-content: center;
  align-items: center;
}

.modal {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.modal h2 {
  margin-bottom: 10px;
}

#closeButton {
  margin-top: 20px;
}

.no-underline {
  text-decoration: none; 
}

.round-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}

.round-button:hover::before {
  width: 200px;
  height: 200px;
  opacity: 1;
  transition: all 0.3s ease;
}



.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(51, 51, 51, 0.5); 
  padding: 1rem 0;
  backdrop-filter: blur(10px); 
}

.footer-text {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}









.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0080ff3d; 
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 10px; 
  z-index: 1;
}


.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.5s; 
}


@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}