/* Reset */




/* Base box style */
.box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
}

.box i {
  font-size: 36px;
  margin-bottom: 15px;
}

.box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.box a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

/* 1. Shadow */
.box-shadow {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.box-shadow:hover {
  transform: translateY(-6px);
}

/* 2. Gradient */
.box-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}
.box-gradient p,
.box-gradient a {
  color: #fff;
}

/* 3. Border hover */
.box-border {
  border: 2px solid red;
}
.box-border:hover {
  transform: translateY(-8px);
}

/* 4. Glass */
.box-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 5. Icon box */
.box-icon {
  border: 2px dashed #16a085;
  color: #16a085;
}
.box-icon:hover {
  background: #16a085;
  color: #fff;
}

/* 6. Line Accent */
.box-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #000;
  border-radius: 6px 0 0 6px;
}

/* 7. Dark Card */
.box-dark {
  background: #111;
  color: #fff;
}
.box-dark p,
.box-dark a {
  color: #ddd;
}

/* 8. Minimal */
.box-minimal {
  border: 1px dashed #ccc;
}
.box-minimal .count {
  font-size: 42px;
  font-weight: 700;
  color: #bbb;
  display: block;
  margin-bottom: 10px;
}

/* 9. Rotate Icon */
.box-rotate i {
  transition: transform 0.5s ease;
}
.box-rotate:hover i {
  transform: rotate(20deg);
}

/* 10. Outline */
.box-outline {
  border: 2px solid #2980b9;
}
.box-outline:hover {
  background: #2980b9;
  color: #fff;
}
.box-outline:hover a {
  color: #fff;
}

/* 11. Shadow Alternate */
.box-shadow-alt {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left: 6px solid #ffffff7a;
}
.box-shadow-alt:hover {
  transform: translateY(-6px);
}

/* 12. Float effect */
.box-float {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.box-float:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive text */
@media (max-width: 480px) {
  .box p {
    font-size: 14px;
  }
  .box h3 {
    font-size: 18px;
  }
}
