:root {
  --navy-blue: #0a0e36;
  --turquoise: #10a5c8;
  --white: #ffffff;
  --light-gray: #f3f4f6;
  --gray: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

.color-b {
  color: #10a5c8;
  font-weight: 700;
  font-size: 35px;
  border-bottom: 3px solid #10a5c8;
  padding-bottom: 4px;
  display: inline-block;
}

.btns .btn {
  padding: 12px 24px;
  background-color: #10a5c8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btnn {
  font-weight: 600;
  font-size: 18px;
  background-color: #10a5c8;
  color: white;
  padding: 10px;
  border: 1px solid white;
}

.btnn:hover {
  background-color: #ffff;
  color: #10a5c8;
  border: 2px solid #10a5c8;
}

.btns .btn:hover {
  background-color: #ffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #10a5c8;
  border: 2px solid #10a5c8;
}

.cpatcha-div {
  background: linear-gradient(rgba(0, 0, 0, 0.404), rgba(0, 0, 0, 0.384)),
    url(Assets/cap.jpg);
  background-position: center;
  text-align: center;
}

.cpatcha-div p {
  font-size: 18px;
  font-weight: 600;
}

.refresh a {
  text-decoration: none;
}

.bg-chng {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.bg-chng::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #10a5c8;
  z-index: -1;
  transition: width 0.6s ease-in-out;
}

.bg-chng:hover::before {
  width: 100%;
}

.bg-chng:hover {
  color: #fff;
}

.product-image {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

