@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  box-sizing: border-box;
}
:root {
  --primary-bg: #101a1b;
  --red: #a53131;
  --red2: #e26d6d;
  --gray: #2b3637;
  --light-teal: #216065;
  --dark-teal: #073134;
}
body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  background-color: var(--primary-bg);
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
a {
  text-decoration: none;
  color: #ffffff;
}
/* Start Of Navbar */

/* Navbar Styles */
header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: var(--primary-bg);
  position: sticky;
  max-height: 70px;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.menu-icon {
  display: none;
  width: 25px;
  height: 12.5px;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .nav-links {
    gap: 10px;
  }
  header a {
    font-size: 18px;
    padding: 15px;
  }
}
header span {
  display: none;
}
@media (max-width: 950px) {
  header {
    justify-content: start;
  }
  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(16, 26, 27, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    transition: top 0.3s ease;
  }
  header span {
    display: block;
    margin-left: 15px;
  }
  .nav-links.open {
    /* top: 10vh; */
  }

  .menu-icon {
    display: block;
  }

  .close-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
  }
  .backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 900; /* Below the nav but above other content */
  }

  .backdrop.show {
    display: block;
  }

  body.nav-open {
    overflow: hidden; /* Prevents scrolling when the nav is open */
  }
}
header a {
  font-weight: 400;
  font-size: 20px;

  background-color: transparent;
  border-radius: 20px;
  padding: 5px 15px;
  transition: background-color 0.3s ease-in-out;
}
header .selected {
  background-color: var(--red);
}
header a:hover {
  color: #329298;
}

/* End of Navbar */

/* Start Of Hero */
.hero {
  width: 100%;
  height: 90vh;
  padding: 0 10%;
  background-image: url(/assets/images/Hero.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;

  display: flex;
  justify-content: left;
  align-items: center;
}
.cta-section {
  position: relative;

  width: 65%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: left;
}
.cta-section h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 78.02px;
  margin: 0;
  z-index: 30;
}
.light {
  font-family: Montserrat;
  font-size: 64px;
  font-weight: 300;
  line-height: 78.02px;
  text-align: left;
}
.cta-section p {
  font-size: 32px;
  font-weight: 300;
  line-height: 39.01px;
  text-align: left;
  z-index: 30;
}
.buttons {
  width: 100%;
  display: flex;
  justify-content: left;

  gap: 60px;
  padding: 0 10px;
  z-index: 30;

  font-family: Montserrat;
  font-size: 23.99px;
  font-weight: 300;
  line-height: 29.24px;
  text-align: left;
}
.buttons a {
  border-radius: 35px;
  padding: 10px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}
.buttons a:first-child {
  border: 5px #2b3637 solid;
}
.buttons a:first-child:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: black;
}
.buttons a:nth-child(2) {
  border: none;
  background-color: #216065;
}
.buttons a:nth-child(2):hover {
  background-color: var(--red);
}
.shape {
  position: absolute;
  width: 400px;
  height: 100%;
  top: 55%; /* Center vertically */
  left: 30%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Use translate to perfectly center */
}
.shape_1 {
  z-index: 10;

  /* Custom offsets */
  transform: translate(-50%, -50%) translate(40px, -20px); /* Custom offsets: 20px right and 10px up */
}
.shape_2 {
  z-index: 20;
}
/* End Of Hero */

@media (max-width: 1200px) {
  .hero {
    background-image: linear-gradient(
        to right,
        rgba(16, 26, 27, 0.9),
        rgba(16, 26, 27, 0.7) 60%
      ),
      url(/assets/images/Hero.webp);
  }
  .cta-section {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
  }
  .cta-section h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 78.02px;
    margin: 0;
  }
  .light {
    font-family: Montserrat;
    font-size: 64px;
    font-weight: 300;
    line-height: 78.02px;
    text-align: left;
  }
  .cta-section p {
    font-size: 32px;
    font-weight: 300;
    line-height: 39.01px;
    text-align: left;
  }
  .buttons {
    width: 100%;
    display: flex;
    justify-content: left;

    gap: 60px;
    padding: 0 10px;
  }
  .buttons a {
    border-radius: 35px;
    padding: 10px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 950px) {
  .hero {
    background-position: bottom;
    background-image: linear-gradient(
        to bottom,
        rgba(16, 26, 27, 0.9),
        rgba(16, 26, 27, 0.6) 60%
      ),
      url(/assets/images/Hero.webp);
  }
  .cta-section {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: left;
  }
  .cta-section h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50.02px;
    margin: 0;
  }
  .light {
    font-family: Montserrat;
    font-size: 40px;
    font-weight: 300;
    line-height: 50.02px;
    text-align: left;
  }
  .cta-section p {
    font-size: 24px;
    font-weight: 300;
    line-height: 32.01px;
    text-align: left;
  }
  .buttons {
    width: 100%;
    display: flex;
    justify-content: left;

    gap: 30px;
    padding: 0 10px;
    margin-top: 20px;
  }
  .buttons a {
    border-radius: 35px;
    padding: 10px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero {
    background-position: bottom;
    background-image: linear-gradient(
        to bottom,
        rgba(16, 26, 27, 0.9),
        rgba(16, 26, 27, 0.9) 60%
      ),
      url(/assets/images/Hero.webp);
    padding: 0 5%;
  }
  .shape {
    width: 350px;

    top: 75%; /* Center vertically */
    left: 40%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Use translate to perfectly center */
  }
  .shape_1 {
    z-index: 10;

    /* Custom offsets */
    transform: translate(-50%, -50%) translate(40px, -20px); /* Custom offsets: 20px right and 10px up */
  }
  .shape_2 {
    z-index: 20;
  }
  .cta-section {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: left;
  }
  .cta-section h1 {
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 700;
    line-height: 36.57px;
    text-align: left;
  }
  .light {
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 300;
    line-height: 36.57px;
    text-align: left;
  }
  .cta-section p {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 300;
    line-height: 24.38px;
    text-align: left;
  }
  .buttons {
    width: 100%;
    display: flex;
    justify-content: left;

    gap: 20px;
    padding: 0;
    font-family: Montserrat;
    font-size: 13.43px;
    font-weight: 300;
    line-height: 13.93px;
    text-align: left;
  }
  .buttons a {
    border-radius: 35px;
    padding: 8px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 450px) {
  .shape {
    width: 280px;

    top: 65%; /* Center vertically */
    left: 40%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Use translate to perfectly center */
  }
  .shape_1 {
    z-index: 10;

    /* Custom offsets */
    transform: translate(-50%, -50%) translate(40px, -20px); /* Custom offsets: 20px right and 10px up */
  }
  .shape_2 {
    z-index: 20;
  }
}

footer {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #060b0c;
  text-align: center;
}
footer img {
  height: 75%;
  max-height: 50px;
  max-height: 70px;
}
