html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Campton";
  src: url("./fonts/CamptonLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Campton";
  src: url("./fonts/CamptonMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Campton";
  src: url("./fonts/CamptonBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Campton", Montserrat;

}

.p18 {
  font-size: 18px;
  font-family: "Campton", Montserrat;
  font-weight: 500;
  line-height: inherit;
  color: #000;

}

.login-btn {
  font-size: 18px;
  font-family: "Campton", Montserrat;
  color: #fff;
  background-color: #000;
  border-radius: 6px;
  padding: 10px 30px;
  font-weight: 500;

}

.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 40px auto;
  /* background: #fff; */
  border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.12);

  padding: 0px; /* ONLY horizontal padding here */
}

.nav-links {
  padding: 0px;
}

.nav-links-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
  padding: 12px 20px; /* top-bottom space ONLY for nav area */
  background: #fff;
      /* height: 96px; */

}

.navbar-wrapper {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.navbar {
  margin: auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  width: 90%;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  margin-left: 26px;
  font-weight: 500;

}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #1f2bff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #000;
  padding: 15px 20px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover {
  background-color: #f8f9fa;
  color: #1f2bff;
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.logo img {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width:100%;
      height: 75px;

}

/* RESPONSIVE (SHOW HAMBURGER ON MOBILE) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* hide big menu */
  }

  .mobile-menu-btn {
    display: flex;
    /* show hamburger */
  }

  .navbar {
    padding: 12px 20px;
  }
}

.footer {
  background: #f7f7fc;
  padding: 40px 0;
}

.footer-row {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: start;
}

.footer-left {
  text-align: start;
  width: 50%;
  border-right: solid 1px #7A7A7A;
  padding: 20px 30px;
  p {
    color: #6C6C6C
  }

}

.footer-logo {
  width: 180px;
  /* adjust like screenshot */
  border-radius: 5px;
}

.footer-tagline {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: #000;
}

.footer-right {
  text-align: start;
  width: 50%;
  padding:20px 30px 20px 30px;

  p,a {
    color: #1F1F1F;
    text-decoration: none;
  }
}

.footer-app-text {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

.play-btn img {
  width: 150px;
  cursor: pointer;
}



.navbarheader {
  display: flex;
  gap: 12px;
  align-items: center;
}


@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }

  .navbarheader {
    display: block;

  }

  .footer-left,
  .footer-right {
    width: 100%;
    padding: 0px 0px 0px 0px;
    border-right: none;
  }
}
@media (max-width: 768px) {

  .nav-links-container {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    margin-right: 15px;
  }

  .navbar-header {
    justify-content: space-between;
    padding: 10px 15px;
    margin: 20px auto;
  }

  .logo img {
    width: 180px;
  }

  .navbar {
    width: 95%;
  }

}@media (max-width: 768px) {

  .nav-links-container {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    margin-right: 15px;
  }

  .navbar-header {
    justify-content: space-between;
    padding: 10px 15px;
    margin: 20px auto;
  }

  .logo img {
    width: 180px;
  }

  .navbar {
    width: 95%;
  }
  .logo img {
        height: 50px;

}

}
@media (min-width: 769px) and (max-width: 1024px) {
.p18{
  font-size: 16px!important;
}
.nav-links-container {
    display: block;
    background: #fff;
    padding: 20px;
        width: 70%;
border-radius: 10px;
}
.login-btn {
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
    margin-top: 20px;
}
.nav-links a {
  margin-left: 0px;
}
.nav-links {
    display: flex;
    padding: 0px;
    gap: 20px;
}
.logo img {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;

        height: 60px;

}
.navbar-header{
  background: none;
}
.logo{
  width:30%;
}
.navbar {
    width: 95%;
}
}
@media (min-width: 1025px) and (max-width: 1400px) {
.p18{
  font-size: 15px!important;
}
.logo img {
    width: 100%;
}
.logo{
  width: 20%;
}
.nav-links-container{
  width: 80%;
          justify-content: flex-end;

}
.nav-links{
      display: flex;
    gap: 10px;
}
.login-btn {
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
}
.navbar {
    width: 95%;
}
    .logo img {
        height: 60px;
    }
}

.community-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.community-popup.active{
    display:flex;
}

.community-popup-content{
    background:#fff;
    width:100%;
    max-width:700px;
    border-radius:12px;
    padding:30px;
    position:relative;
}

.popup-close{
    position:absolute;
    top:10px;
    right:15px;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}
.community-popup .form-input {
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid rgba(17, 17, 17, 0.85);
  border-radius: 14px;
  color: #000000;
  font-size: 18px;
  outline: none;
}
.community-popup .form-input:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid rgba(17, 17, 17, 0.85); /* keep same border */
}
.community-popup .form-input div{
    color: #000000;
}
.community-popup  .form-label{
    color: #000000;

}.community-popup h3{
  text-align:center;
}
.community-popup p{
  margin-top:20px;
  text-align:center;
}

.community-popup .notify-btn {
width: fit-content;
padding: 10px 30px;
margin-top: 40px;
background: #0044ff;
border: none;
border-radius: 40px;
font-size: 18px;
font-weight: 600;
color: #fff;
cursor: pointer;
transition: 0.2s ease;
}
.community-popup .col-lg-6{
    display: flex;
    flex-direction: column;
}

.community-popup .notify-btn{
    align-self: center;
    margin-top: 20px;
}
.community-popup  .align-btn-center{
  align-items: center;
display: flex;
justify-content: center;
}
.community-popup .error-msg {
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

.community-popup .form-input.error {
    border: 2px solid #dc3545 !important;
}
#popup-email-list-form{
  margin-top: 20px;
}
.error-msg {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}
.hero-btn,.feature-btn,.page-btn,.cta-banner-btn{
  cursor: pointer;
}
.form-input.error {
border: 1px solid #dc3545;
}#newsletter-success h3,#newsletter-success p{
text-align:center;
margin:0px;
padding:0px;

}
#newsletter-success{
  padding:10px 20px;
}