/* ===== Global ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: rgb(245, 248, 252);
  color: rgb(33, 33, 33);
}

/* ===== Navigation Bar ===== */
.navigation {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: rgb(9, 169, 222);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: cursive;
  font-size: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  margin: 0 15px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  transition: all 0.3s ease;
}

.nav:hover {
  color: rgb(230, 242, 255);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
}

.dropdown-content a {
  color: rgb(40, 40, 40);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: rgb(235, 245, 255);
  color: rgb(9, 169, 222);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Uratex Product Section ===== */
.uratexopt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 5%;
  background-color: rgb(235, 245, 255);
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(9, 169, 222, 0.15);
  gap: 40px;
}

/* Background image section */
.uimgs {
  height: 800px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(9, 169, 222, 0.3);
}

/* ===== Product Cards ===== */
.u1, .up, .up2, .up3, .up4 {
  width: 350px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(9, 169, 222, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  padding: 25px;
}

.u1:hover,
.up:hover,
.up2:hover,
.up3:hover,
.up4:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(9, 169, 222, 0.4);
}

/* ===== Product Text ===== */
.up h1, .up2 h1, .up3 h1, .up4 h1 {
  font-size: 24px;
  color: rgb(9, 169, 222);
  margin-bottom: 10px;
}

.up p, .up2 p, .up3 p, .up4 p {
  font-size: 16px;
  color: rgb(60, 60, 60);
  line-height: 1.5;
}

/* ===== Available Colors ===== */
.colors {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  color: rgb(9, 169, 222);
  font-weight: bold;
}

.cb {
  color: rgb(0, 102, 255);
  font-size: 20px;
  margin-right: 10px;
}

.ce {
  color: rgb(0, 180, 0);
  font-size: 20px;
  margin-right: 10px;
}

.crb {
  color: rgb(139, 69, 19);
  font-size: 20px;
  margin-right: 10px;
}

.cbe {
  color: rgb(245, 245, 220);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  font-size: 20px;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
  .navigation {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    font-size: 14px;
    margin: 5px;
  }

  .uratexopt {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .u1, .up, .up2, .up3, .up4 {
    width: 90%;
  }

  .uimgs {
    height: auto;
    width: 100%;
  }
}