@font-face {
  font-family: "Satoshi-regular";
  src: url("../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-medium";
  src: url("../fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-bold";
  src: url("../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-regular);
}

:root {
  --primary-color: rgb(0, 0, 245);
  --background-color: #000000;
  --secondary-color: #2ecc71;
  --text-color: #ffffff;
  --text-white: #fff;
  --dark: #000;
  --info: #333333;
  --light: #9e9e9e;
  --button-text-color: #ffffff;
  --statistics-bg: #121212;
  --footer-btn-icon-bg-color: #000;
  --footer-btn-bg-color: #fff;
  --footer-btn-color: #000;
  --font-regular: "Satoshi-regular";
  --font-medium: "Satoshi-medium";
  --font-bold: "Satoshi-bold";
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-medium);
}
.container {
  width: 100%;
  max-width: 1324px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.m-auto{
  margin: auto !important;
}
.align-center{
  align-items: center !important;
}
/*----------------------------------------*/
/*                Variables               */
/*----------------------------------------*/
.title62 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.2;
  color: var(--text-color);
}
.title60 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.2;
  color: var(--text-color);
}
.title44 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text-color);
}
.title36 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: var(--text-color);
}
.title26 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.2;
  color: var(--text-color);
}
.desc18 {
  color: var(--text-color);
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(26px, 2vw, 30px);
}
.desc16 {
  color: var(--text-color);
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.3;
}
.items-center {
  align-items: center;
}
.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.w-full {
  width: 100% !important;
}
a {
  text-decoration: none;
}
/*----------------------------------------*/
/*                 Divider                */
/*----------------------------------------*/
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--info);
  margin: 0 auto;
}
.main-wrapper {
  width: 100%;
  position: relative;
}
/*----------------------------------------*/
/*                 Navbar                 */
/*----------------------------------------*/
/* Navbar styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.8s ease, box-shadow 0.8s ease;
}
.navbar.scrolled {
  background-color: rgba(
    0,
    0,
    0,
    0.9
  ); /* you can change opacity or use solid #000 */
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Menu button - always visible */
.menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--text-white);
  padding: 0.5rem 0;
  z-index: 1001;
}
/* Full-page overlay menu - for all devices */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 999;
}
.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
}
/* Menu header with logo and close button */
.nav-header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.close-btn {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
}
/* Navigation list */
.nav-list {
  list-style: none;
  text-align: center;
  margin-top: 3rem;
}
.nav-item {
  margin: 1.5rem 0;
}
.nav-link {
  font-size: 2rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--light);
}
/* When menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-toggle {
  visibility: hidden; /* Hide MENU button when menu is open */
}
/*----------------------------------------*/
/*              Hero Section              */
/*----------------------------------------*/
.hero {
  position: relative;
  /* background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../hero.mp4"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-h-50 {
  height: 50vh;
  background-position: top;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
  text-align: center;
}
.hero-content h1 {
  color: var(--text-white);
}


.sub-hero {
 
  color: white;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 20px; */
    position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.sub-hero .container {
  z-index: 2;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: clamp(20px, 2vw, 30px);
}
/*----------------------------------------*/
/*              Input Fields              */
/*----------------------------------------*/
.form input,
textarea {
  width: 100%;
  padding: 15px 30px;
  border: 1px solid #333333;
  background-color: transparent;
  color: var(--light);
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--info);
  outline: none;
}
/*----------------------------------------*/
/*              Button Style              */
/*----------------------------------------*/
.app-btn {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--button-text-color);
  border: none;
  padding: 5px 25px 5px 5px;
  border-radius: 100px;
  font-size: clamp(16px, 2vw, 18px);
  gap: clamp(10px, 2vw, 20px);
  cursor: pointer;
  transition: transform 0.3s ease;
  width: max-content;
}
.app-btn .btn-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: white;
  color: black;
}
.app-btn .btn-icon-wrapper .icon {
  font-size: 18px;
}
.timeBtn{
  padding: 10px 15px;
}

.link-btn {
  background: transparent;
  color: var(--text-color);
  border: none;
  padding: 0;
  font-size: clamp(16px, 2vw, 18px);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.center-content {
  text-align: center;
  margin: auto;
}
.center-content h2,
.center-content p {
  margin: auto;
}
/*----------------------------------------*/
/*                 Banner                 */
/*----------------------------------------*/
.banner-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 66px);
  font-family: var(--font-regular);
}
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: clamp(20px, 5vw, 50px);
  width: 50%;
  /* text-align: center; */
  /* margin: auto; */
}
.banner-content h2 {
  font-size: clamp(28px, 5vw, 60px);
  line-height: 1.2;
  color: var(--text-color);
  /* margin: auto; */
}
.banner-content p {
  color: var(--text-color);
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(26px, 2vw, 30px);
  /* margin: auto; */
}
.banner-img-wrapper {
  height: 580px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-right: clamp(-16px, 5vw, -74px);
  /* margin-top: -80px; */
}
.banner-img-wrapper-left {
  margin-left: clamp(-16px, 5vw, -74px);
  margin-right: auto;
}

.banner-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 500px;
  background-color: var(--primary-color);
  z-index: 0;
}

.banner-img {
  position: relative;
  width: 80%;
  max-width: 510px;
  height: 100%;
  max-height: 500px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}
/*----------------------------------------*/
/*                 Banner                 */
/*----------------------------------------*/
.calendly-inline-widget {
  height: 700px;
  min-width: 320px;
  width: 100%;
}

@media only screen and (min-width: 1440px) {
  .banner-img-wrapper {
    margin-right: -74px;
    /* margin-top: -80px; */
  }
  .banner-img-wrapper-left {
    margin-left: -74px;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1326px) {
  .banner-img-wrapper {
    margin-right: -16px;
    /* margin-top: -80px; */
    height: 480px;
  }
  .banner-img-bg {
    max-height: 400px;
  }
  .banner-img {
    width: 80%;
    max-height: 400px;
  }
}
@media screen and (max-width: 1031px) {
  .calendly-inline-widget {
    height: 900px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-wrapper {
    align-items: center;
  }
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-wrapper {
    flex-direction: column;
  }
  .banner-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .banner-img-wrapper {
    width: 100%;
    max-height: 380px;
    margin-right: 0;
  }
  .banner-img-bg {
    max-height: 300px;
  }
  .banner-img {
    width: 80%;
    max-height: 300px;
  }
  .calendly-inline-widget {
    min-width: 100%;
  }
  /*----------------------------------------*/
  /*              Input Fields              */
  /*----------------------------------------*/
  .form input,
  textarea {
    padding: 10px;
  }
}
@media screen and (max-width: 681px) {
  .calendly-inline-widget {
    height: 815px;
  }
}
@media only screen and (max-width: 576px) {
  .banner-img-wrapper {
    max-height: 280px;
  }
  .banner-img-bg {
    max-height: 230px;
  }
  .banner-img {
    width: 80%;
    max-height: 230px;
  }
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
