



:root {
    --swiper-navigation-size: 44px;
}

:root {
    --primary-color: #2887ff;
    --primary-color-dark: #2476da;
    --text-dark: #0a0a0a;
    --text-light: #737373;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
}




body {
    font-family: "DM Sans", sans-serif;
}






/* Base Styles */
nav {
  background-color: #e8eff0;
  color: rgb(167, 88, 88);
  padding: 1rem 2rem;
  position: relative;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
}

/* Menu links */
.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav__links li a {
  color: rgb(17, 17, 17);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav__links li a:hover {
  color: #B8E3E9;
}

/* Hamburger icon */
.nav__menu__btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: rgb(7, 6, 6);
}

/* CTA button */
.nav__btns .btn {
  background-color: #4F7C82;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s smooth;
}

.nav__btns .btn:hover {
  background-color: #93B1B5;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav__menu__btn {
    display: block;
  }

  .nav__btns {
    display: none;
  }

  .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    background-color: #B8E3E9;
    backdrop-filter: blur(8px);
    text-align: center;
    padding: 2rem 0;
    transition: top 0.4s ease-in-out;
  }

  .nav__links.active {
    top: 100%;
  }

  .nav__links li {
    margin: 1rem 0;
  }
}



body {
  font-family: Arial, sans-serif;
  margin: 50px;
  color: #292222;
  background: #d6f5f5;
}

h1 {
  margin-bottom: 20px;
  transform: translateY(-20px);
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-20px);opacity: 0 }
  to { transform: translateY(0px);opacity: 1 }
}

form {
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 10px;
  background: #f5f5f5;

  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from { transform: translateY(20px);opacity: 0 }
  to { transform: translateY(0px);opacity: 1 }
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px #fff;
  outline: none;
}

form button {
  padding: 10px 20px;
  background: #4F7C82;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  margin-right: 10px;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.3s ease;
}

form button:hover {
  transform: translateY(-5px);
  background: #3E6166;
}

.form-buttons {
  text-align: center;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000cc;
  color: #fff;
  font-size: 1.5em;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: none;
}

.popup.active {
  display: flex;
}
.popup-content {
  padding: 20px;
  background: #4F7C82;
  border-radius: 10px;
  text-align: center;
  transform: scale(0);
  animation: grow 0.5s ease forwards;
}

@keyframes grow {
  from { transform: scale(0) }
  to { transform: scale(1) }
}

.popup-content p {
  margin-bottom: 20px;
}

.popup-content button {
  padding: 10px 20px;
  background: #fff;
  color: #4F7C82;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
.popup-content button:hover {
  background: #f5f5f5;
}

.footer {
  background: #0B2E33;
  color: #fff;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #93B1B5;
  filter: blur(100px);
  transform: translateZ(0);
  z-index: 0;
  animation: pulse 10s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: blur(100px);
   opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    filter: blur(150px);
   opacity: 0.7;
  }
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-content h2,
.footer-content h3 {
  color: #B8E3E9;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-list,
.social-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: none;
}

.contact-list li,
.social-list li {
  margin-bottom: 10px;
  transform: translateY(20px);
 opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.contact-list li:nth-child(1),
.social-list li:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-list li:nth-child(2),
.social-list li:nth-child(2) {
  animation-delay: 0.5s;
}

.contact-list li:nth-child(3),
.social-list li:nth-child(3) {
  animation-delay: 0.7s;
}

.contact-list li:nth-child(4),
.social-list li:nth-child(4) {
  animation-delay: 0.9s;
}

.contact-list li:nth-child(5),
.social-list li:nth-child(5) {
  animation-delay: 1.1s;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
   opacity: 1;
  }
}

.contact-list a,
.social-list a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  transition: color 0.4s ease, border-bottom-color 0.4s ease, transform 0.4s ease;
}

.contact-list a:hover,
.social-list a:hover {
  color: #B8E3E9;
  border-bottom-color: #B8E3E9;
  transform: translateY(-5px);
}

.contact-list a .fa,
.social-list a .fa {
  margin-right: 10px;
  color: #B8E3E9;

  font-size: 1.2rem;
  transition: color 0.4s ease, transform 0.4s ease;
}

.contact-list a:hover .fa,
.social-list a:hover .fa {
  color: #fff;
  transform: scale(1.5);
}

.footer p {
  color: #B8E3E9;
}

.footer__bar {
  padding: 20px;
  background: #93B1B5;
  color: #fff;
  text-align: center;
  position: relative;
}

.footer__bar a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  transition: color 0.4s ease, border-bottom-color 0.4s ease;
}

.footer__bar a:hover {
  color: #0B2E33;
  border-bottom-color: #0B2E33;
}
.contact-list a {
  border-bottom: none;
  text-decoration: none;
}
.contact-list {
  border-bottom: none;
}

.social-list a {
  border-bottom: none;
  text-decoration: none;
}

.social-list {
  border-bottom: none;
}


/* Responsive */
@media (max-width: 767px) {
  .footer-content {
    text-align: center;
  }
}
