
/* ----- headr ----- */
.banner {
  background: linear-gradient(90deg, #f64208, #ff4e00, #ff6633, #ff6633, #ff6633, #fff3e6, #ff6633, #ff6633);
  padding: 10px 30px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-left: 10px;
}

/* .banner a:hover {
  text-decoration: underline;
} */


/* Left "Super" Tag */
.banner-left .tag {
  background: white;
  color: #f64208;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 13px;
}

/* Center Text */
.banner-center {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

/* Right Link */
.banner-right a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid white;
  padding-bottom: 2px;
  transition: 0.3s;
}


/* Responsive */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .banner-center {
    flex: none;
  }
}

/* ----- bnner ----- */

/* ---------- HERO SECTION ---------- */
.hero {
  background: #e6e6e6;
  position: relative;
  overflow: hidden;
  padding: 20px 20px;
}

.tagline-top {
  font-size: 22px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.display-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.display-title .accent {
  color: #ff4e00;
}

.kv-line {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

.kv-line .sep {
  margin: 0 8px;
  color: #888;
}

.kv-line .best {
  color: #ff4e00;
}

/* Center globe/art image */
.art-layer {
  /* text-align: center; */
  position: relative;
}

.art-layer .globe {
  max-width: 300px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Right protection + badges */
.protection {
  /* background: #fff; */
  border-radius: 12px;
  padding: 15px;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.05); */
}

.protection h6 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

/* .protection small {
  font-size: 13px;
  color: #555;
} */

/* .badges .badge-card-1{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ff4e00;
  color: #fff;
  border-radius: 12px;
  padding: 12px;
box-shadow: 5px 5px 10px #000000; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;}
.badges .badge-card-1 a{
 text-decoration: none;
 color: #fff;
}
.badges .badge-card a{
    text-decoration: none;
    color: #000;
}
.badges .badge-card a:hover{
    color: #fff;
} */
.badges .badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 5px 5px 10px #000000;
  /* subtle shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badges .badge-card:hover {
  background-color: #ff4e00;
  color: #fff;
}

.badges .badge-card a {
  text-decoration: none;
  color: #000000;
  font-weight:700;
}

.badges .badge-card a:hover {
  color: #fff;
}

.badge-icon {
  font-size: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
}

/* Watermark */
.watermark {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 50px;
  color: #e6b899;
  /* opacity: 0.3;
  pointer-events: none;
  user-select: none; */
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .watermark {
    font-size: 60px;
    right: -40px;
  }

  .art-layer .globe {
    max-width: 200px;
  }
}