@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;
  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 slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 168, 232, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 168, 232, 0.4);
  }
}

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

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

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.1);
  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;
}

nav > div {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.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 {
  color: #00a8e8;
}

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

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

.nav-donate a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-donate:hover a {
  color: white;
}

.nav-donate a::after {
  display: none;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  z-index: 10000; /* higher than navbar */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Push it BELOW the fixed navbar */
.skip-link:focus {
  top: 90px; /* navbar height + a little space */
}


#About {
  width: 300%;
}
#Our {
  width: 200%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  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-size: 0.7rem;
}

.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: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 168, 232, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.dropdown-item:hover::before {
  left: 100%;
}

.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;
}

.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;
  position: relative;
}

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

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.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-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);
}

.donate-mobile {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white !important;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 1rem;
  border: none !important;
}

.donate-mobile:hover {
  background: linear-gradient(135deg, #006b8f 0%, #0093cc 100%);
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 168, 232, 0.4);
}

.mobile-donate-btn {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.mobile-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.mobile-contact-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  color: #4a5568;
}

.mobile-contact-info p {
  margin-bottom: 0.5rem;
}

header {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
 
  position: relative;
  overflow: hidden;
}

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;
}

header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

header > div:first-child {
  max-width: 600px;
  z-index: 2;
  animation: slideInLeft 1s ease;
}

header h1 {
  font-size: 3.5rem;
  color: #ffffff;
  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);
}

.voice {
  color: black;
}

header p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-2,
.btn-3 {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
}

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

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

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

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

.our-text {
  text-align: center;
  font-size: 3rem;
  color: #00a8e8;
  animation: fadeInDown 0.8s ease;
  font-weight: 900;
}

.our-line {
  width: 100px;
  height: 4px;
  background: white;
  margin: auto;
  margin-top: -30px;
  border-radius: 2px;
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, transparent, #00a8e8, transparent);
}

.statements {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 5%;
  background: white;
}

.state-1,
.state-2 {
  padding: 3rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  animation: fadeInUp 0.8s ease;
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: auto;
}

.state-1::before,
.state-2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 50%;
  transition: all 0.5s ease;
}

.state-1:hover::before,
.state-2:hover::before {
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
}

.state-1:hover,
.state-2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.state-1 h3,
.state-2 h3 {
  font-size: 1.8rem;
  color: #00a8e8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.state-1 p,
.state-2 p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4a5568;
  position: relative;
  z-index: 2;
}

.values {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.head-text {
  text-align: center;
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
  font-weight: 800;
}

.line {
  width: 100px;
  height: 4px;
  background: white;
  margin: 0 auto 4rem;
  border-radius: 2px;
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, transparent, white, transparent);
  background-size: 200% 100%;
}

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

.value-1,
.value-2,
.value-3,
.value-4,
.value-5 {
  padding: 2.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: scaleIn 0.6s ease;
  position: relative;
}

.value-1:nth-child(1) {
  animation-delay: 0.1s;
}
.value-2:nth-child(2) {
  animation-delay: 0.2s;
}
.value-3:nth-child(3) {
  animation-delay: 0.3s;
}
.value-4:nth-child(1) {
  animation-delay: 0.4s;
}
.value-5:nth-child(2) {
  animation-delay: 0.5s;
}

.value-1::before,
.value-2::before,
.value-3::before,
.value-4::before,
.value-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.value-1:hover::before,
.value-2:hover::before,
.value-3:hover::before,
.value-4:hover::before,
.value-5:hover::before {
  opacity: 1;
}

.value-1:hover,
.value-2:hover,
.value-3:hover,
.value-4:hover,
.value-5:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.value-1 h3,
.value-2 h3,
.value-3 h3,
.value-4 h3,
.value-5 h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.value-1 p,
.value-2 p,
.value-3 p,
.value-4 p,
.value-5 p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: black;
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.donate-card {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  max-width: 1000px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.8s ease;
  transition: all 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 100px rgba(102, 126, 234, 0.4);
}

.first-part {
  flex: 1;
  padding: 3rem;
  background: white;
  animation: slideInLeft 0.8s ease;
}

.first-part h5 {
  color: black;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.first-part h2 {
  font-size: 2rem;
  color: #00a8e8;
  margin-bottom: 1.5rem;
  font-weight: 900;
  animation: pulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.first-part p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.second-part {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  animation: slideInRight 0.8s ease;
}

.second-part h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 900;
   font-family: nulshock, sans-serif;
  animation: pulse 2s ease-in-out infinite;
}

.conversion-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-option {
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.currency-option.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.currency-option:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.currency-separator {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.conversion-rate small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.prices button {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.prices button.selected {
  background: white !important;
  color: #667eea !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5) !important;
  border: 3px solid white !important;
}

.custom-price {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 45px !important;
  font-family: lato,sans-serif;
}

.custom-price::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.custom-price:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.25);
}

.currency-symbol {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  pointer-events: none;
  font-size: 1.5rem;
  color: white;
  margin-top: -11px;
}

.donate-btn button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: white;
  color: #00a8e8;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: nulshock, sans-serif;
}

.donate-btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.donate-btn button:hover::before {
  width: 500px;
  height: 500px;
}

.donate-btn button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.second-part h6 {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 900;
}

.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-modal[aria-hidden="false"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
  background: #00a8e8;
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.3);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.modal-step {
  display: none;
  padding: 2.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-step.active {
  display: block;
}

.modal-title {
  text-align: center;
  color: #003459;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 15px;
}

.modal-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #007ea7, #00a8e8);
  border-radius: 2px;
}

.donation-summary {
  background: linear-gradient(
    135deg,
    rgba(0, 126, 167, 0.1) 0%,
    rgba(0, 168, 232, 0.1) 100%
  );
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 168, 232, 0.2);
  backdrop-filter: blur(10px);
  animation: pulseGlow 3s infinite;
  position: relative;
  overflow: hidden;
}

.donation-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007ea7, #00a8e8);
}

.donation-summary p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #2d3748;
}

#summary-amount {
  color: #007ea7;
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-note {
  color: #e53e3e;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(229, 62, 62, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 10px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.time-note::before {
  content: "⏰";
  animation: float 2s ease-in-out infinite;
}

.method-subtitle {
  text-align: center;
  color: #4a5568;
  margin: 2rem 0 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding: 0 20px;
}

.method-subtitle::before,
.method-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00a8e8);
}

.method-subtitle::before {
  left: 0;
}

.method-subtitle::after {
  right: 0;
  background: linear-gradient(90deg, #00a8e8, transparent);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.method-card {
  border: 2px solid rgba(0, 168, 232, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007ea7, #00a8e8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.method-card:hover {
  border-color: #00a8e8;
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 40px rgba(0, 168, 232, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card.selected {
  border-color: #00a8e8;
  background: linear-gradient(
    135deg,
    rgba(0, 126, 167, 0.1) 0%,
    rgba(0, 168, 232, 0.1) 100%
  );
  transform: translateY(-5px);
  box-shadow:
    0 15px 30px rgba(0, 168, 232, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.method-card.selected::before {
  transform: scaleX(1);
}

.method-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.method-card h3 {
  color: #003459;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.method-card p {
  color: #718096;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.method-tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: linear-gradient(135deg, #26a65b 0%, #2ecc71 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(38, 166, 91, 0.3);
}

.btn-continue {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 126, 167, 0.3);
  letter-spacing: 0.5px;
}

.btn-continue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-continue:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 126, 167, 0.4);
}

.btn-continue:hover:not(:disabled)::before {
  left: 100%;
}

.btn-continue:active:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 126, 167, 0.3);
}

.btn-continue:disabled {
  background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
  box-shadow: none !important;
}

.btn-continue::after {
  content: "→";
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-continue:hover:not(:disabled)::after {
  transform: translateX(5px);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  color: #4a5568;
  font-size: 0.9rem;
  padding: 12px 20px;
  background: rgba(0, 168, 232, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 168, 232, 0.1);
  backdrop-filter: blur(5px);
}

.security-badge::before {
  content: "🔒";
  font-size: 1.1rem;
  animation: float 2s ease-in-out infinite;
}

.bank-details-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 168, 232, 0.2);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.bank-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bank-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #007ea7, #00a8e8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bank-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.1);
  border-color: rgba(0, 168, 232, 0.3);
}

.bank-detail:hover::before {
  opacity: 1;
}

.detail-label {
  font-weight: 600;
  color: #003459;
  min-width: 140px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-label::before {
  content: "•";
  color: #00a8e8;
  font-size: 1.2rem;
}

.detail-value {
  flex: 1;
  color: #2d3748;
  font-weight: 600;
  font-family: "Courier New", monospace;
  word-break: break-all;
  padding: 0 1rem;
  font-size: 1rem;
}

.copy-btn {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 126, 167, 0.3);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 126, 167, 0.4);
}

.copy-btn:active {
  transform: translateY(0);
}

.instructions {
  background: linear-gradient(
    135deg,
    rgba(255, 249, 230, 0.9) 0%,
    rgba(254, 240, 210, 0.9) 100%
  );
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(246, 173, 85, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.instructions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f6ad55, #ed8936);
}

.verification-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 168, 232, 0.2);
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: #003459;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label::before {
  content: "📝";
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

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

.success-message {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation:
    float 3s ease-in-out infinite,
    pulseGlow 2s ease-in-out infinite;
}

.reference-box {
  background: linear-gradient(
    135deg,
    rgba(0, 126, 167, 0.1) 0%,
    rgba(0, 168, 232, 0.1) 100%
  );
  padding: 1.5rem;
  border-radius: 16px;
  margin: 1.5rem 0;
  border: 2px solid rgba(0, 168, 232, 0.3);
}

.reference-box h3 {
  color: #007ea7;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 10px 0;
  font-family: "Courier New", monospace;
  letter-spacing: 1px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 168, 232, 0.2);
  z-index: 1;
}

.progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(0, 168, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a0aec0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: #00a8e8;
  border-color: #00a8e8;
  color: white;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.2);
}

.progress-step.completed {
  background: #26a65b;
  border-color: #26a65b;
  color: white;
}

.progress-step.completed::after {
  content: "✓";
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: loading 1s ease-in-out infinite;
  margin-right: 10px;
}

#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.5rem;
  font-weight: 900;
}
.foot-yaga {
  display: flex;
  gap: 1rem;
}
.foot-logo {
  height: 40px;
  width: 40px;
  animation: pulse 2s ease-in-out infinite;
  margin-top: -5px;
}
.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.3rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.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 cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: white;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.social-icon.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

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

.section-title {
  font-size: 1.6rem;
  color: #00a8e8;
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00a8e8;
  border-radius: 2px;
}

.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;
  width: 100%;
}

.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;
}

.contact-note {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 5px;
}

.contact-address {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.6;
  font-size: 0.95rem;
}

.copyright {
  text-align: center;
}

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

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

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

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

  .hamburger {
    display: flex;
  }

  .yaga {
    font-size: 1.5rem;
    margin: 0;
  }

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

  header h1 {
    font-size: 2.5rem;
  }

  .btns {
    justify-content: center;
  }

  nav > div {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .card {
    flex-direction: column;
  }

  .footer {
    display: grid;
  }

  .yaga-1 {
    margin-bottom: 4rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-details h3 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.6rem;
  }

  .contact-item {
    padding: 12px;
  }

  .mobile-menu-container {
    top: 80px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: 400px;
  }

  .mobile-dropdown-section {
    display: block;
  }

  .modal-container {
    max-width: 95%;
    margin: 20px;
    border-radius: 20px;
  }

  .modal-step {
    padding: 1.5rem;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .bank-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .detail-label {
    min-width: auto;
    width: 100%;
  }

  .detail-value {
    padding: 0;
    width: 100%;
  }

  .copy-btn {
    align-self: stretch;
    justify-content: center;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  #summary-amount {
    font-size: 1.8rem;
  }
}
/* Mobile Specific Adjustements */
@media (min-width: 300px) and (max-width: 440px) {
  header h1 {
    font-size: 1.8rem;
  }
  .our-text {
    font-size: 1.7rem;
  }
  .state-1 h3,
  .state-2 h3 {
    font-size: 1.4rem;
  }
  .head-text {
    font-size: 1.7rem;
  }
  .first-3 h3,
  .last-2 h3 {
    font-size: 1.2rem;
  }
  .first-part h2 {
    font-size: 1.5rem;
  }
  .second-part h3 {
    font-size: 1.2rem;
  }
  .copyright h6 {
    font-size: 0.6rem;
  }

  .tagline {
    font-size: 0.6rem;
  }
}

/* Tablet-specific adjustments */
@media (width: 744px) {
  header {
    flex-direction: column;
    text-align: center;
    padding-top: 9rem;
  }
}

@media (min-width: 745px) and (max-width: 913px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .btns {
    display: flex;
    flex-direction: row;
  }

  .btn-2,
  .btn-3 {
    width: 100%;
  }

  .contact-details p {
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 700px) and (max-width: 912px) {
  nav {
    font-size: 0.8rem;
  }

  .logo-container {
    margin-top: 50px;
  }

  .value-3 {
    width: 670px;
  }
}

@media (min-width: 914px) and (max-width: 1032px) {
  .contact-details p {
    font-size: 0.8rem;
  }

  .value-3 {
    width: 900px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-overlay {
    display: none !important;
  }

  .hamburger {
    display: none;
  }

  .desktop-menu {
    display: flex;
  }

  .mobile-dropdown-section {
    display: none !important;
  }

  .dropdown-container {
    display: inline-block;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

.logo-container {
  font-size: 4rem;
  animation: scaleIn 1s ease 0.5s both;
}

.logo-container img {
  height: 500px;
  width: 500px;
  max-height: 500px;
  object-fit: contain;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .logo-container img {
    height: 300px;
    width: 300px;
    max-height: 300px;
    margin-top: 2rem;
  }
}

.currency-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.currency-option i {
  font-size: 1.2rem;
}

.custom-input-container {
  position: relative;
  width: 100%;
  margin: 15px 0;
}

#tick i {
  color: green;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#tick i:hover {
  transform: scale(1.2);
}

/* Glass morphism effect for dropdowns */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-dropdown-content {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.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: "...";
  }
}
