* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  background: linear-gradient(135deg, #000f10 0%, #001a1a 50%, #002224 100%);
}
/* age modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  color: #000;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#yesBtn {
  background: #4caf50;
  color: #fff;
}

#yesBtn:hover {
  background: #3e8e41;
}

#noBtn {
  background: #f44336;
  color: #fff;
}

#noBtn:hover {
  background: #d32f2f;
}
/* Warning section */
.warn {
  font-size: 16px;
  background-color: #000;
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
/* NavBars section */
.nav-bar {
  position: relative;
  background-color: #00f8f8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 20px;
  min-height: 80px;
}

.nav-bar div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.nav-bar a {
  color: #1d1f21;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 28px;
}

.nav-bar img {
  height: 40px;
  margin-right: 20px;
  vertical-align: middle;
}

.mobile-nav-bar {
  display: none;
  position: relative;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: white;
  z-index: 999;
}

.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .line {
  height: 4px;
  width: 100%;
  background: #001a1a;
  border-radius: 4px;
  transition: 0.35s ease;
}

.hamburger.active .top {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .middle {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active .bottom {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger-content {
  position: absolute;
  top: -120vh;
  left: 50%;

  height: 0;
  width: 0;
  background: #00f8f8;
  padding: 20px 0;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  transition: 0.5s ease;
  z-index: 1000;
}

.hamburger-content a {
  text-decoration: none;
  font-size: 20px;
  color: #001a1a;
}

.hamburger-content.active {
  left: 0;
  height: 100vh;
  width: 100%;
  top: 70px; /*70px navbari tak*/
}
/* Slider section Bunner */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-inner {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 800px;
}

.slider-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-arrow div {
  font-size: 80px;
  color: #003536;
  cursor: pointer;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95%;
  margin: 0 auto;
  display: flex;
}

.dots .active {
  background-color: #bbb;
}

.dots div {
  height: 15px;
  width: 15px;
  background-color: #717171;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-item a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00f8f8;
  color: #001a1a;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 900;
  font-size: 70px;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.slider-item a:hover {
  transform: scale(1.2) translateX(-40%);
}
/* Prroducts section */
.products {
  padding: 40px 5%;
  margin: 0 auto;
  text-align: center;
  max-width: 1440px;
}

.products h1 {
  font-size: 52px;
  color: #00f8f8;
  margin-bottom: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00f8f8, 0 0 20px #00f8f8, 0 0 30px #009999;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px #00f8f8, 0 0 25px #00f8f8, 0 0 40px #009999;
  }
  50% {
    text-shadow: 0 0 15px #00ffff, 0 0 35px #00cccc, 0 0 55px #00bbbb;
  }
}

.productc-cont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.product-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
}

.product-item:hover {
  transform: translateY(-15px) scale(1.04);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 45px rgba(0, 255, 255, 0.25);
}

.product-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-item p {
  margin: 15px 0 5px;
  font-size: 20px;
  color: white;
  font-weight: 600;
  min-height: 50px;
}

.product-item h2,
.desc-title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(15px);
  animation: titleFadeIn 0.6s ease forwards, neonPulse 2s ease-in-out infinite;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.7), 0 0 8px rgba(0, 255, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 255, 255, 1), 0 0 20px rgba(0, 255, 255, 0.8),
      0 0 30px rgba(0, 100, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.7), 0 0 8px rgba(0, 255, 255, 0.4);
  }
}
.product-item span {
  font-size: 20px;
  color: #00f8f8;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.product-item a {
  display: inline-block;
  padding: 15px 25px;
  background: linear-gradient(
    90deg,
    #08ff08,
    #50e3fc,
    #bc13fe,
    #03a9f4,
    #0ff0fc
  );
  background-size: 400% 400%;
  color: white;
  font-size: 22px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.4);
  animation: gradientFlow 4s linear infinite;
}
.product-item a::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 40%;
  height: 20%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  filter: blur(35px);
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #08ff08,
    #50e3fc,
    #bc13fe,
    #03a9f4,
    #0ff0fc,
    #08ff08
  );
  background-size: 400% 400%;
  transition: opacity 0.4s ease;
}

.product-item a:hover::after {
  opacity: 1;
  animation: shadowPulse 1.5s ease-in-out infinite,
    gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: -400% 50%;
  }
}

@keyframes shadowPulse {
  0% {
    filter: blur(25px);
    opacity: 0.6;
  }
  50% {
    filter: blur(40px);
    opacity: 1;
  }
  100% {
    filter: blur(25px);
    opacity: 0.6;
  }
}
@keyframes gradientFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 400% 50%;
  }
}
/* desc section */
.desc {
  margin: 40px auto;
  max-width: 768px;
}

.desc-cont {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.desc-item {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.1);
  color: white;
}
.desc-item:first-child {
  display: block;
}

.desc.open .desc-item {
  display: block;
}

.desc-item h1 {
  text-align: center;
  margin-bottom: 20px;
}

.desc-title {
  text-align: center;
  padding-bottom: 20px;
}
.sub-title {
  font-weight: 600;
  font-size: 24px;
}
.desc button {
  border: none;
  background: transparent;
  color: #00f8f8;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

/* review section */
.review-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 768px;
  margin: 80px auto;
  position: relative;
}

.review-container {
  position: relative;
  width: 90%;
  height: 410px;
  overflow: hidden;
  margin-bottom: 25px;
}

.review-item {
  position: absolute;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.5s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: left;
  height: 380px;
  background: transparent;
  border: 2px solid rgb(255, 255, 255, 0.4);
  border-radius: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.review-item.active {
  opacity: 1;
  transform: translateX(0);
}

.review-img {
  width: 280px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.review-img img {
  height: 100%;
  object-fit: cover;
}

.rev-user {
  flex: 1;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rev-user h1 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #ffffff;
}
.rev-user p:first-of-type {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.rev-user p {
  color: white;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.review-stars svg {
  width: 24px;
  height: 24px;
}

.review-stars svg path {
  fill: #ffcc00;
}

li {
  list-style-type: none;
}

.review-slider button {
  background: #00f8f8;
  color: #001a1a;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  transition: 0.2s;
}

.review-slider button:hover {
  transform: scale(1.08);
}

/* Contacs section */
.contacts {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #e6f9f9;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.contacts svg {
  min-width: 40px;
  width: 40px;
}

.contacts h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #00f8f8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.contacts > div {
  width: 80%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 25px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.contacts > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contacts p {
  font-size: 18px;
  color: #001a1a;
  margin: 0;
  word-break: break-word;
  text-align: left;
}
/* Payments */
.payments {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payments h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #e6f9f9;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.payments h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #00f8f8;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.payment-icons {
  display: flex;
  gap: 10px;
}
.payment-icons svg {
  height: 90px;
}
/* footer */
footer {
  position: relative;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 40px 100px;
}
footer a {
  text-decoration: none;
  color: inherit;
}
.footer-logo {
  padding: 35px 20px;
  padding-top: 20px;
  margin-right: 40px;
}
.footer-logo img {
  width: 120px;
  height: auto;
}
.footer-cont {
  width: 100%;
  display: flex;
  color: white;
  font-size: 26px;
  gap: 80px;
  padding-bottom: 35px;
  border-bottom: 2px solid gray;
  position: relative;
}
.foot-cont-one {
  display: flex;
  gap: 80px;
}
.copyright {
  width: 100%;
  text-align: center;
  padding-top: 35px;
  border-top: 2px solid gray;

  color: rgb(168, 167, 167);
}
footer svg {
  fill: rgba(255, 255, 255, 0.842);
  stroke-miterlimit: 10;
  stroke-width: 1px;
  width: 40px;
}
.city {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}
.cont-col {
  display: flex;
  flex-direction: column;
}
.cont-col:first-child {
  color: rgb(168, 167, 167);
}
.cont-col:first-child a:first-child {
  color: white;
}
.foot-cont-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.foot-cont-two div {
  align-items: center;
  display: flex;
  gap: 20px;
}
.foot-cont-three {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: white;
  font-size: 20px;
}
.foot-cont-three p:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.foot-cont-three p {
  position: relative;
  padding-right: 16px;
}
.foot-cont-three p::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
.foot-cont-three p.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.foot-cont-three a {
  display: none;
}
.social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  border-bottom: 2px solid gray;
}
/* Media section */
@media (max-width: 767px) {
  .nav-bar {
    display: none;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .slider a {
    font-size: 20px;
  }

  .slider-arrow div {
    font-size: 45px;
  }

  .mobile-nav-bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    background-color: #00f8f8;
  }

  .hamburger {
    margin-left: auto;
  }

  .products h1 {
    font-size: 26px;
  }

  .review-slider {
    width: 320px;
    height: 100%;
  }

  .review-item {
    flex-direction: column;
    transform: translateX(0);
    gap: 10px;
    height: 100%;
  }

  .review-img {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    height: 50%;
  }

  .review-img img {
    border-radius: 10px;
  }

  .contacts svg {
    min-width: 20px;
    width: 20px;
  }

  .payment-icons svg {
    height: 30px;
  }

  .footer-info {
    flex-direction: column;
  }
  footer {
    align-items: center;
    padding: 40px 40px;
  }
  .footer-logo {
    margin-right: 0;
  }
  .social {
    gap: 0;
  }
  .footer-logo img {
    object-fit: cover;
    width: 90px;
  }
  .footer-cont {
    font-size: 18px;
    flex-direction: column;
  }
  .foot-cont-two {
    padding-top: 35px;
    border-top: 2px solid gray;
  }
  .foot-cont-three {
    flex-direction: column;
  }
}

@media (max-width: 1440px) and (min-width: 768px) {
  .nav-bar a {
    font-size: 18px;
  }
  .slider a {
    font-size: 30px;
  }
  .product-item p {
    min-height: 50px;
    font-size: 20px;
  }
}
