@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Define the fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  font-family: "Poppins";
}

#loader img {
  width: 180px;
  margin-bottom: 20px;
}

/* Fade-out transition */
#loader.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.progress-container {
  width: 60%;
  max-width: 400px;
  height: 8px;
  background: #222;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #00CFE8;
  transition: width 0.1s linear;
}

#progress-text {
  margin-top: 10px;
  color: #00CFE8;
  font-weight: bold;
}

/* Apply the animation to your element */
.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  overflow-x: hidden;
}

/* === Navbar Styling === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav center, hamburger right */
  background-color: black;
  font-family: "Poppins", sans-serif;
  width: 100%;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.navbar img {
  height: 50px;
  margin-right: 20px;
}

/* === Nav Links Container === */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* spacing between items */
  flex: 1;
}

/* Links inside the navbar */
.navbar a {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 1s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

/* Hover effect for links and dropdown buttons */
.navbar a:hover, .dropdown:hover .dropbtn {
  color: #00CFE8;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1A2433;
  border-radius: 5px;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  transition: 1s ease;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #00CFE8;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: 1s ease;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #383F4E;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* === Hamburger menu styles === */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 14px 16px;
}

@media screen and (max-width:1200px) {
  body {
    overflow-x: hidden;
  }
}
/* === Responsive Styles === */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar img {
    margin-top: 5%;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 0;
  }

  .nav-links a,
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-content a {
    background-color: #1A2433;
    text-align: left;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .hamburger {
    display: block;
    margin-top: -14%;
    margin-left: auto;

  }

  .nav-links.show {
    display: flex;
  }
}

/*Home Section Code(Image & Button*/

.home-section {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
}

.home-section img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
}

/* Overlay text container */
.home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.home-content h1 {
  font-size: 6rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0 20px 0;
  color: #fff;
}

.home-section strong {
  font-weight: 700;
  color: #00ddff;
}

.home-content button {
  padding: 12px 24px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background-color: #00CFE8;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.home-content button:hover {
  background-color: #00b8d4;
  transform: translateY(-5px);
}

/* === Responsive Styles === */
@media screen and (max-width: 768px) {
  .home-content h1 {
    font-size: 2rem;
  }

  .home-content button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .home-content h1 {
    font-size: 1.5rem;
  }

  .home-content button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*Contact Page Elements*/

.contact-head {
  width: 100%;
  padding: 3% 5%; /* Add horizontal padding */
  box-sizing: border-box;
  text-align: center;
}

.contact-head h1 {
  font-family: "Poppins";
  background: linear-gradient(90deg, #00e5ff, #275ff8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  font-size: 50px;
  margin: 0;
  padding-top: 1%;
}

.contact-head p {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: 20px;
  margin-top: 0.5rem;
  padding-bottom: 2%;
}

/* === Responsive Adjustments === */
@media screen and (max-width: 768px) {
  .contact-head h1 {
    font-size: 36px;
  }

  .contact-head p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .contact-head h1 {
    font-size: 28px;
  }

  .contact-head p {
    font-size: 14px;
  }
}

/*Contact Form CSS*/

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Poppins";
  max-width: 600px;       /* Limit the width */
  margin: 0 auto;         /* Center the form */
  padding: 20px;          /* Add some space around it */
  width: 100%; 
  font-family: "Poppins";
}

.contact-form label {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: #00CFE8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  background: rgba(255, 255, 255, 0.1);
  color: #eee;
  transition: background-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.contact-form button {
  background: #00CFE8;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s ease;
}

.contact-form button:hover {
  background-color: #03afc2;
  transform: translateY(-5px);
}

/*Home Section Second Part*/

.teams {
  margin-top: -2.1%;
  margin-left: 0.5%;
  width: 100vw; /* Avoid overflow */
  padding-bottom: 3%; /* Add spacing below if needed */
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally center children */
}

.teams h1 {
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  padding-top: 3%;
}

.teams p {
  color: #00e5ff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: -2%;
  font-size: 20px;
}

.teams button {
  background-color: #00ddff;
  color: white;
  font-family: "Poppins", sans-serif;
  border: none;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 3px;
  transition: 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.teams button:hover {
  transform: translateY(-5px);
  background-color: #00b8d4;
}

/* 🔄 Responsive font and padding */
@media (max-width: 768px) {
  .teams h1 {
    font-size: 40px;
  }

  .teams p {
    font-size: 16px;
  }

  .teams button {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/*About Section*/

/* Base styles */
#about {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #126d75, #000000);
  margin: -1%;               /* Remove margin negative hack unless really needed */
  padding: 2rem 1rem;      /* Use padding instead of negative margin for spacing */
  width: 100%;             /* Let it fill width, avoid 100vw when there are scrollbars */
  box-sizing: border-box;   /* So padding doesn't make it overflow */
}

#about h1 {
  text-align: center;
  color: white;
  padding-top: 3rem;
  font-size: 2.5rem;        /* relative units so they can scale */
  margin-top: 0;            /* reset margin if needed */
}

#about p {
  text-align: center;
  color: white;
  line-height: 1.6;         /* relative line height better for readability */
  padding-bottom: 2rem;
  font-size: 1.125rem;       /* ~18px if root is 16px */
  max-width: 800px;         /* Limit width for very large screens so text doesn’t get super wide */
  margin: 0 auto;           /* Center paragraph container */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  #about h1 {
    font-size: 2rem;
    padding-top: 2rem;
  }
  #about p {
    font-size: 1rem;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  #about h1 {
    font-size: 1.6rem;
    padding-top: 1.5rem;
  }
  #about p {
    font-size: 0.9rem;
    padding-bottom: 1rem;
  }
}

/*Coming Soon*/

.coming {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh; /* Full viewport height */
  padding: 0 20px; /* Small horizontal padding for smaller screens */
}

.coming h1 {
  font-family: "Poppins", sans-serif;
  font-size: 10vw; /* Responsive font size */
  color: white;
  margin: 0;
  line-height: 1.2;
}

@media screen and (max-width: 480px) {
  .coming h1 {
    font-size: 8vw;
  }
}

.socials {
  margin-top: 2%;
  text-align: center;
}

.socials h1 {
  font-family: "Poppins";
  color: white;
  font-size: 50px;
  margin-top: 5%;
}

.social-link {
  display: inline-block;
  justify-content: center; /* center horizontally */
  gap: 20px; /* space between icons */
  margin-top: 3%;
}

.social-link {
  align-items: center;
  padding: 2%;
}

.social-link i {
  font-size: 72px;
  background-color: #383838;
  padding: 30px 30px;
  border-radius: 10%;
  transition: 1s ease;
}

.social-link i:hover {
  border: 2px solid white;
  background-color: #222222;
  transform: translateY(-5px);
  transition: 1s ease;
}

@media (max-width: 600px) {
  .socials h1 {
    font-size: 30px;
  }

  .social-link i {
    font-size: 30px;
    padding: 20px;
  }

  .social-link {
    flex: 1 1 80px;
  }
}

/*Highlighghts Section*/

.moments {
  margin-left: 8%;
}

.hightlights {
  width: 100vw;
}

.moments {
  background-color: #1f1f1f;
  margin-left: -1%;
  margin-top: 5%;
  width: 101.4%;
}


.moments h1 {
  font-family: "Montserrat";
  color: white;
  text-align: center;
  padding-top: 5%;
}


.moments h3 {
  font-family: "Montserrat";
  font-size: 20px;
  text-align: center;
  color: silver;
  font-weight: 200;
}

.highlights div {
   display: inline-block;
   background-color: #444F61;
   padding: 110px;
   margin-left: 6%;
   margin-top: 2%;
   border: 3px solid #343f52;
   border-radius: 10px;
   margin-bottom: 5%;
   font-family: "Montserrat";
   text-align: center;
   color: #00e5ff;
   justify-content: center;
   transition: 1s ease;
}

.highlights-2 {
  background-color: #1f1f1f;
  margin-left: -1%;
  margin-top: 0%;
  width: 101.4%;
}


.highlights div:hover {
  border: 2px solid #00e5ff;
  box-shadow: 0px 0px 10px #00a1b3;
  transform: translateY(-6px); /* Move up 5px */
}

.highlights-2 div {
   display: inline-block;
   background-color: #444F61;
   padding: 110px;
   margin-left: 6%;
   margin-top: 2%;
   border: 3px solid #343f52;
   border-radius: 10px;
   margin-bottom: 5%;
   font-family: "Montserrat";
   text-align: center;
   color: #00e5ff;
   justify-content: center;
   transition: 1s ease;
}


.highlights-2 div:hover {
  border: 2px solid #00e5ff;
  box-shadow: 0px 0px 10px #00a1b3;
  transform: translateY(-6px); /* Move up 5px */
}
/*footer code*/

.footer {
  background-color: #000000;
  color: #d1d5db;
  font-family: "Montserrat", sans-serif;
  padding: 40px 20px 20px;
  width: 99.3%;
  margin-left: -1%;
}


footer a {
  text-decoration: none;
}


.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}


.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}


.footer-column a:hover {
  color: #00e5ff;
}


.footer-column h2,
.footer-column h3 {
  color: #00e5ff;
  margin-bottom: 10px;
}


.footer-column p,
.footer-column li {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 8px;
  list-style: none;
}


.footer-column ul {
  padding: 0;
  margin: 0;
}


.footer-column li i {
  margin-right: 8px;
}

.social-icons {
  font-size: 20px;
  display: flex;
  gap: 15px;
  color: #ffffff;
}


.social-icons i {
  font-size: 20px;
  display: flex;
  gap: 15px;
  color: #ffffff;
  transition: 1s ease;
}


.social-icons i:hover {
  color: #00e5ff;
}


.footer hr {
  border: none;
  border-top: 1px solid #1e293b;
  margin: 20px 0;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
  flex-wrap: wrap;
}

.staff-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 10%;
}

.staff-roster h1{
  color: white;
  font-family: "Poppins";
  text-align: center;
  font-size: 60px;
  margin-top: 10%;
}

.staff-roster strong {
  font-weight: 700;
  color: #00e5ff;
  text-align: center;
}

/*Creator Cards*/

.creator-roster h1{
  color: white;
  font-family: "Poppins";
  text-align: center;
  font-size: 60px;
  margin-top: 10%;
}

.creator-roster strong {
  font-weight: 700;
  color: #00e5ff;
  text-align: center;
}
.founder {
  background-color: #242424;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-top: 5%;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.founder:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.founder img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #00e5ff;
}

.founder h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.founder h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #7a8ca3;
  margin: 0 0 16px;
}

.founder a {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 1s ease;
}

.founder a:hover {
  color: #00e5ff;
}

/*VIDEO SECTION*/

.launch {
  width: 100vw;
  height: 100vh; /* full screen section */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black; /* fallback bg */
  overflow: hidden;
}

.launch h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  z-index: 2; /* stays above video if needed */
}

.launch video {
  width: 70vw;
  height: auto;
  object-fit: cover; /* crops video nicely */
  border-radius: 12px;
  display: block;
}

.launch strong {
  color: #00e5ff;
}

