html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Prevent scrolling */
  font-family: 'Segoe UI', Arial, sans-serif;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url('img/Blue_dark_Bg.png') no-repeat center center fixed;
  background-size: cover;
}

.backround-clip {
  display: none;
}

main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 32px 0;
}

.carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  margin: 48px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel .card:nth-child(1),
.carousel .card:nth-child(1) .inner-card,
.carousel .card:nth-child(1) .card-title {
  background: linear-gradient(135deg, #953b4d 0%, #613796 100%);
}

.carousel .card:nth-child(2),
.carousel .card:nth-child(2) .inner-card,
.carousel .card:nth-child(2) .card-title {
  background: linear-gradient(135deg, #095c6c 0%, #377649 100%);
}

.carousel .card:nth-child(3),
.carousel .card:nth-child(3) .inner-card,
.carousel .card:nth-child(3) .card-title {
  background: linear-gradient(135deg, #567474 0%, #476683 100%);
}

.card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  max-width: 300px;
  max-height: 80vh;
  background: rgba(132, 145, 162, 0.9);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  position: relative;
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  margin: 0 20px;
}

.card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateY(-5px);
}

.card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
  width: 100%;
  background: rgba(85, 93, 104, 0.9);
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  max-height: 90px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 1.5px solid rgba(224, 224, 224, 0.3);
  padding: 0;
  margin-bottom: 0;
}

.card-title .logo-img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.inner-card {
  background: rgba(132, 145, 162, 0.8);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  padding: 15px 12px 40px 12px;
  margin: 24px 16px 0 16px;
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 300px;
  flex-grow: 1;
}

.product-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}

.slider-img {
  position: absolute;
  width: 100%;
  height: 280px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(1.1);
}

.slider-img.active {
  opacity: 1;
}

.arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.arrow {
  font-size: 45px;
  color: #ffffff;
  opacity: 0.85;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  pointer-events: auto;
  margin: 0 8px;
}

.arrow:hover {
  opacity: 1;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 18px 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
  background: #fff;
}

.details-btn {
  display: block;
  width: 80%;
  margin: 28px auto;
  background: rgba(150, 163, 172, 0.9);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  letter-spacing: 1px;
  transition: all 0.2s;
  cursor: pointer;
}

.details-btn:hover {
  background: linear-gradient(90deg, #a9a9a9 0%, #2e2e2f 100%);
  transform: translateY(-2px);
}

/* Footer */
footer {
  width: 100%;
  background: rgba(0, 0, 0, 0, 4);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 24px 0 12px 0;
  position: relative;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.footer-line {
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, #a9a9a9 0%, #6a82fb 100%);
  margin: 0 auto 18px auto;
  border-radius: 2px;
  opacity: 0.7;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 1.1rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  letter-spacing: 1px;
}

.footer-icon {
  font-size: 1.3em;
  margin-right: 6px;
}



/* Navbar styles */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 20, 40, 0.7);
  padding: 18px 40px 10px 40px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.navbar-left {
  display: flex;
  align-items: center;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 32px;
  width: 40px;
  margin-right: 24px;
  outline: none;
  padding: 0;
  transition: background 0.2s;
  border-radius: 8px;
}

.menu-btn:active,
.menu-btn:focus {
  background: rgba(255, 255, 255, 0.08);
}

.menu-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu {
  display: flex;
  gap: 18px;
  background: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 2px 10px 2px 18px;
  margin: 0 32px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 340px;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  width: 100%;
  padding: 6px 0;
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #222;
  margin-left: 6px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-select {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 18px 6px 8px;
  border-radius: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.2s, color 0.2s;
}

.lang-select:focus,
.lang-select:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #aee6ff;
}

.lang-select option {
  background: #222;
  color: #fff;
}

.contact-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 16px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: #e0e0e0;
}



/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100vh;
  background: url('assets/img/Blue_dark_Bg.png') no-repeat center center fixed, rgba(20, 30, 50, 0.98);
  background-size: cover;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 28px;
  gap: 24px;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.5px;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #aee6ff;
}

.sidebar-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 2100;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #aee6ff;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1999;
  display: none;
}

.sidebar.open~.sidebar-overlay {
  display: block;
}

/* Hide menu links in navbar */
.menu {
  display: none !important;
}

/* Navbar polish */
.navbar {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.menu-btn {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin-right: 24px;
  transition: background 0.2s;
  border-radius: 8px;
}

.menu-btn:active,
.menu-btn:focus {
  background: rgba(255, 255, 255, 0.08);
}

.menu-bar {
  background: #fff;
  transition: all 0.3s;
}

.navbar-line {
  width: 95%;
  height: 2px;
  background: linear-gradient(90deg, #a9a9a9 0%, #6a82fb 100%);
  margin: 0 auto 18px auto;
  border-radius: 2px;
  opacity: 0.7;
}

/* responsive  */

/* Responsive Design */
@media (max-width: 1100px) {
  .carousel {
    gap: 20px;
    padding: 20px;
  }

  .card {
    width: 300px;
    min-width: 300px;
    height: 550px;
  }

  .product-img {
    height: 250px;
  }
}

@media (max-width: 900px) {
  .side-text.left {
    margin-left: -40px;
    font-size: 16px;
  }

  .side-text.right {
    margin-right: -60px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .carousel {
    justify-content: flex-start;
    padding-left: 20px;
  }

  .card {
    width: 280px;
    min-width: 280px;
    height: 520px;
  }

  .product-img {
    height: 220px;
  }

  .inner-card {
    padding: 20px 10px 30px 10px;
    min-height: 220px;
  }

  .details-btn {
    padding: 12px 0;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {

  .side-text.left,
  .side-text.right {
    display: none;
  }

  .carousel {
    gap: 15px;
    padding: 15px;
  }

  .card {
    width: 260px;
    min-width: 260px;
    height: 480px;
  }

  .card-title {
    min-height: 70px;
  }

  .product-img {
    height: 200px;
  }

  .slider-img {
    max-width: 85%;
  }

  .arrow {
    font-size: 36px;
    width: 36px;
    height: 36px;
  }

  .dots {
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .carousel {
    gap: 10px;
    padding: 10px;
  }

  .card {
    width: 240px;
    min-width: 240px;
    height: 450px;
  }

  .card-title {
    min-height: 60px;
  }

  .card-title .logo-img {
    max-width: 100px;
    max-height: 50px;
  }

  .product-img {
    height: 180px;
  }

  .inner-card {
    padding: 15px 8px 25px 8px;
    margin: 15px 10px 0 10px;
    width: calc(100% - 20px);
  }

  .details-btn {
    width: 85%;
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .arrow {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    font-size: 1rem;
  }
}

/* Responsive styles */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 10px 6px 10px;
  }

  .search-bar {
    margin: 10px 0;
    min-width: 120px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 10px 4vw 6px 4vw;
  }

  .menu {
    position: absolute;
    top: 60px;
    left: 10px;
    flex-direction: column;
    background: rgba(10, 20, 40, 0.98);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    padding: 18px 24px;
    display: none;
    z-index: 100;
  }

  .menu.open {
    display: flex;
  }
}

@media (max-width: 700px) {
  .sidebar {
    width: 80vw;
    min-width: 180px;
    max-width: 340px;
    padding: 24px 18px 18px 18px;
  }
}

