@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif !important;
  font-weight: 900 !important;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: fadeInDown 0.8s ease;
}

.nav-logo {
  height: 70px;
  width: 70px;
  animation: pulse 2s ease-in-out infinite;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #2d3748;
  text-decoration: none;
  font-weight: 900;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #00a8e8;
}

.nav-donate {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  font-family: "nulshock", sans-serif;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 126, 167, 0.4);
}

.nav-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 126, 167, 0.6);
}

.nav-donate a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 3%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  padding: 0.5rem 0;
}

.dropdown-menu a {
  font-weight: 900;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 900;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.dropdown-item:hover {
  background: rgba(0, 168, 232, 0.08);
  color: #007ea7;
  border-left-color: #00a8e8;
  padding-left: 25px;
}

.dropdown-trigger::after {
  content: "▾";
  margin-left: 5px;
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-trigger::after {
  transform: rotate(180deg);
  color: #00a8e8;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 102, 102, 0.3);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-container {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 90%;
  background: rgba(208, 224, 234, 0.9);
  backdrop-filter: blur(90px);
  border: 1px solid rgba(70, 15, 208, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mobile-nav-link {
  color: #2d3748;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #00a8e8;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(5px);
}

.mobile-dropdown-section {
  margin-bottom: 0.5rem;
  width: 100%;
}

.mobile-dropdown-section button {
  font-family: Lato, sans-serif;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #2d3748;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mobile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #00a8e8;
}

.mobile-dropdown-toggle .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-section.active .mobile-dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: #00a8e8;
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 1rem;
}
.mobile-dropdown-content a{
  font-weight: 900;
}

.mobile-dropdown-section.active .mobile-dropdown-content {
  max-height: 300px;
}

.mobile-dropdown-content .mobile-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  border-left: 2px solid rgba(0, 168, 232, 0.3);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-dropdown-content .mobile-nav-link:hover {
  background: rgba(0, 168, 232, 0.1);
  color: #007ea7;
  border-left-color: #00a8e8;
  transform: translateX(5px);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.page-header {
  margin-top: 90px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.page-header-content {
  max-width: 600px;
  z-index: 2;
  animation: slideInLeft 1s ease;
  color: white;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.header-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: #00a8e8;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.header-image {
  animation: float 4s ease-in-out infinite;
}

.header-image img {
  height: 400px;
  width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.section-nav {
  background: white;
  padding: 1rem 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 90px;
  z-index: 100;
}

.section-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.section-nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-nav-link:hover {
  color: #00a8e8;
  background: rgba(0, 168, 232, 0.1);
}

.section-nav-link.active {
  color: white;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.main-section {
  padding: 6rem 5%;
  background: white;
}

.main-section:nth-child(even) {
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #00a8e8;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.volunteer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.volunteer-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
}

.volunteer-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.volunteer-image:hover img {
  transform: scale(1.05);
}

.volunteer-info h2 {
  color: #00a8e8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
}


.volunteer-info p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00a8e8;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 168, 232, 0.1);
}

.benefit-card i {
  font-size: 2rem;
  color: #00a8e8;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.volunteer-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease;
}

.form-title {
  color: #00a8e8;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "lato", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00a8e8;
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  display: block;
  margin: 2rem auto 0;
  box-shadow: 0 4px 15px rgba(0, 126, 167, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 126, 167, 0.6);
}

.partner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.partnership-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
}

.partner-image {
  width: 100%;
  height: 250px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-image img {
  transform: scale(1.1);
}

.partner-details {
  padding: 2rem;
}

.partner-details h3 {
  color: #00a8e8;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.partner-details p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.partner-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.partner-benefits li {
  color: #4a5568;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-benefits li:before {
  content: "✓";
  color: #00a8e8;
  font-weight: bold;
}

.partner-btn {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  font-family: "nulshock", sans-serif;
}

.partner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 126, 167, 0.6);
}

.current-partners {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.partner-logo {
  width: 150px;
  height: 100px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 168, 232, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.brand-section .footer-logo {
  font-size: 1.8rem;
  color: #00a8e8;
  margin-bottom: 1.2rem;
  font-weight: 900;
}

.foot-yaga {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.foot-logo {
  height: 40px;
  width: 40px;
  animation: pulse 2s ease-in-out infinite;
  margin-top: -20px;
}

.mission-text {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.social-section {
  margin-top: 2rem;
}

.social-title {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-icon.facebook {
  background: #1877f2;
}
.social-icon.instagram {
  background: #e4405f;
}
.social-icon.twitter {
  background: #1da1f2;
}
.social-icon.whatsapp {
  background: #25d366;
}
.social-icon.youtube {
  background: #ff0000;
}
.social-icon.linkedin {
  background: #0077b5;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-section h2 {
  font-size: 1.5rem;
  color: #00a8e8;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 168, 232, 0.1);
  border-color: rgba(0, 168, 232, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.line-2 {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 2rem 0;
}

.copyright {
  text-align: center;
}

.copyright h6 {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.tagline {
  color: #00a8e8;
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-header {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .header-buttons {
    justify-content: center;
  }

  .header-image img {
    height: 300px;
    width: 300px;
    margin-top: 2rem;
  }

  .volunteer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-nav-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-nav-link {
    justify-content: center;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .partnership-types {
    grid-template-columns: 1fr;
  }

  .volunteer-form {
    padding: 2rem;
  }

  .partner-logos {
    gap: 1.5rem;
  }

  .partner-logo {
    width: 120px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .header-btn {
    width: 100%;
    text-align: center;
  }

  .header-buttons {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-screen.active {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.loading-logo {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.loading-logo img {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  margin: 0 auto 1.5rem;
  animation: loading 1s ease-in-out infinite;
}

.loading-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loading screen specific animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading dots animation */
.loading-text::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%,
  100% {
    content: "...";
  }
}
