@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  scroll-behavior: smooth;
  position: relative;
  z-index: -1;
}
/* #luxy{
  position: relative;
  z-index: -1;
} */
main {
  position: relative;
  z-index: -1;
}
body,
html {
  overflow-x: hidden;
  width: 100%;
}
a {
  display: inline-block;
  text-decoration: none;
}
.footer-row {
  border-top: 1px solid var(--social-color);
  margin-top: 70px;
}
.footer-col {
  margin: 28px 0;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.home-col {
  position: relative;
}
.home-row {
  /* position: relative; */
}
.services-col {
  margin: 0 auto;
}
.home-col {
  margin-left: auto;
}
body {
  font-family: "Poppins", sans-serif;
}
:root {
  --primary-color: #242424;
  --pagination-color: #424242;
  --border-color: #ffcc00;
  --back-ground-color: #ffbc44;
  --hover-color: #2662fd;
  --secondary-color: #ffffff;
  --header-color: #80a3ff;
  --card-background-color: #c6c6c6;
  --text-color: #141414;
  --email-background-color: #f4f0f0;
  --social-color: #999999;
  --btn-color: #ccdaff;
  --slider-color: #ffbf00;
  --offcanvsbckground-color: #c3d4ff;
  --figma-blue-50: #8fb1fe;
  --review-color: #d9d9d9;
  --review-background-color: #ffbc44;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
}


/* title */

/* Splash Background */
#splash-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* Smoke Effect */
/* Background */
#splash-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #141414, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* Golden Smoke */
.gold-smoke {
  position: absolute;
  inset: -60%;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255, 195, 120, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 40%,
      rgba(255, 165, 60, 0.1),
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(255, 215, 130, 0.14),
      transparent 50%
    );
  filter: blur(70px);
  animation: goldSmoke 14s infinite ease-in-out;
}

/* Content */
.splash-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeIn 1.4s ease;
}

.splash-content img {
  width: 90px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 15px rgba(255, 190, 100, 0.8));
  animation: goldGlow 3s infinite ease-in-out;
}

.splash-content h1 {
  font-size: 36px;
  letter-spacing: 3px;
  margin: 0;
}

.splash-content p {
  font-size: 14px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  color: #f5d18a;
}

/* Animations */
@keyframes goldSmoke {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12%, -10%) scale(1.15);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(255, 190, 100, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 26px rgba(255, 210, 140, 1));
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 190, 100, 0.4));
  }
}

/* Golden Loader */
.gold-loader {
  width: 140px;
  height: 3px;
  margin: 22px auto 0;
  background: rgba(255, 215, 130, 0.25);
  overflow: hidden;
  border-radius: 5px;
}

.gold-loader span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffd27d,
    #ffb347,
    #ffd27d,
    transparent
  );
  animation: goldLine 1.6s infinite ease-in-out;
}

/* Loader Animation */
@keyframes goldLine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* splash-screen end here */
/* nav-sec */
.header-sec {
  position: fixed;
  width: 100%;
  /* overflow-x: hidden; */
  top: 0;
  z-index: 2;
  padding: 28px 0;
  background: var(--secondary-color);
  box-shadow:
    0px 8px 18px rgba(0, 0, 0, 0.2),
    0px 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.nav-hide {
  transform: translateY(-100%);
}
.nav-logo {
  max-width: 52px;
  margin-left: 20px;
}
.nav-logo > a {
  width: 100%;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-link {
  padding: 0 !important;
  position: relative;
  transition: color 0.6s ease;
  padding: 5px 10px;
  color: var(--primary-color);
  cursor: pointer;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 1%;
  top: 100%;
  width: 0%;
  height: 2px;
  background-color: var(--border-color);
  transition: width 0.35s ease;
  pointer-events: none;
}
/* hover */
.nav-link:hover {
  color: var(--border-color);
}
.nav-link:hover::after {
  width: 100%;
}
/* active (clicked / current page) */
.nav-link.active {
  color: var(--border-color);
}
.nav-link.active::after {
  width: 100%;
}
.drop-link {
  color: var(--primary-color);
  /* padding-right: 22px; */
}
.drop-link > .drop-down {
  font-size: 12px !important;
}

.nav-item {
  margin: 0 20px;
  height: 27px;
}
.offcanvas > ul {
  /* max-width: 558px;
  height: 67px;
  border-radius: 100px; */
  /* background: var(--card-background-color); */
  margin: 0 auto 0 24px;
  display: flex;
  align-items: center;
}
.offcanvas {
  flex-direction: row;
  align-items: center;
}
nav,
.navbar {
  border: none;
}
.navbar {
  border-top: 1px solid var(--primary-color) !important;
}
.primary-btn {
  padding: 16px 36px;
  border-radius: 8px !important;
  background: var(--hover-color);
  border-radius: 63px;
  color: var(--secondary-color);
  /* margin: 12px 20px 12px 0; */
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}
.primary-btn::before,
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.primary-btn::before {
  left: -51%;
}
.primary-btn::after {
  right: -51%;
}
.primary-btn:hover::before {
  left: 0;
}
.primary-btn:hover::after {
  right: 0;
}
.primary-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.nav-top,
.nav-top > ul {
  display: flex;
  align-items: center;
}
.social-list {
  margin-left: auto;
  max-width: 238px;
}
.nav-top-list > li {
  margin-left: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--hover-color);
}
.nav-border {
  border: none !important;
}
.social-list > li {
  margin: 0 7.5px;
}
.nav-top-link {
  color: var(--hover-color);
  background: transparent;
}
.social-link {
  color: var(--primary-color);
  transition: 0.6s all linear;
  font-size: 20px;
}
.nav-top-link > span {
  margin-left: 15px;
}
.nav-top-link:hover {
  color: var(--border-color);
}
.social-link:hover {
  transform: translateY(-30%);
}
.follow-link {
  width: 77px;
  font-size: 16px;
}
.nav-form {
  position: relative;
  margin: 0 24px 0 0;
}
#search {
  max-width: 208.97px;
  padding: 12px 0 12px 35px;
  border-radius: 8px;
  border: none;
  outline: 1px solid var(--primary-color);
}
.nav-location {
  position: relative;
  display: flex;
  align-items: center;
  width: 196.19px;
  padding: 12px 12px;
  height: 45px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background: var(--secondary-color);
  margin: 0 27px 0 0;
}
.social-list {
  padding: 0;
}
.location-text {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}
/* Select covers entire area */
.location-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* invisible but clickable */
  cursor: pointer;
}

/* Icons stay visible */
.nav-location i {
  pointer-events: none; /* VERY IMPORTANT */
}

.dropdown-icon {
  margin-left: auto;
}
.none {
}
.serach-icon {
  position: absolute;
  top: 25%;
  left: 5%;
}
.form-drop{
      width: 556px;
    height: 48px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding-left: 20px;
    margin: 0 auto 24px;
    background: var(--email-background-color);
}
/* media-quarry */

@media screen and (max-width: 1330px) {
  .nav-form {
    margin-right: auto;
  }
  .nav-item {
    margin: 0 10px;
  }
  .nav-top-link {
    font-size: 14px;
  }
  .social-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .nav-location {
    margin-right: 10px;
    padding: 8px;
  }
  .nav-link {
    font-size: 14px;
  }
  .drop-link {
    font-size: 14px;
  }
  .nav-top-list > li {
    padding-right: 5px;
    margin-left: 5px;
  }
  .nav-logo {
    margin: 0;
  }
  .offcanvas > ul {
    margin: 0 0 0 10px;
  }
  .primary-btn {
    padding: 14px 24px;
  }
  #search {
    max-width: 196px;
  }
  .form-drop{
    width: 408px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-top-link > span {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-sec {
    padding: 15px 0;
  }
  .offcanvas {
    flex-direction: column;
    text-align: center;
    /* position: relative; */
    z-index: 99;
    background: var(--offcanvsbckground-color);
  }
  .offcanvas-backdrop {
    z-index: 9;
  }
  .offcanvas .dropdown-menu {
    position: absolute;
    z-index: 999;
  }
  .offcanvas-header {
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--hover-color);
  }
  .offcanvas > ul {
    background: var(--offcanvsbckground-color);
    margin: 0 !important;
    height: auto;
    border-radius: 0;
  }
  .nav-link {
    margin: 0 0 10px;
  }
  .drop-link {
    margin: 0 0 10px;
  }
  .nav-item {
    margin: 0;
  }
  .nav-btn {
    text-align: center;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232662fd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .nav-top-list > li {
    border: none;
  }
  .nav-form {
    margin: 10px auto 0;
  }

  .navbar-toggler {
    padding: 0;
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav-top-link > span {
    display: none;
  }
  .social-list > li {
    margin: 0 5px;
  }
  .nav-top-list > li {
    margin-right: 22px;
  }
}
@media screen and (max-width: 576px) {
  .nav-logo {
    max-width: 30px;
  }
    .form-drop{
    width: 250px;
  }
}
@media screen and (max-width: 480px) {
  .social-list > li {
    margin: 0 2px;
  }
  .nav-top {
    margin: 0 auto;
  }
  .nav-top-list > li {
    margin-right: 5px;
  }
}
/* nav-sec-end */

/* sing-up-form */
.modal-dialog{
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding: 0 15px;
  border-radius: 20px;
}
.modal-content {
  max-width: 700px;
  height: 750px;
  border-radius: 0;
  background: var(--secondary-color);
  /* text-align: center; */
  transition: all 0.4s ease;
}
.right-modal{
 background: linear-gradient(
  to right,
  #2b57ff,
  #4a74ff,
  #6f93ff,
  #8fb0ff
);
display: flex;
align-items: center;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
/* width: 50%; */
}
.left-modal{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.log-left-cont{
   border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.log-right-modal{
  border-top-left-radius: 20px ;
  border-bottom-left-radius: 20px ;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.modal-right-cont{
  width: 100%;
}
.modal-body-right{
  height: 45px !important;
}
.modal-cont{
  text-align: center;
  color: var(--secondary-color);
}
.input-cont {
  max-width: 556px;
  margin: 0 auto;
  /* display: flex; */
}
.modal-title {
  /* margin: 0 0 0 auto; */
  text-align: center;
}
/* .modal-col{
  display: flex;
  flex-direction: column;
} */
#modal-email {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  margin: 0 auto 24px;
  padding-left: 20px;
  background: var(--email-background-color);
}
#modal-password {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  margin: 0 auto 24px;
  padding-left: 20px;
   background: var(--email-background-color);
}
#confirm-password {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 20px;
  padding-left: 20px;
  margin: 0 auto 24px;
   background: var(--email-background-color);
}
#address {
  width: 556px;
  height: 48px;
  border: none;
  outline: none;
  margin-bottom: 24px;
  border-radius: 20px;
  padding-left: 20px;
   background: var(--email-background-color);
}
.modal-btn {
  padding: 14.5px 46px;
  background: var(--hover-color);
  border-radius: 20px;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.modal-btn::before,
.modal-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.modal-btn::before {
  left: -51%;
}
.modal-btn::after {
  right: -51%;
}
.modal-btn:hover::before {
  left: 0;
}
.modal-btn:hover::after {
  right: 0;
}
.modal-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.modal-header {
  border: none;
  flex-direction: column;
  text-align: center;
}
.log-modal-body{
  height: 400px;
  flex: 0;
}
.log-modal-header{
  margin-top: 80px;
}
.modal-right-header{
  margin-top: 150px;
}
.log-modal-right-header{
  margin-top: 200px !important;
}
.right-btn-close{
 text-align: right;
}
.modal-cont>p{
  max-width: 306px;
  margin: 40px 0 0;
}
.apple-btn {
  display: flex;
  align-items: center;
  width: 266px;
  height: 48px;
  justify-content: center;
  border-radius: 20px;
  outline: 1px solid #989898;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.apple-btn::after,
.apple-btn::before {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.4s all ease;
}
.apple-btn::after {
  right: -50%;
}
.apple-btn::before {
  left: -50%;
}
.apple-btn:hover::after {
  right: 0;
}
.apple-btn:hover::before {
  left: 0;
}
.apple-btn:hover{
  color: var(--secondary-color);
}
.apple-img {
  width: 20px;
  margin: 0 5px 0 0;
}
.apple-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.google-btn {
  display: flex;
  align-items: center;
  width: 266px;
  height: 48px;
  justify-content: center;
  border-radius: 20px;
  outline: 1px solid #989898;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
}
.google-btn::after,
.google-btn::before {
  content: "";
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.google-btn::after {
  right: -50%;
}
.google-btn::before {
  left: -50%;
}
.google-btn:hover::after {
  right: 0;
}
.google-btn:hover::before {
  left: 0;
}
.google-btn:hover{
  color: var(--secondary-color);
}
.log-btn{
  padding: 14.5px 46px;
  border-radius: 20px;
  background: var(--hover-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--secondary-color);
  transition: all 0.4s ease;
  border: none;
  outline: none;
}
.log-btn::after,
.log-btn::before{
  position: absolute;
  content: '';
  top: 0;
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  transition: all 0.4s ease;
  z-index: -1;
}
.log-btn::after{
  right: -51%;
}
.log-btn::before{
  left: -51%;
}
.log-btn:hover::after{
  right: 0;
}
.log-btn:hover::before{
  left: 0;
}
.log-btn:hover {
  color: var(--hover-color);
}
.log-modal-btn{
  padding: 14.5px 68.5px;
  background: var(--hover-color);
  color: var(--secondary-color);
  border-radius: 20ex;
  position: relative;
  border: 0;
  outline: 0;
  overflow: hidden;
  z-index: 1;
}
.log-modal-btn::after,
.log-modal-btn::before{
  content: '';
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  z-index: -1;
  background: var(--secondary-color);
  border: none;
  outline:  none;
}
.log-modal-btn::after{
  right: -51%;
}
.log-modal-btn::before{
  left: -51%;
}
.log-modal-btn:hover::after{
  right: 0;
}
.log-modal-btn:hover::before{
  left: 0;
}
.log-modal-btn:hover{
  color: var(--hover-color);
  outline: 1px solid var(--hover-color) !important;
}
#sign-box{
  display: flex;
  width: 100%;
}
.btn-cont{
  text-align: center;
  margin: 24px 0 ;
}
.input-cont-para {
  max-width: 271px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  margin-top: 24px;
}
.input-cont-para > p {
  margin-right: 8px;
  max-width: 216px;
}
.input-cont input:focus {
  border-color: #5b7cfa;
  box-shadow: 0 0 0 2px rgba(91, 124, 250, 0.2);
}
.btn-close{
  padding: 10px 10px;
}
.input-cont input:focus {
  border-color: #4f46e5;
}
.dash-drop::after {
  display: none !important;
}

.form-drop {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: #f5f7fb;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  min-width: 200px;
}

/* Right arrow icon */
.drop-icon {
  font-size: 25px;
  transition: transform 0.3s ease;
}

/* Rotate when dropdown opens */
.dropdown.show .drop-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dash-menu {
  border-radius: 12px;
  padding: 8px 0;
}

.dash-menu .dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
}
/* Error message */
.error {
  color: #dc2626;
  font-size: 12px;
  margin-bottom: 4px;
  display: block;
}
.dropdown-menu {
  background: var(--header-color);
}
.dropdown-item {
  color: var(--secondary-color);
}
.dropdown-divider {
  display: none;
}

/* media-quarry */

@media screen and (max-width: 1200px) {
  /* .banner-img {
   max-width: 700px;
  } */
 
   #modal-email,
   #modal-password,
   #confirm-password,
   #address{
    width: 406px;
   }
   .input-cont{
    max-width: 406px;
    margin: 0 auto;
   }
   .btn-cont{
    margin-top: 32px;
   }
   .apple-btn,
   .google-btn{
    width: 170px;
   }
  .card-text {
    margin: 10px 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .modal-dialog{
    flex-direction: column-reverse;
    align-items: center;
  }
   .modal-content{
    max-width: 600px;
  }
    .right-modal{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
  }
  .left-modal{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
  }
  .log-left-cont{
   border-top-left-radius: 20px !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
}
.log-right-modal{
  border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 0;
}
}

@media screen and (max-width: 576px) {
  .play-img {
    margin: 0 auto 10px;
  }
  .apple-img {
    margin: 0 auto;
  }
  .modal-content {
    max-width: 400px;
    height: 580px;
    margin: 0 auto;
  }
  #modal-email {
    max-width: 250px;
    margin-bottom: 10px;
  }
  #modal-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #confirm-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #address {
    max-width: 250px;
    margin-bottom: 10px;
  }
  .modal-btn {
    padding: 16px 26px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .input-cont {
    max-width: 260px;
  }
  .input-cont-para > p {
    font-size: 14px;
    margin: 0 auto;
  }
  .log-btn {
    font-size: 14px;
  }
  .apple-btn {
    width: 120px;
    height: 45px;
  }
  .google-btn {
    width: 120px;
    height: 45px;
  }
  .apple-img {
    margin: 0 10px 0 0;
  }
  /* .btn-cont {
    max-width: 255px !important;
  } */
  .input-cont-para {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .social-list > li {
    margin: 0 2px;
  }
  .nav-top {
    margin: 0 auto;
  }
  .nav-top-list > li {
    margin-right: 5px;
  }
}
/* singup-form-end */

