/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: Arial, sans-serif;
  background: #000;
  overflow: hidden;
  /* stop body scroll */
}

/* Background */
.mozo_bg {
  background: url(../assets/images/back-ground-img.svg) no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.top_img{
  width: 100%;
  height: 100%;
  margin: 10px 0;
  border-radius: 12px;
}

/* Container */
.container {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background: #0E1737;
  padding: 8px 12px;
  text-align: center;
}

.logo {
  height: 43px;
}

/* Scrollable content card */
.choose_insurance {
  background: #060C21;
  /* height: calc(100vh - 65px); */
  overflow-y: auto;
  scrollbar-width: none;
}

.choose_insurance::-webkit-scrollbar {
  width: 6px;
}

.choose_insurance::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 6px;
}

/* Text Content */
.content {
  padding: 15px 16px;
  color: #fff;
}

.content h1 {
  font-size: 27px;
  margin-bottom: 15px;
}

.content h2 {
  color: #ffffff;
  font-size: 20px;
  margin: 20px 0 10px;
}

.content p {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.content ul,
.content ol {
  margin: 10px 0 20px 20px;
}

.content li {
  font-size: 16px;
  margin: 8px 0;
  line-height: 24px;
}

.content li strong {
  font-size: 17px;
  color: #a78bfa;
}

/* Highlight Box */
.highlight {
  background: rgba(167, 139, 250, 0.1);
  padding: 12px;
  border-left: 3px solid #a78bfa;
  border-radius: 6px;
  margin: 20px 0;
  text-align: center;
}

/* Buttons */
.btn_back {
  padding: 12px 15px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  border-radius: 12px;
  background: #5617a3;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 20px;
  transition: 0.3s;
}

.btn_back:hover {
  background: #6d28d9;
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(137, 97, 255, 0.6);
}

/* Mozo Box */
.mozo_box {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  color: #fff;
  padding: 16px 10px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: floatBox 3s ease-in-out infinite;
}

.mozo_box p {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 12px;
}

.btn_play {
  background: #facc15;
  color: #000;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn_play:hover {
  background: #eab308;
  transform: scale(1.05);
}

/* Floating animation */
@keyframes floatBox {

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

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


/* ===== Features Grid ===== */
.features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.feature_card {
  /* background: #1e242f;
  border: 1px solid #2c313c;
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

/* .feature_card:hover {
  background: #262d3a;
  transform: translateY(-6px);
} */

.feature_card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #a78bfa;
}

.feature_card p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}