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

body {
  margin: 0;
  background: linear-gradient(135deg, #f5f7fa, #e8eef5, #dfe6ed);
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* Top Social Bar */
/* Entry Animation */
.top-social-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
  flex-direction: row-reverse;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Buttons */
.top-social-bar a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);

  transition: all 0.3s ease;

  /* subtle floating animation */
  animation: floatIconSoft 3s ease-in-out infinite;
}

/* Stagger effect (not all move same time) */
.top-social-bar a:nth-child(1) {
  animation-delay: 0s;
}
.top-social-bar a:nth-child(2) {
  animation-delay: 0.4s;
}
.top-social-bar a:nth-child(3) {
  animation-delay: 0.8s;
}

/* Floating animation */
@keyframes floatIconSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Hover (stronger interaction) */
.top-social-bar a:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
}

/* End Here */

/* Animated Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  filter: blur(60px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: float1 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -50px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.3),
    rgba(244, 114, 182, 0.2)
  );
  animation: float2 18s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: 30%;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.3),
    rgba(45, 212, 191, 0.2)
  );
  animation: float3 20s ease-in-out infinite;
}

.shape-4 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 10%;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.2),
    rgba(251, 191, 36, 0.15)
  );
  animation: float4 12s ease-in-out infinite;
}

.shape-5 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: 20%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(168, 85, 247, 0.15)
  );
  animation: float5 16s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, 100px) scale(1.1);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-80px, -60px) scale(0.9);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -80px) scale(1.05);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 60px) scale(1.15);
  }
}

@keyframes float5 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-60px, 40px) scale(0.95);
  }
}

/* Floating Education Icons */
.floating-icons {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}
.icon-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}
.icon-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}
.icon-5 {
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}
.icon-6 {
  bottom: 30%;
  left: 15%;
  animation-delay: 5s;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

/* Main Container */
.coming-container {
  text-align: center;
  z-index: 10;
  padding: 40px;
  position: relative;
}

/* Logo Section */
.logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #6366f1,
    #8b5cf6,
    #ec4899,
    #f472b6,
    #22d3ee,
    #6366f1
  );
  animation: spin 4s linear infinite;
  filter: blur(25px);
  opacity: 0.5;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.logo {
  width: 180px;
  position: relative;
  z-index: 2;
  transform: translateY(-200px);
  animation:
    drop 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards,
    pulse 3s ease-in-out infinite 1.2s;
  filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

@keyframes drop {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

/* Badge */
.tagline {
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 30px;
  color: #5b5fc7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}

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

/* Typing Text */
.typing-text {
  margin: 20px 0 30px;
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
  text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.cursor {
  animation: blink 1s infinite;
  color: #6366f1;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Progress Bar */
.progress-section {
  margin: 30px auto;
  max-width: 400px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.2s;
}

.progress-label {
  color: #5b5fc7;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 10px;
  animation: progressPulse 2s ease-in-out infinite;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: progressShine 2s linear infinite;
}

@keyframes progressPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes progressShine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.4s;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.count-num {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.count-label {
  font-size: 12px;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* Notify Section */
.notify-section {
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.6s;
}

.notify-text {
  color: #c7d2fe;
  font-size: 16px;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.email-input {
  padding: 15px 25px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  width: 280px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.notify-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

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

.notify-btn svg {
  transition: transform 0.3s ease;
}

.notify-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 600px) {
  .typing-text {
    font-size: 20px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    padding: 15px 18px;
  }

  .count-num {
    font-size: 24px;
  }

  .email-form {
    flex-direction: column;
    align-items: center;
  }

  .email-input {
    width: 100%;
    max-width: 280px;
  }

  .icon {
    font-size: 1.5rem;
    opacity: 0.4;
  }
}
