*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  max-width: 100%;
  margin: 0 auto;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(33, 39, 47, 1) 100%
  );
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}

section {
  width: 100%;
  padding-bottom: 3rem;
}

img {
  width: 100%;
  object-fit: cover;
}

p {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
}

:root {
  --primary-color: #10ac84;
  --secondary-color: #e8e8e9;
}

/* Utility Classes */

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  padding: 4rem 0;
}

.section-title h1 {
  text-align: center;
  font-size: 3rem;
  color: var(--secondary-color);
}

.section-title-description {
  text-align: center;
  font-size: 1.35rem;
  margin: 2rem 0;
}

.title-underline {
  display: block;
  width: 30px;
  margin: 0 auto;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.section-seperator {
  display: block;
  height: 2px;
  background: rgb(33, 39, 47);
  background: linear-gradient(
    90deg,
    rgba(33, 39, 47, 1) 0%,
    rgba(0, 0, 1, 1) 100%
  );
}

/* Header */

.logo img {
  width: 150px;
  text-align: left;
}

/* Hero */

.hero-page {
  height: calc(100vh - 120px);
}

.hero-page-flex {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
}

.hero-page-top-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.hero-page-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
  width: 100%;
  gap: 20px;

  h1 {
    font-size: 4rem;

    span {
      color: var(--primary-color);
    }
  }

  h2 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
  }
}

.btn-learn-more a:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  transition: 0.2s ease-in-out;
}

.hero-page-right {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-page-image img {
  width: 100%;
  color: #000;
}

.hero-page-title {
  font-weight: 400;
  padding: 30px;
  text-align: center;
}

.hero-page-mouse {
  position: relative;
  height: 50px;
}

.hero-page-mouse i {
  animation: bounce 1.25s infinite ease-in-out;
}

@keyframes bounce {
  0% {
    color: rgba(0, 0, 0, 0.5);
    transform: translateY(0);
  }
  50% {
    color: var(--primary-color);
  }
  100% {
    color: rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
  }
}

.hero-page-bottom-container {
  height: 135px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

  .scroll-text {
    font-weight: 300;
    padding-bottom: 10px;
    color: #10ac84;
    font-weight: 500;
    animation: fade 1s infinite ease-in-out;
  }
}

.hero-page-bottom-content-wrap.active {
  display: none;
}

#scroll-content {
  visibility: active;
}

@keyframes fade {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.95;
  }
  100% {
    scale: 1;
  }
}

.btn-learn-more a {
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  cursor: pointer;
  width: 250px;
  height: 70px;
  border-radius: 20px;
  background-color: var(--primary-color);
}

/* Contact form */

.contact-page-wrapper {
  display: flex;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 500;
  width: 100%;
}

.form-group label {
  color: #e8e8e9;
}
.form-group input,
.form-group textarea {
  width: 100%;
  color: #ffffff;
  outline: 0;
  border: 0;
  height: 60px;
  background-color: transparent;
  border: 1px solid #10ac84;
  border-radius: 15px;
  font-size: 1rem;
  padding: 20px;
}

.form-group textarea {
  height: 200px;
  resize: none;
}

.form-group input::placeholder {
  color: var(--primary-color);
}

.form-group textarea::placeholder {
  color: var(--primary-color);
}

/* Email validation styles */
.form-group input.valid {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.form-group input.invalid {
  border-color: #f44336;
  box-shadow: 0 0 5px rgba(244, 67, 54, 0.3);
}

.form-group input.valid:focus {
  border-color: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

.form-group input.invalid:focus {
  border-color: #f44336;
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.4);
}

/* Button disabled state */
.btn:disabled {
  background-color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn:disabled:hover {
  background-color: #666;
  color: var(--secondary-color);
}

.contact-form p {
  text-align: center;
}

.btn {
  border-radius: 15px;
  color: var(--secondary-color);
  display: block;
  width: 100%;
  outline: 0;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  background-color: var(--primary-color);
  font-family: inherit;
  font-size: inherit;
  transition: background-color 0.2s ease-in;
  transition: color 0.2s ease-in;
  padding: 20px;
}

.btn:hover {
  color: #e8e8e9;
  background-color: #10ac84;
}

/* Booking */

.booking-block {
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.booking-description h3 {
  font-size: 3rem;
  padding-bottom: 2rem;
  text-align: left;
}

.booking-description p {
  text-align: left;
  font-size: 1.2rem;
  padding-bottom: 2rem;
}

/* Useful Links*/
.footer-top {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 4rem 1rem;
  width: 100%;
}

.links-group {
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-group h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.links-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.links-group a {
  color: var(--secondary-color);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.links-group a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.links-group i {
  color: var(--primary-color);
  width: 20px;
}

.copyright-link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.copyright-link p {
  color: var(--secondary-color);
  cursor: none;
}

.copyright-link a {
  color: var(--secondary-color);
  text-align: center;
}

.copyright-link a:hover {
  color: var(--primary-color);
}

/* #Tutorials */

.tutorials-section__main__container {
  display: flex;
  gap: 2rem;
}

.tutorials-section__main__container--left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.tutorials-section__main__container--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.tutorials-section__main__container__item {
  border-radius: 20px;
  transition: border 0.2s ease-in-out;
  overflow: hidden;
}

.tutorials-section__main__container__image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.tutorials-section__main__container__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.tutorials-section__main__container__item:hover {
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
}

/* Roadmap */

.roadmap-box-container {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.roadmap-item {
  border: 1px solid var(--primary-color);
  flex: 1;
  border-radius: 15px;
  min-width: 300px;
}

.roadmap__item-wrap {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 2rem;
}

.roadmap-item i {
  margin-bottom: 1rem;
  text-align: left;
}

.roadmap-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.roadmap-item ul li {
  margin-bottom: 0.5rem;
  line-height: 2rem;
  color: var(--secondary-color);
}

/* Mentorship */

.mentorship__section-flex {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.mentorship__section-article-right {
  width: 100%;
}

.mentorship__box_container {
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.mentorship__box-item {
  padding: 2rem;
  font-size: 1.2rem;
  height: 420px;
}

.mentorship__box-item h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: var(--primary-color);
}

.mentorship__article-footer {
  height: 3rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  gap: 1rem;
}

.mentorship__article-arrow_left {
  color: var(--primary-color);
  cursor: pointer;
}

.mentorship__article-curent_selection {
  display: flex;
  gap: 0.5rem;
  overflow: visible;
}

.mentorship__article-arrow_right {
  color: var(--primary-color);
  cursor: pointer;
}

.mentorship__article-arrow_left:hover {
  color: var(--secondary-color);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.mentorship__article-arrow_right:hover {
  color: var(--secondary-color);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.article-selection-circle {
  overflow: visible;
}

@keyframes scaleUpDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.fa-circle-dot {
  color: var(--primary-color);
  transform: scale(1.1);
  animation: scaleUpDown 0.3s ease-out forwards;
  transition: 0.2s ease-in-out;
}

.mentorship__section-article-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.mentorship__section-article-left-container {
  text-align: left;
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mentorship__section-article-left-container h1 {
  font-size: 5rem;
}

.mentorship__section-article-left-container h1 span {
  color: var(--primary-color);
}

.mentorship__section-article-left-container p {
  font-size: 1.2rem;
}

.learn-more {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  color: var(--primary-color);
  cursor: pointer;
}

.learn-more:hover {
  color: var(--secondary-color);
  transition: 0.2s ease-in-out;
}

.hidden {
  display: none;
}

/* About */

.about__section-flex {
  display: flex;
}

.about__section-left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__section-left h2 {
  font-size: 4rem;
}

.about__section-left h3 {
  margin-top: 10px;
  color: var(--primary-color);
}

.about__section-left-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.about__section-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about__section-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  align-content: center;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--primary-color);
}

.about__section-right h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.about__section-right p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* Media Quaries */

@media (max-width: 1400px) {
  .container {
    padding: 1rem;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 1rem;
  }

  .roadmap-box-container {
    flex-wrap: wrap;
  }

  /* #Tutorials Mobile */
  .btn-learn-more {
    margin: 0 auto;
  }

  .hero-page-image {
    width: 80%;
  }

  .tutorials-section__main__container {
    display: flex;
    flex-direction: column;
  }
  .hero-page-left {
    h1 {
      font-size: 3rem;

      span {
        color: var(--primary-color);
      }
    }

    h2 {
      font-weight: 400;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Main */

  .container {
    max-width: 1100px;
    margin: 0rem auto;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .hero-page-flex {
    margin-top: 0rem;
    padding-top: 120px;
    height: 100vh;
  }

  .hero-page-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;

    h1 {
      font-size: 3rem;

      span {
        color: #10ac84;
      }
    }

    h2 {
      font-size: 1rem;
      font-weight: 400;
    }
  }

  .hero-page-right {
    display: none;
  }

  .hero-page-bottom-container {
    padding-bottom: 2rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .link-area {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem;
  }

  .link-area i {
    color: #10ac84;
    font-size: 1.6rem;
  }

  .link-area img {
    width: 150px;
  }

  /* Navbar */

  .main__header-flex {
    padding: 0rem 0;
  }

  /* Mobile Contact */

  .contact-page-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* Mobile About  */

  .about__section-flex {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 2rem;
  }
  /*  */
  .about__section-left {
    width: 100%;
  }

  .about__section-right {
    width: 100%;
  }

  .about__section-left h2 {
    font-size: 2.5rem;
  }

  .about__section-left h3 {
    font-size: 1rem;
  }

  /* Mentorship */

  .section-title {
    padding: 2rem 0;
  }

  .mentorship__section-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .mentorship__box-item {
    height: 500px;
  }

  .mentorship__section-article-left-container h1 {
    font-size: 3rem;
  }

  .mentorship__section-article-left-container p {
    padding: 1rem 0;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .links-group {
    max-width: none;
    text-align: left;
  }

  .links-group h3,
  .links-group a {
    text-align: left;
  }
}

@media (max-width: 568px) {
  .roadmap-box-container {
    flex-direction: column;
  }
}

/* Media Quaries */

#hamburger-btn {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: 40px; /* Adjust as needed */
  height: 40px; /* Adjust as needed */
  position: relative;
  cursor: pointer;
}

#hamburger-btn i.fa-solid.fa-bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px; /* Adjust as needed */
  line-height: 1;
  margin: 0;
  padding: 0;
}

#hamburger-btn i.fa-solid.fa-bars::before {
  pointer-events: none;
}

.tutorials-section__main__container__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.tutorials-section__main__container__image a img {
  transition: transform 0.3s ease;
}

.tutorials-section__main__container__image a:hover img {
  transform: scale(1.05);
}
