* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f1dc;
}

.warn {
  font-size: 1rem;
  background-color: #2d2d2d;
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.navBar {
  margin: 0 40px;
  align-items: center;
  display: flex;
  color: rgb(31, 142, 201);
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navBar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.navBar ul li {
  cursor: pointer;
  transition: all 0.3s ease;
}
.navBar ul li:hover {
  border-bottom: 2px solid #001bb7;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
.navBar .active {
  border-bottom: 2px solid #001bb7;
  padding-bottom: 5px;
}

.logo {
  width: 100px;
  height: 100px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-navbar {
  display: none;
}

.hamburger {
  margin-left: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hamburger:focus {
  outline: 2px solid #001bb7;
  border-radius: 4px;
}
.hamburger .bar {
  width: 100%;
  height: 3px;
  background: #001bb7;
  border-radius: 15%;
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}
.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu a {
  color: #001bb7;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}
.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.mobile-menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.locked {
  overflow: hidden;
}
.slider {
  position: relative;
  background: radial-gradient(circle at center, #000000 0%, #000055 100%);
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}
.slider-item {
  max-height: max-content;
  position: relative;
  display: none;
  margin: 0 auto;
  max-width: fit-content;
}
.slider-item img {
  height: 100%;
  object-fit: cover;
  background-position: center;
}
.slider-item.active {
  display: block;
}

.title-one {
  position: absolute;
  top: 20%;
  left: 10%;
  max-width: 50%;
}
.title-one h1 {
  color: #001bb7;
  font-weight: 900;
  font-size: clamp(1rem, 3rem, 4rem);
  margin: 0 0 1rem 0;
}
.title-one span {
  display: block;
  font-size: clamp(0.8rem, 2rem, 2rem);
  color: #0046ff;
  width: 50%;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: break-word;
}
.bunner-btn {
  display: flex;
  position: absolute;
  top: 90%;
  width: 100%;
  justify-content: center;
  gap: 20px 20px;
  font-size: clamp(0.5rem, 1.5rem, 2rem);
}
.bunner-btn a {
  display: inline-block;
  padding: clamp(10px, 15px, 15px) clamp(10px, 30px, 35px);
  background-color: #ff8040;
  font-weight: 900;
  color: #001bb7;

  border-radius: 15px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.bunner-btn a:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
  cursor: pointer;
}

.dots {
  text-align: center;
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translateX(-50%);
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.dot.active {
  background: #ccc;
}
.description {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.description div {
  margin: 0 auto;
  min-width: 300px;
  width: 30%;
  padding: 60px 30px;
}
.description p {
  color: #001bb7;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.description span {
  color: #2d2d2d;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 30px;
}
.products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 180px;
  padding: 120px 100px;
}
.prod-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 125px;
}
.prod-img {
  background-color: #87e8ee;
  width: 500px;
  height: 350px;
  border-radius: 15px;
  position: relative;
  box-shadow: 5px 5px 15px #333;
  transition: all 0.8s ease-in-out;
}
.prod-img img:hover {
  transition: all 0.8s ease-in-out;
  transform: translate3d(10px);
  top: -50%;
}
.prod-img img {
  width: 100%;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
}
.products h1 {
  color: #001bb7;
  font-size: 48px;
}
.products span {
  color: #004ff0;
  font-size: 36px;
}
.products p {
  margin-top: 20px;
  font-size: 24px;
}
.products button {
  padding: 20px 45px;
  background-color: #001bb7;
  font-weight: 900;
  color: #ff8040;
  border-radius: 15px;
  margin-top: 20px;
  font-size: 36px;
  transition: all 0.2s ease-in-out;
  border: 1px transparent;
}
.products button:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
  cursor: pointer;
}
.prod-desc {
  width: 40%;
}
.prod-title {
  margin-left: -100px;
  padding: 15px 20px 15px 100px;
  background-color: #007ec2;
  color: white;
  width: max-content;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 2px 3px 10px #333;
  font-size: 36px;
}

footer {
  position: relative;
  width: 100%;
  background-color: #007ec2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 40px 100px;
}
.footer-logo {
  padding: 35px 20px;
  padding-top: 20px;
  margin-right: 40px;
}
.footer-logo img {
  width: 130px;
  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 {
  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;
}
.links {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: white;
  font-size: 24px;
}
.links a {
  transition: all 0.8s ease;
}

.links a:hover {
  transition: all 0.8s ease;
  border-bottom: 1px solid white;
}

a {
  color: inherit;
  text-decoration: none;
}

.green {
  background-color: #5eb377;
}
.purple {
  background-color: #cc8892;
}
.yelow {
  background-color: #fbf470;
}
.flow {
  background-color: #f64999;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  box-sizing: border-box;
}
.slider-arrow div {
  text-align: center;
  height: 40px;
  z-index: 10;
  font-size: 80px;
  aspect-ratio: 1;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
@media (min-width: 320px) and (max-width: 760px) {
  .slider-arrow div {
    font-size: 30px;
  }
  .slider-item img {
    width: 100%;
  }
  .warn {
    font-size: 10px;
    padding: 5px;
  }
  header {
    position: relative;
    display: flex;
    justify-content: start;
  }
  header .logo {
    top: -80%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .bunner-btn {
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
    display: flex;
    font-size: 12px;
    width: max-content;
  }

  .bunner-btn a {
    padding: 7px 15px;
    border-radius: 10px;
  }
  .prod-img {
    height: 300px;
    width: 300px;
  }

  .prod-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
  }
  .prod-img img:hover {
    transition: all 0.8s ease-in-out;
    top: -30%;
  }
  .products h1 {
    font-size: 24px;
  }
  .products span {
    font-size: 18px;
  }
  .products p {
    font-size: 14px;
  }

  .dots {
    top: 93%;
  }

  .navBar {
    display: none;
  }
  .mobile-navbar {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }

  .prod-item {
    gap: 40px;
  }

  .products {
    padding: 30px 15px;
    gap: 60px;
  }

  .reverse {
    flex-wrap: wrap-reverse;
  }

  .prod-desc {
    width: 300px;
  }

  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;
  }

  .products button {
    padding: 20px 30px;
    font-size: 16px;
  }
}
@media (min-width: 760px) and (max-width: 1760px) {
  .slider-item img {
    max-height: fit-content;
    object-fit: cover;
  }
  .title-one {
    top: 10%;
    left: 10%;
    max-width: 80%;
  }
  .title-one h1 {
    font-size: 50px;
    margin: 0 0 10px 0;
  }

  .title-one span {
    font-size: 20px;
  }

  .bunner-btn {
    font-size: 20px;
  }
  .prod-desc {
    width: 500px;
  }

  .bunner-btn a {
    padding: 10px 20px;
    border-radius: 13px;
  }
  .dots {
    top: 97%;
  }
}
@media screen and (max-width: 1760px) and (min-width: 671px) {
  .reverse {
    flex-wrap: wrap-reverse;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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;
  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;
}
