body {
  font-family: 'Hind Siliguri', cursive;
  background-color: #fffbe7;
  margin: 0;
  padding: 0;
}

.header,
.footer {
  color: black;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.start-learning {
  background-color: #ffff00;
}

.mobile-addiction {
  background-color: #ffff00;
}

.solution {
  background-color: #31d931;
}

.kids-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #fce4ec;
  border: 8px dashed #f06292;
  border-radius: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #4e342e;
}

.kids-section h2 {
  font-size: 28px;
  color: #d81b60;
  margin-bottom: 20px;
}

.kids-section p {
  font-size: 20px;
  margin: 15px 0;
  line-height: 1.7;
}

.kids-highlight {
  background-color: #fff59d;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 15px;
  margin-top: 10px;
  font-weight: bold;
  color: #e65100;
  font-size: 18px;
}

.emoji {
  font-size: 26px;
  margin-right: 5px;
}

@media (max-width: 600px) {
  .kids-section {
    padding: 20px;
  }

  .kids-section h2 {
    font-size: 24px;
  }

  .kids-section p,
  .kids-highlight {
    font-size: 16px;
  }
}

h2 {
  font-size: 26px;
  color: #d81b60;
  margin-bottom: 20px;
  text-align: center;
}

.carousel-item img {
  border-radius: 15px;
  width: 100%;
  height: 350px;
  object-fit: contain;
  background-color: #fffbe7;
}

.carousel {
  max-width: 800px;
  margin: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.gallery .item {
  text-align: center;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 10px;
  width: 180px;
  transition: 0.3s ease;
  background-color: #fefefe;
}
.gallery .item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery .item.selected {
  border-color: #ff9800;
  background-color: #fff3e0;
}

.item {
  border: 3px dashed #f06292;
  border-radius: 12px;
  padding: 10px;
  width: 170px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

.item input[type='checkbox'] {
  margin-top: 10px;
  transform: scale(1.3);
}

.selected {
  border-color: #4caf50;
  background-color: #e8f5e9;
}

.price-box {
  background: #fffde7;
  border: 2px dashed #ff9800;
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
}

.floating-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

