* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  
  /* Code diye banano Abstract Kids Background - No Image */
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 234, 167, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(116, 185, 255, 0.7) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(162, 155, 254, 0.7) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(250, 177, 160, 0.7) 0%, transparent 50%),
    linear-gradient(135deg, #ffeaa7 0%, #fab1a0 25%, #a29bfe 50%, #74b9ff 75%, #55efc4 100%);
  
  background-attachment: fixed;
  animation: bgMove 20s ease infinite;
}

@keyframes bgMove {
 0% { background-position: 0% 0%; }
 50% { background-position: 100% 100%; }
 100% { background-position: 0% 0%; }
}

/* Sundor Header with gradient + floating emoji */
header {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a29bfe 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #ffeaa7;
}

header::before {
  content: "⭐ 🎈 🌟 🎨 🖍️";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  font-size: 2.5rem;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
  letter-spacing: 40px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 3px 3px 0px #ff7675;
  position: relative;
  z-index: 2;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  transition: 0.3s;
  border: 2px solid white;
}

nav a:hover {
  background: #ffeaa7;
  color: #6c5ce7;
  transform: scale(1.1);
}

/* Sections */
section {
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 4px dashed #a29bfe;
}

section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: #6c5ce7;
}

/* Scroll Gallery */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.scroll-gallery {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.scroll-gallery:hover {
  animation-play-state: paused;
}

.scroll-gallery .item {
  flex: 0 0 180px;
  background: white;
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255,118,117,0.3);
  transition: transform 0.3s ease;
  border: 3px solid #ffeaa7;
}

.scroll-gallery .item:hover {
  transform: translateY(-10px) rotate(3deg);
  border-color: #ff7675;
}

.scroll-gallery .item img {
  width: 100%;
  height: 320px;width:550px;
  object-fit: contain;
  background: #fff3cd;
  border-radius: 15px;
  margin-bottom: 8px;
  padding: 8px;
}

.scroll-gallery .item h3 {
  font-size: 0.9rem;
  color: #6c5ce7;
  font-weight: 600;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Contact */
#contact {
  background: rgba(116, 185, 255, 0.95);
  text-align: center;
  color: white;
  border: 4px dashed white;
}

#contact h2 {
  color: white;
}

#contact a {
  color: #ffeaa7;
  font-weight: 700;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  margin-top: 40px;
  border-radius: 0 0 30px 30px;
  font-weight: 600;
  /* Mobile Responsive */
@media (max-width: 768px) {
  
  header {
    padding: 50px 15px;
  }
  
  header h1 {
    font-size: 2rem; /* Mobile e title choto */
  }
  
  header::before {
    font-size: 1.5rem; /* Emoji gula choto */
    letter-spacing: 20px;
  }

  nav ul {
    flex-direction: column; /* Menu niche niche nambe */
    gap: 10px;
  }

  nav a {
    display: block;
    padding: 8px 15px;
  }

  section {
    margin: 20px 10px; /* Side e gap kom */
    padding: 40px 15px;
    border-radius: 20px;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .scroll-gallery .item {
    flex: 0 0 140px; /* Mobile e card aro choto */
  }

  .scroll-gallery .item img {
    height: 120px;
  }
}

/* Aro choto phone er jonno */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.6rem;
  }
  .scroll-gallery .item {
    flex: 0 0 120px;
  }
}
}