@import url("https://fonts.googleapis.com/css2?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 {
  font-family: "Poppins", sans-serif;
  background: #121a1d;
}
:root {
  --primary-color: #d68240;
  --secondary-color: #ffffff;
  --tertiary-color: #9c9d9b;
}
@font-face {
  font-family: clash-display;
  src: url(../fonts/ClashDisplay-Variable.ttf);
}

body {
  font-family: "clash-display", sans-serif;
}
/* html,
body {
  overflow-x: hidden;
} */

/* common class */

a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}

/* header section */
.custom-container {
  max-width: 1414px !important;
  background: rgba(127, 121, 121, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 15px 50px;
  border-top: 1px solid #746d6d;
  border-bottom: 1px solid #746d6d;
}

.hdr-sec {
  margin: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.nav-logo {
  max-width: 108px;
}
.nav-logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-link {
  margin-right: 30px;
  color: var(--secondary-color);
}
/* ===== Navbar Active & Hover Line Effect ===== */
.navbar-nav .nav-link {
  position: relative;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 5px;
}

/* Underline (hidden by default) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d77b30; /* orange */
  transition: width 0.3s ease;
}
.nav-cart-icon {
  color: white;
  font-size: 25px;
}
.nav-cart-icon:hover {
  color: var(--primary-color);
  transform: translateY(5px);
  transition: 0.5s linear;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d77b30; /* orange text */
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.primary-btn {
  padding: 15px 15px;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 8px;
  font-size: 18px;
  margin-left: 17px;
}
.primary-btn:hover {
  background: var(--secondary-color);
  color: black;
  transition: 0.8s linear;
}
.nav-btn-sec ul li a img {
  max-width: 24px;
}
.nav-btn-sec ul {
  margin: 0;
}
.navbar-toggler {
  background: var(--primary-color);
}
.nav-item.dropdown .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  list-style: none;
  z-index: 100;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.nav-item.dropdown:hover .sub-menu {
  display: flex;
  flex-direction: column;
}

.sub-menu .menu-list {
  color: orange;
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  border-radius: 8px;
  margin: 5px 10px;
  background: black;
}

.sub-menu .menu-list:last-child {
  border-bottom: none;
}

.sub-menu .menu-list:hover {
  background: black;
  transform: translateX(5px);
  border-bottom: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
/* banner section */
.banner-sec {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.banner-wrpr {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
  margin-top: 240px;
}

.title1 {
  font-size: 64px;
  color: var(--secondary-color);
}
span {
  color: var(--primary-color);
}
.banner-wrpr p {
  max-width: 784px;
  font-size: 16px;
  color: var(--tertiary-color);
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 80px;
}
/* contact sectiion */
.contact-sec {
  padding: 150px 0;
}
.contact-hdr {
  font-size: 36px;
  color: var(--secondary-color);
}
.contact-form {
  max-width: 599px;
  margin-top: 60px;
}
.contact-cntn p {
  font-size: 16px;
  color: var(--tertiary-color);
}
.form-label {
  color: var(--secondary-color);
  font-size: 16px;
}

.contact-sec {
  background-color: #0a1214;
  color: #fff;
}

.contact-cntn {
  max-width: 599px;
}

.contact-hdr {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
}

input,
textarea {
  background: #182f31;
  border: none;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  font-size: 14px;
}

input:focus,
textarea:focus {
  border: 2px solid #d77b30;
  box-shadow: 0 0 8px #d77b30;
  background-color: #142222;
}

.btn-submit {
  background-color: var(--primary-color);
  border: none;
  color: var(--secondary-color);
  padding: 15px 20px;
  border-radius: 5px;
  transition: all 0.3s linear;
  font-size: 15px;
  border: 1px solid var(--primary-color);
}

.btn-submit:hover {
  background-color: black;
  color: var(--primary-color);
  transition: 0.6s linear;
}
.c-input-box p {
  font-size: 16px;
  color: var(--tertiary-color);
  /* margin-bottom: 50px; */
}
.c-input-box {
  margin-bottom: 50px;
}
.contact-box {
  max-width: 550px;
  padding: 57px 53px;
  background: #121a1d;
  border-radius: 18px;
  margin-left: 100px;
}
.form-level {
  margin-bottom: 10px;
}
/* map section */

.map-sec {
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-img img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* footer section */
.footer-sec {
  padding: 50px 0;
  background: #040505;
}
.footer-logo {
  max-width: 108px;
}
.footer-cntn-box p {
  max-width: 368px;
  font-size: 16px;
  color: var(--tertiary-color);
  margin: 28px 0;
}
.f-icon-sec {
  transform: translateX(-57px);
}
.pay-icon {
  transform: translateX(-50px);
}
.footer-links li a {
  margin-bottom: 10px;
  color: var(--tertiary-color);
}
.footer-links li a:hover {
  color: var(--primary-color);
}
.footer-hdr {
  transform: translateX(33px);
  margin-bottom: 20px;
}
.footer-top {
  margin-bottom: 20px;
}
.footer-bottom {
  color: var(--tertiary-color);
  border-top: 1px solid grey;
}
.pay-icon li a img:hover {
  transform: translateY(5px);
  transition: 0.5s linear;
}
.footer-bottom-para {
  color: var(--tertiary-color);
  font-size: 16px;
}
.footer-bottom-para:hover {
  color: var(--primary-color);
  transform: translateY(5px);
  transition: 0.5s linear;
}
.policy,
.terms {
  color: var(--tertiary-color);
}
.policy:hover,
.terms:hover {
  color: var(--primary-color);
  transform: translateY(5px);
  transition: 0.5s linear;
  cursor: pointer;
}
.i-sec li a img:hover {
  transform: translateY(5px);
  transition: 0.5s linear;
  background: var(--primary-color);
  border-radius: 50%;
}
.footer-hdr {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-hdr,
.f-last-hdr {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-hdr::after,
.f-last-hdr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: orange;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-hdr:hover::after,
.f-last-hdr:hover::after {
  width: 100%;
}

.footer-hdr:hover,
.f-last-hdr:hover {
  color: orange;
}
.footer-links li a:hover {
  transform: scale(1.1);
  color: orange;
}
/* nav-media section */

@media (max-width: 991.98px) {
  .navbar-toggler {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .navbar-collapse {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: none !important;
  }

  .navbar-collapse.collapse.show {
    display: flex !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: inline-block;
    padding: 10px;
    color: white;
    text-align: center;
  }

  .nav-cart-icon {
    display: none;
  }

  .nav-btn-sec .login-btn {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 10px 35px !important;
    transform: translateX(-28px);
  }
}

@media screen and (max-width: 576px) {
  .navbar-nav .nav-item {
    width: 100%;
    transform: translateX(18px);
  }

  .nav-btn-sec .login-btn {
    transform: translateX(-15px);
  }
}

/* banner media section */
@media screen and (max-width: 746px) {
  .title1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 576px) {
  .title1 {
    font-size: 32px;
  }
  .banner-wrpr p {
    font-size: 12px;
  }
}

/* footer media section */
@media screen and (max-width: 1400px) {
.pay-icon{
  transform: translateX(-45px);
}
}
@media screen and (max-width: 1200px) {
.pay-icon li a img{
  transform: translateX(9px);
  margin-left: 5px;
}
}
@media screen and (max-width: 993px) {
  .footer-cntn-box {
    margin-bottom: 30px;
    text-align: center;
  }
  .second-footer-links li a {
    transform: translateX(-12px);
  }
  .footer-hdr,
  .f-last-hdr {
    transform: none;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-cntn-box p {
    margin: 20px auto;
  }

  .f-icon-sec,
  .pay-icon {
    transform: none;
    justify-content: center !important;
    /* gap: 15px; */
  }

  .footer-bottom-cntn-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-box {
    flex-direction: row;
    justify-content: center;
  }
  .user-link-hdr {
    transform: translateX(5%);
  }
  .footer-para {
    text-align: center;
  }
  .f-icon-sec li a {
    margin-left: 10px;
  }
}

@media screen and (max-width: 746px) {
  .footer-sec {
    padding: 40px 0;
  }

  .footer-cntn-box {
    text-align: center;
  }

  .footer-hdr,
  .f-last-hdr {
    transform: none;
  }

  .f-icon-sec,
  .pay-icon {
    justify-content: center !important;
    transform: none;
    flex-wrap: wrap;
    /* gap: 10px; */
  }

  .footer-links li a {
    display: block;
    margin-bottom: 8px;
  }

  .footer-bottom-cntn-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 10px; */
    padding-top: 20px;
  }

  .footer-bottom-box {
    flex-direction: column;
    /* gap: 8px; */
  }
  .user-link-hdr {
    transform: translateX(3%);
  }
  .footer-contact-hdr {
    transform: translateX(3%);
  }
  .terms {
    margin-top: 10px;
    transform: translateX(-12%);
  }
  .footer-para {
    text-align: center;
    margin: 0 auto;
  }
  .footer-logo {
    transform: translateX(13%);
  }
}
/* -contact media section- */

@media screen and (max-width: 1400px) {
  .contact-cntn {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    transform: translateX(4%);
  }
  .contact-box {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .contact-sec {
    padding: 40px 15px;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-cntn,
  .contact-box {
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .contact-hdr {
    font-size: 24px;
    text-align: center;
  }

  .contact-para {
    text-align: center;
    font-size: 14px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  input,
  textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .btn-submit {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-box .c-input-box {
    margin-bottom: 20px;
  }

  .c-input-box h3 {
    font-size: 18px;
  }

  .c-input-box p {
    font-size: 14px;
  }
}
/* map media section */
/* @media (max-width: 1200px) {
  .map-sec {
    padding: 10px; 
  }

  .map-img img {
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
  }
} */
/* -log in button- */
.login-btn {
  padding: 12px 28px;
  background-color: #d77b30;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #e48f4a;
}

/*  Modal Overlay  */
.modal-overlay {
  display: none;
  position: fixed;
  top: 217px;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content {
  position: relative;
  background-color: #0e1616;
  border-radius: 12px;
  width: 70%;
  max-width: 900px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
  bottom: 20%;
}
.close-btn {
  /* position: absolute; */
  /* top: 15px;
  right: 15px; */
  margin-left: auto;
  background: transparent;
  color: #e26b11;
  font-size: 16px;
  border: 4px solid #d5630b;
  border-radius: 50%;
  width: 28px;
  height: 30px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgb(243, 204, 160);
  color: #e26b11;
  border-color: #b25f1f;
}

/* ===== Modal Body ===== */
.modal-body {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.left {
  flex: 1;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h2 {
  color: white;
  margin-bottom: 20px;
}

label {
  color: white;
  display: block;
  margin-top: 10px;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  background-color: #142222;
  color: white;
}

.forgot {
  display: block;
  margin: 10px 0;
  color: #d77b30;
  text-decoration: none;
  font-size: 14px;
}

.submit-btn {
  background: #d77b30;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.submit-btn:hover {
  background: white;
  color: #d77b30;
  transition: 0.5s linear;
}
.social {
  display: flex;
  justify-content: space-around;
  /* margin-top: 15px; */
}

.facebook,
.google {
  background: none;
  border: 1px solid #555;
  color: white;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
}
.social .facebook {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  width: 200px;
  margin-bottom: 10px;
}

.social .facebook img {
  width: 20px;
  height: 20px;
}

.submit-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
input:focus {
  outline: none;
  border: 2px solid #d77b30;
  box-shadow: 0 0 8px #d77b30;
  background-color: #142222;
}
.social {
  margin-top: 10px;
}
/* log in media */
@media (max-width: 993px) {
  /* Center the modal properly */
  .modal-overlay {
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .modal-content {
    width: 90%;
    padding: 15px;
    position: relative;
    overflow: visible;
    margin: 0 auto;
    /* top: 0; */
    transform: none;
  }

  .modal-body {
    flex-direction: column;
    gap: 15px;
  }

  .left,
  .right {
    flex: none;
    width: 100%;
  }

  .left {
    position: relative;
    z-index: 1;
  }

  .left img {
    height: 220px;
    border-radius: 8px;
    display: block;
    width: 50%;
    margin: 0 auto;
  }

  .right {
    padding: 10px 0;
    text-align: center;
    z-index: 2;
    position: relative;
  }

  .right h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  form {
    width: 100%;
  }

  label {
    text-align: left;
    font-size: 14px;
  }

  input {
    font-size: 14px;
    padding: 8px;
  }

  .submit-sec {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .forgot {
    order: 2;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    max-width: 200px;
  }

  .social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .social .facebook {
    width: 90%;
    justify-content: center;
    font-size: 14px;
  }

  .social .facebook img {
    margin-left: 8px;
  }

  /*  Close Button  */
  .close-btn {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 18px;
    z-index: 9999 !important;
    background: #0e1616;
    border: 3px solid #d5630b;
    color: #e26b11;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-btn:hover {
    background: rgb(243, 204, 160);
    color: #e26b11;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .left img {
    width: 308px;
    max-width: 100%;
  }
}

/* pre loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  z-index: 9999;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.burger {
  width: 180px;
  animation: bounce 2s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

.steam {
  position: absolute;
  top: 35%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

.steam span {
  width: 10px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(4px);
  animation: steamRise 2s infinite ease-in-out;
}

.steam span:nth-child(2) {
  animation-delay: 0.5s;
}
.steam span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes steamRise {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-60px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  color: rgb(252, 220, 199);
  font-weight: 500;
  font-size: 25px;
  display: flex;
  align-items: baseline;
}

.words {
  overflow: hidden;
  position: relative;
  height: 30px;
  display: inline-block;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #e6921e;
  animation: spin_4991 4s infinite;
  margin-left: 10px;
}

@keyframes spin_4991 {
  10% {
    transform: translateY(-102%);
  }
  25% {
    transform: translateY(-100%);
  }
  35% {
    transform: translateY(-202%);
  }
  50% {
    transform: translateY(-200%);
  }
  60% {
    transform: translateY(-302%);
  }
  75% {
    transform: translateY(-300%);
  }
  85% {
    transform: translateY(-402%);
  }
  100% {
    transform: translateY(-400%);
  }
}
/* log in btn */
.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-53 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: 1px solid;
  border-radius: 999px;
  display: block;
  overflow: hidden;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-53:hover .original {
  transform: translateY(100%);
}

.btn-53 .letters {
  display: inline-flex;
}

.btn-53 span {
  opacity: 0;
  transform: translateY(-15px);
  transition:
    transform 0.2s cubic-bezier(0.87, 0, 0.13, 1),
    opacity 0.2s;
}

.btn-53 span:nth-child(2n) {
  transform: translateY(15px);
}

.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
  transition-delay: 0.1s;
}
.btn-53:hover span:nth-child(3) {
  transition-delay: 0.2s;
}
.btn-53:hover span:nth-child(4) {
  transition-delay: 0.3s;
}
.btn-53:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.login-btn {
  background: orange;
}

.login-btn:hover {
  background-color: #000;
  border-color: #000;
  transition: 0.5s linear;
  border: 1px solid rgb(231, 136, 11);
}
.login-btn {
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.btn-53 .original {
  background: var(--primary-color);
  color: white;
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition:
    transform 0.3s cubic-bezier(0.87, 0, 0.13, 1),
    background-color 0.5s ease;
}

.btn-53:hover .original {
  transform: translateY(100%);
  background-color: #000;
}

.btn-53 span {
  color: orange;
  opacity: 0;
  transform: translateY(-15px);
  transition:
    transform 0.3s cubic-bezier(0.87, 0, 0.13, 1),
    opacity 0.3s ease;
}

.btn-53 span:nth-child(2n) {
  transform: translateY(15px);
}

.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
  transition-delay: 0.1s;
}
.btn-53:hover span:nth-child(3) {
  transition-delay: 0.2s;
}
.btn-53:hover span:nth-child(4) {
  transition-delay: 0.3s;
}
.btn-53:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

/* nav media section */
@media screen and (max-width: 576px) {
  .navbar-collapse {
    overflow: visible !important;
    position: relative;
  }

  .nav-item.dropdown {
    position: relative;
    z-index: 1000;
  }

  .nav-item.dropdown .sub-menu {
    position: fixed !important;
    /* top: 50%; */
    top: 77%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    z-index: 99999 !important;
    width: 85%;
    max-width: 320px;
    padding: 15px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: popupFade 0.3s ease forwards;
  }
}

/* Full page dark overlay */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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