:root {
  --color-white: #ffffff;
  --color-black: 0, 0, 0;
  --color-black1: #000a21;
  --color-black2: #4c5363;
  --color-aquaDark: #00778a;
  --color-aquaDarkHover: #005f6f;
  --color-green: #c1e4cd;
  --color-skyBlue: #bfe6f3;
  --color-yellow: #f6f6bb;
  --color-orange: #feebe1;
  --font-general: "GeneralSans", sans-serif;
}

@font-face {
  font-family: "GeneralSans";
  src: url("/assets/fonts/GeneralSans-Regular.woff") format("woff2"),
    url("/assets/fonts/GeneralSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GeneralSans";
  src: url("/assets/fonts/GeneralSans-Medium.woff") format("woff2"),
    url("/assets/fonts/GeneralSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GeneralSans";
  src: url("/assets/fonts/GeneralSans-Semibold.woff") format("woff2"),
    url("/assets/fonts/GeneralSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-general);
  color: var(--color-black2);
  background-color: var(--color-white);
  background-image: url("/assets/images/bg-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: min(60px, 5vw) 60px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font: 600 70px / 1.36 var(--font-general);
  color: var(--color-black1);
}

h2 {
  font: 600 50px / 1.36 var(--font-general);
  color: var(--color-black1);
}

h3 {
  font: 600 28px / 1.358 var(--font-general);
  color: var(--color-black1);
}

p {
  font: 400 30px / 1.37 var(--font-general);
  color: var(--color-black2);
  margin: 0;
}

.btn-primary {
  display: inline-block;
  padding: 16px 60.5px;
  font: 500 22px / 1 var(--font-general);
  color: var(--color-white);
  background-color: var(--color-aquaDark);
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
  box-shadow: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: var(--color-aquaDarkHover);
}
.btn-squre {
  border-radius: 0;
}

.section-gap {
  padding-bottom: 60px;
}

.nexaaura-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  margin-bottom: 40px;
}

img {
  max-width: 100%;
}

.logo-wrap a {
  display: inline-flex;
}

/* hero section */
.hero-section {
  display: flex;
  align-items: center;
  gap: 60px;
}
.img-wrap {
  width: 287px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-section .content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 31px;
}
.hero-section h1.hero-title {
  max-width: 80%;
}
.hero-section .btn-primary {
  width: 100%;
  text-align: center;
  cursor: inherit;
}
.hero-section .btn-primary:hover {
  background-color: var(--color-aquaDark);
}
/* hero section end */

/* offer section */
.nexaaura-offers-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nexaaura-offer-item {
  padding: 24px;
  background-color: var(--color-green);
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.nexaaura-offer-item:nth-child(2) {
  background-color: var(--color-skyBlue);
}
.nexaaura-offer-item:nth-child(3) {
  background-color: var(--color-yellow);
}
.nexaaura-offer-item:nth-child(4) {
  background-color: var(--color-orange);
}
.nexaaura-offer-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  color: var(--color-black1);
}

.nexaaura-offer-item p {
  font: 400 20px / 1.35 var(--font-general);
  color: var(--color-black1);
}
/* offer section end  */

/* stay updated section */
.nexaaura-stay-updated {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.nexaaura-stay-updated .nexaaura-title-wrap {
  margin: 0;
}
p.stay-updated-text {
  max-width: 56%;
  text-align: center;
}
/* stay updated section end */

/* notify me popup & overlay css start */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hidden {
  display: none;
}

.close-btn {
  position: absolute;
  top: 26px;
  right: 32px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: grey;
  line-height: 30px;
  padding: 0;
}
.form-box {
  position: relative;
  background-color: var(--color-white);
  border-radius: 50px;
  padding: 3.125rem;
  max-width: 36.063rem;
  width: 100%;
  z-index: 1;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.popup-overlay.active .form-box {
  opacity: 1;
  transform: scale(1);
}
.popup-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.popup-title {
  font: 600 28px / 1.36 var(--font-general);
  color: var(--color-black1);
}
.popup-title-wrap p {
  font: 400 16px / 1.36 var(--font-general);
  color: var(--color-black2);
}
form#notifyForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
}
.input-group label {
  font: 500 14px / 1.36 var(--font-general);
  color: var(--color-black1);
}
.input-group input {
  border: 1px solid #dbdde0;
  border-radius: 10px;
  font: 400 14px / 1.36 var(--font-general);
  color: var(--color-black2);
  padding: 14px;
  background-color: transparent;
}
.input-group input:focus,
.input-group input:focus-visible {
  outline: none;
  box-shadow: none;
}

#submitBtn {
  margin-top: 24px;
  width: 100%;
}
.error-message {
  font: 400 14px / 1.36 var(--font-general);
  color: #b92121;
}
.no-scroll {
  overflow: hidden;
}

/* notify me popup & overlay css end */

/* footer css start */

.footer-linklist {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.footer-linklist a {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1;
  font-weight: 500;
  color: var(--color-aquaDark);
}

.footer-linklist a:hover {
  color: var(--color-aquaDarkHover);
}

/* footer css end */

/* responsive styles */
@media (max-width: 1220px) {
  .hero-section h1.hero-title {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: min(30px, 5vw) 30px;
  }
}
@media (max-width: 1199px) {
  .nexaaura-offers-list {
    grid-template-columns: repeat(2, 1fr);
  }
  p.stay-updated-text {
    max-width: 80%;
  }
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-section .content-wrap {
    text-align: center;
    align-items: center;
  }
  .nexaaura-offers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hero-section h1.hero-title {
    font-size: 40px;
  }
  .hero-section .content-wrap {
    gap: 20px;
  }
  .nexaaura-offers-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .nexaaura-offer-item {
    padding: 16px;
  }
  .nexaaura-offer-item img {
    width: 30px;
    height: 30px;
  }
  h2 {
    font-size: 30px;
  }
  p {
    font-size: 20px;
  }
  img.logo {
    width: 100%;
    max-width: 200px;
  }
  .btn-primary {
    padding: 12px 30px;
    font-size: 18px;
  }
  header.section-gap {
    padding-bottom: 40px;
  }
  .hero-section {
    gap: 40px;
  }
  .form-box {
    max-width: 90%;
  }
  .input-group {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .form-box {
    padding: 20px;
    border-radius: 20px;
  }
  .popup-title-wrap {
    gap: 10px;
  }
  .close-btn {
    top: 13px;
    right: 17px;
    font-size: 30px;
    line-height: 30px;
  }
  #submitBtn {
    margin-top: 0;
  }
}
