/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Optional background image overlay */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

/* Glassmorphic Landing Box */
.landing {
  position: relative;
  width: 90%;
  max-width: 1000px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: fadeIn 1s ease forwards;
  transform: translateY(-20px);
  transition: transform 0.5s ease;
}

.landing:hover {
  transform: translateY(-10px);
}

/* Logo */
.logo {
  width: 200px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-5deg) scale(1.05);
}

/* Landing Content */
.landing-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffea00, #ff6f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-content h1 span {
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.landing-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(45deg, #ffea00, #ff6f61);
  color: #000;
  border: none;
}

.btn.primary::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.btn.primary:hover::after {
  top: -30%;
  left: -30%;
}

.btn.primary:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255,234,0,0.5);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}



/* Contact Links */
.contact {
  font-size: 0.95rem;
  margin-top: 25px;
}

.contact a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #ffea00;
  text-decoration: underline;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  position: relative;
  animation: slideUp 0.5s ease forwards;
}

.popup-content h2 {
  text-align: center;
  color: #2575fc;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #2575fc;
}

/* Form Inputs */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: #2575fc;
  box-shadow: 0 0 10px rgba(37,117,252,0.3);
}

/* Button in form */
button {
  width: 100%;
  padding: 14px;
  background: #2575fc;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #5784d6;
  transform: scale(1.03);
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .landing {
    padding: 30px;
  }
  .landing-content h1 {
    font-size: 2rem;
  }
  .landing-content p {
    font-size: 0.95rem;
  }
  .logo {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  .landing-content h1 {
    font-size: 1.7rem;
  }
  .landing-content p {
    font-size: 0.85rem;
  }
}