@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #132d45;
  --text-color: #fdfdfd;
  --main-color: #19e6e6;
  --white-color: #fdfdfd;
  --shadow-color: rgba(0, 0, 0, 0.2);
}

.teal {
  color: var(--main-color);
}

.red {
  color: red;
}

.green {
  color: green;
}

.bold {
  font-weight: bolder;
}

.spaced {
  letter-spacing: 0.1rem;
}

.larger {
  font-size: 1.9rem;
}

.largest {
  font-size: 4.5rem;
}

.hero{
  display: flex;
  flex-direction: column;
  background: black;
}

.main_01 {
  display: flex;
  flex-direction: column;
  padding: 8rem 2rem;
  color: var(--text-color);
  height: 50rem;
  width: auto;

  /* Background Image with Darker Gradient Overlay */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.651) 0%, rgb(0, 0, 0) 100%), url(/static/assets/home-bg.jpg);
  background-size: cover, cover; /* Ensure both cover the area */
  background-repeat: no-repeat; /* Do not repeat the background */
  background-position: center; /* Center the background image */
}

.signup_button {
  margin: 1.2rem 0rem;
  position: relative;
  display: inline-block;
  border: none;
  padding: 14px 38px;
  background: linear-gradient(135deg, var(--main-color), #00b3b3);
  color: var(--white-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.4s ease;
  overflow: hidden;
}

.signup_button a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.signup_button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    120deg,
    #19e6e6,
    #00ffff,
    #19e6e6,
    #00b3b3
  );
  background-size: 300% 300%;
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.signup_button:hover::before {
  opacity: 1;
  animation: glowMove 3s linear infinite;
}

.signup_button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px var(--main-color), 0 0 50px rgba(25, 230, 230, 0.3);
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.text {
  width: 70%;
  margin: 5rem 4rem;
}

.text h1{
  font-size: 4rem;
}

.text p{
  font-size: 1.1rem;
}

.numbers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 4rem;
}

.main_02 {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: var(--text-color);
  padding: 5rem 3rem;
}

.opportunities{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#opportunity_01 {
  animation: opp_animation 2s ease 0s 1 normal forwards;
}

#opportunity_03 {
  animation: opp_animation 2s ease 0s 1 normal forwards;
  animation-timeline: view();
  animation-range: contain;
}

#opportunity_02{
  animation: opp_animation_02 2s ease 0s 1 normal backwards;
  animation-timeline: view();
  animation-range: contain;
}

@keyframes opp_animation_02 {
	0% {
		opacity: 0;
		transform: translateX(-250px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes opp_animation {
	0% {
		opacity: 0;
		transform: translateX(250px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.opportunities h1 {
  font-size: 2.2rem;
  text-align: center;
}

#flip {
  height:50px;
  overflow:hidden;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

#flip > div > div {
  color:#fff;
  padding:4px 12px;
  height:45px;
  margin-bottom:45px;
  display:inline-block;
}

#flip div:first-child {
  animation: show 6s linear infinite;
}

#flip div div {
  background:#42c58a;
}
#flip div:first-child div {
  background:#4ec7f3;
}
#flip div:last-child div {
  background:#DC143C;
}

@keyframes show {
  0% {margin-top:-270px;}
  5% {margin-top:-180px;}
  33% {margin-top:-180px;}
  38% {margin-top:-90px;}
  66% {margin-top:-90px;}
  71% {margin-top:0px;}
  99.99% {margin-top:0px;}
  100% {margin-top:-270px;}
}

.opportunities p {
  padding: 2rem 11rem;
  text-align: center;
}

.gallery {
  display: flex;
  flex-direction: column;
  background-color: black;
}

.gallery ul {
  display: flex;
  flex-direction: row;
  overflow-x:scroll;
  list-style: none;
  align-items: center;
  padding: 1rem 2rem;
  justify-content: start;
  gap: 10rem;
  color: var(--text-color);
  &::-webkit-scrollbar {
    display: none;
  };
}

.gallery ul li {
  display: inline-block;
  flex: none;
  border: solid 1px var(--main-color);
  border-radius: 1rem;
  width: 20rem;
  height: 28rem;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: ease 0.7s;
}

.gallery ul li:hover {
  padding: 4rem 2rem;
  transition: ease 0.7s;
  filter: drop-shadow(1px 1px 12px #01c38d);
  height: 35rem;
}

.gallery ul li img {
  width: 7.5rem;
  height: auto;
  padding-bottom: 2rem;
  border: 1px solid transparent;
  border-radius: 50%;
}


.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background: black;
  color: var(--text-color);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 35rem;
  height: 40rem;
  gap: 1.5rem;
  -webkit-box-shadow: 0px 0px 14px -6px rgba(1, 195, 141, 1);
  -moz-box-shadow: 0px 0px 14px -6px rgba(1, 195, 141, 1);
  box-shadow: 0px 0px 14px -6px rgba(1, 195, 141, 1);
  padding: 3rem;
  background: rgb(29, 28, 28);
  border: 1px solid transparent;
  border-radius: 16px;
}

.contact-form form label {
  display: block;
  text-align: center;
  background: rgb(29, 28, 28);
}

.contact-form form input {
  border: 1px solid var(--main-color);
  padding: 0.5rem;
  min-width: 100%;
  background: rgb(29, 28, 28);
  color: var(--text-color);
}

.contact-form form button {
  padding: 1.2rem;
  background-color: var(--main-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: ease 0.4s;
}

.contact-form form button:hover {
  transition: ease 0.4s;
  background-color: var(--bg-color);
  color: var(--main-color);
  -webkit-box-shadow: 0px 0px 68px 1px rgba(1, 195, 141, 1);
  -moz-box-shadow: 0px 0px 68px 1px rgba(1, 195, 141, 1);
  box-shadow: 0px 0px 68px 1px rgba(1, 195, 141, 1);
}

.custom-checkbox {
  width: 1.2rem;   /*Change size*/
  height: 1.2rem;  /*Change size*/
  accent-color: blue;  /*Change checkbox color*/
}

.signup_confirm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.644) 0%, rgba(0, 0, 0, 0.938) 100%), url(/static/assets/futuristic-colorful-glowing-abstract-neon-lights-background.jpg);
  background-size: cover, cover; /* Ensure both cover the area */
  background-repeat: no-repeat; /* Do not repeat the background */
  background-position: center; /* Center the background image */
  height: 92vh;
  overflow: hidden;
  gap: 5rem;
}

.signup_confirm h1 {
  text-align: center;
  font-size: 3rem;
  color: var(--text-color);
  font-family:"Poppins", sans-serif;
  font-weight: 200;
}

.signup_confirm h3 {
  font-size: 1.5rem;
  font-family:"Poppins", sans-serif;
  font-weight: 200;
}


@media (max-width:576px) {

  .main_01 {
    height: auto;
  }

  .contact-form form {
    width: auto;
    height: auto;
  }

  .text {
    width: 90%;
    margin: 2rem 1rem;
  }

  .main_02 {
    padding: 0.5rem 1rem;
  }

  .opportunities p {
    padding: 0.2rem 2rem;
  }

  .numbers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 1rem;
    gap: 4rem;
  }
}