/* General Styling */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Lexend', sans-serif;
  overflow: hidden;
  color: #fff;
}

/* Background Video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Main Container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
  background-color: none;
}

/* Heading */
.container h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
padding-left: 6px;
}


.logo-container {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.logo-container img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
  transition: transform 0.3s ease;
 
}

.logo-container img:hover {
  transform: scale(1.05);
}


/* Countdown Timer */
.countdown {
  display: flex;
  gap: 20px;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;

}


.countdown div {
  background: rgba(255, 255, 255, 0.1); /* glass effect */
  padding: 10px 15px;
  border-radius: 12px;

box-shadow:
  0 4px 12px rgba(0, 0, 0, 0.5),         /* ✅ Black shadow */
 
  inset 0 0 10px rgba(255, 255, 255, 0.2);  /* Inner glow */


  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.countdown div:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
}


/* SOCIAL ICONS BOTTOM LEFT */
.socials {
  position: absolute;
  bottom: 25px;
  left: 30px;
  color: #fff;
  font-size: 14px;
margin-bottom : 18px;
}

.socials p {
  margin-bottom: 6px;
  font-weight: 500;
}

.socials .icons {
  display: flex;
  gap: 14px;
}

.socials .icons a {
  font-size: 22px;
  color: #ffffffcc;
  transition: all 0.3s ease;
}

.socials .icons a:hover {
  transform: scale(1.3);
  color: #00d9ff;
  text-shadow: 0 0 6px rgba(0, 217, 255, 0.8);
}


/* LAUNCH BUTTON (TOP RIGHT) */
/* TOP BUTTONS WRAPPER (LAUNCH + NOTIFY) */
/* Wrap Launch + Notify Buttons */

.top-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: flex-end;  /* Align both buttons to the same right edge */
  gap: 12px;              /* Spacing between buttons */
}


/* Base Styles Shared */
.top-buttons a {
  position: relative;
  display: inline-block;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.top-buttons a:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 25px rgba(0, 255, 255, 0.5),
    inset 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Shine Effect */
.top-buttons a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: shine 2s infinite;
animation: shine 4s ease-in-out infinite;

  pointer-events: none;
  z-index: 1;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(100%) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) rotate(25deg);
    opacity: 0; /* Fades out after shine */
  }
}


/* Ensure text stays above shine */
.top-buttons a i {
  margin-right: 8px;
  position: relative;
  z-index: 2;
}
.top-buttons a span {
  position: relative;
  z-index: 2;
}



/*       About US (BOTTOM RIGHT)                  */
.about-btn {
  position: absolute;
  bottom: 75px;
  right: 30px;
}

.about-btn a {
   display: inline-block;
  background-color:none; 
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 26px;
  border-radius: 18px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
margin-bottom : 18px;
}

.about-btn a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #00e1ff;
  transform: scale(1.05);
  border-color: #00e1ff;
}


/*       CONTACT US (BOTTOM RIGHT)                  */
.contact-btn {
  position: absolute;
  bottom: 25px;
  right: 30px;
}

.contact-btn a {
  display: inline-block;
  background-color:none; 
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
margin-bottom : 18px;
}

.contact-btn a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #00e1ff;
  transform: scale(1.05);
  border-color: #00e1ff;
}



/* Modal Container */
.notify-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
position: relative; /* make it a positioned parent */	
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Input Field */
.modal-input {
  width: 100%;
  padding: 12px 5px;
  margin: 20px 0;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Submit Button */

.modal-submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, #00eaff, #0078ff);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 200, 255, 0.4);
}

.modal-submit:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00c8ff, #005ce6);
  box-shadow: 0 6px 20px rgba(0, 200, 255, 0.6);
}



/* Close Button */


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: none;
}

.thank-you-text {
  color: #00ffcc;
  font-weight: 500;
  font-size: 14px;
  text-shadow: 0 0 6px rgba(0, 255, 204, 0.5);
}


/* Footer */
.footer {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 1px;
}


/* existing styles remain untouched above */

/* ----------------- RESPONSIVE DESIGN FOR MOBILE ----------------- */
@media (max-width: 768px) {

  .container {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .container h1 {
    
    margin-bottom: 20px;
    padding: 0 10px;

  }

  .countdown {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: -90px;
 font-weight: lighter;
  }

  .top-buttons {
    top: 25px;
    right: 10px;
    gap: 10px;
    align-items: flex-end;
  }

  .top-buttons a {
    padding: 10px 16px;
    font-size: 13px;
  }

  
 .about-btn {
    right: 15px;
    bottom: 60px;
  }

  .about-btn a {
    font-size: 13px;
    padding: 8px 14px;
 border-radius: 15px;
  }

.contact-btn {
    right: 15px;
    bottom: 20px;
  }

  .contact-btn a {
    font-size: 13px;
    padding: 8px 14px;
 border-radius: 15px;
  }

  .socials {
    left: 15px;
    bottom: 20px;
    font-size: 12px;
  }

  .socials .icons a {
    font-size: 18px;
  }

  .logo-container {
    top: 20px;
    left: 10px;
  }

  .logo-container img {
    height: 60px;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }

  .modal-input {
    font-size: 14px;
  }

  .modal-submit {
    font-size: 14px;
    padding: 10px 22px;
  }

  .thank-you-text {
    font-size: 13px;
  }
}

/* Launch Heading Special Effect - Animated Gradient Stroke */
.container h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;

  /* White text fill */
  color: white;

  /* Gradient stroke effect with multiple blue tones */
  -webkit-text-stroke: 4px transparent;
  background: linear-gradient(
    90deg, 
    #00c6ff,  /* Light sky blue */
    #009dff,  /* Bright azure */
    #0072ff,  /* Strong blue */
    #0059d4,  /* Deep ocean blue */
    #009dff, 
    #00c6ff
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  animation: wave 3s infinite linear;
}

/* Animation for gradient motion */
@keyframes wave {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .container h1 {
    font-size: 27px;
    -webkit-text-stroke: 3px transparent;
  }
}


