:root {
  --primary-purple: #490096;
  --primary-dark-blue: #0a2c47;
  --primary-red: #a73234;
  --primary-yellow: #fbbf24;
  --primary-orange: #f97316;
  --primary-teal: #14b8a6;
  --light-blue: #e0f2fe;
  --light-yellow: #fef3c7;
  --light-pink: #fce7f3;
  --light-green: #dcfce7;
  --light-purple: #f3e8ff;
  --rainbow-pink: #ec4899;
  --rainbow-green: #10b981;
  --rainbow-blue: #3b82f6;
  --dark-gray: #1f2937;
  --light-gray: #f3f4f6;
  --border-gray: #e5e7eb;
  --text-dark: #ffffff;
  --text-light: #cbd5e1;
}


:root {
  --accent-pink: #ff6ad5;
  --accent-cyan: #22d3ee;
}

.hero {
  background: linear-gradient(135deg,
      var(--primary-purple),
      var(--primary-dark-blue),
      var(--primary-red),
      var(--accent-cyan));
  background-size: 300% 300%;
  animation: gradientShift 14s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.hero-title {
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.btn.btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--primary-blue));
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(30, 58, 138, 0.35);
  filter: brightness(1.05);
}

.cta-button {
  background-image: linear-gradient(90deg,
      var(--accent-pink),
      var(--accent-cyan));
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(236, 72, 153, 0.35);
}

/* Cards: stronger hover tilt/shadow */
.service-card {
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05) rotate3d(1, 1, 0, 6deg);
  box-shadow: 0 28px 60px rgba(255, 255, 255, 0.2);
}

.pricing-card {
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-6px) rotate3d(1, -1, 0, 5deg);
  box-shadow: 0 22px 55px rgba(255, 255, 255, 0.2);
}

/* Testimonials: stars gold + subtle background flair */
.testimonials {
  background:
    radial-gradient(1200px 600px at 50% -10%,
      rgba(236, 254, 255, 0.1) 0%,
      transparent 60%),
    linear-gradient(to bottom, rgba(240, 253, 244, 0.1), transparent);
}

.testimonial-card .stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

/* Footer: gradient and brighter text */
.footer {
  background: linear-gradient(135deg, #111827, #1f2937 40%, #0b1020);
  color: #cbd5e1;
}

/* Less pastel: crisp surfaces */
.services {
  background-color: transparent;
  color: white;
}

/* Ensure headings and subtext remain readable on dark background */
.services .section-header h2,
.services .section-header p {
  color: white;
}

.service-card,
.pricing-card {
  background: #fff;
  border: 1px solid var(--border-gray);
}

/* Replace emoji icons with modern SVG masks */
.service-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: currentColor;
  color: #ffffff;
  display: block;
  font-size: 0;
  opacity: 0.95;
}

.service-card:nth-child(1) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3a9 9 0 0 0-9 9c0 4 3 6 6 6h1.5a1.5 1.5 0 0 0 0-3H10a3 3 0 0 1-3-3 7 7 0 1 1 7 7h-1'/><circle cx='7.5' cy='10.5' r='1' fill='%23000'/><circle cx='10.5' cy='7.5' r='1' fill='%23000'/><circle cx='14' cy='7.5' r='1' fill='%23000'/><circle cx='16' cy='10.5' r='1' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3a9 9 0 0 0-9 9c0 4 3 6 6 6h1.5a1.5 1.5 0 0 0 0-3H10a3 3 0 0 1-3-3 7 7 0 1 1 7 7h-1'/><circle cx='7.5' cy='10.5' r='1' fill='%23000'/><circle cx='10.5' cy='7.5' r='1' fill='%23000'/><circle cx='14' cy='7.5' r='1' fill='%23000'/><circle cx='16' cy='10.5' r='1' fill='%23000'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(2) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3c3 0 5 2.5 5 5.5S13.5 15 12 15s-5-3-5-6.5S9 3 12 3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3c3 0 5 2.5 5 5.5S13.5 15 12 15s-5-3-5-6.5S9 3 12 3z'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(3) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3l1.8 4.5L18 9l-4.2 1.5L12 15l-1.8-4.5L6 9l4.2-1.5L12 3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3l1.8 4.5L18 9l-4.2 1.5L12 15l-1.8-4.5L6 9l4.2-1.5L12 3z'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(4) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8c0-2.2 4-3 8-3s8 .8 8 3-4 5-8 5-8-2.8-8-5z'/><circle cx='9' cy='9' r='1' fill='%23000'/><circle cx='15' cy='9' r='1' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8c0-2.2 4-3 8-3s8 .8 8 3-4 5-8 5-8-2.8-8-5z'/><circle cx='9' cy='9' r='1' fill='%23000'/><circle cx='15' cy='9' r='1' fill='%23000'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(5) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l10-4v12L3 14v-4z'/><path d='M13 8l6-2v12l-6-2'/><path d='M3 14l2 5h3l-1-4'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l10-4v12L3 14v-4z'/><path d='M13 8l6-2v12l-6-2'/><path d='M3 14l2 5h3l-1-4'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(6) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 16l2-2M3 12l4-1M8 20l1-4M16 5l2-2M20 8l-4-1M19 15l-3 2'/><circle cx='12' cy='12' r='3' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 16l2-2M3 12l4-1M8 20l1-4M16 5l2-2M20 8l-4-1M19 15l-3 2'/><circle cx='12' cy='12' r='3' fill='%23000'/></svg>") center / contain no-repeat;
}

/* Download icon modern */
.download-icon {
  width: 36px;
  height: 36px;
  background: currentColor;
  color: #1f2937;
  display: inline-block;
  font-size: 0;
}

.download-card .download-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v10'/><path d='M8 11l4 4 4-4'/><rect x='4' y='17' width='16' height='3' rx='1'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v10'/><path d='M8 11l4 4 4-4'/><rect x='4' y='17' width='16' height='3' rx='1'/></svg>") center / contain no-repeat;
}

/* VIBRANT SERVICE CARDS (modern gradients) */
.services .service-card {
  border: none;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services .service-card:nth-child(1) {
  background: linear-gradient(135deg, #ff6ad5, #f97316);
}

.services .service-card:nth-child(2) {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.services .service-card:nth-child(3) {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.services .service-card:nth-child(4) {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
}

.services .service-card:nth-child(5) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  text-shadow: none;
}

.services .service-card:nth-child(6) {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Make icons visible on gradients */
.services .service-card:nth-child(5) .service-icon {
  color: #1f2937;
  opacity: 0.9;
}

/* PRICING CARDS: colorful header ribbons */
.pricing-card {
  position: relative;
  overflow: hidden;
  border: none;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.pricing-card:nth-child(2)::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.pricing-card:nth-child(3)::before {
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
}

.pricing-card:nth-child(4)::before {
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}

.pricing-card:nth-child(5)::before {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.pricing-card:nth-child(6)::before {
  background: linear-gradient(90deg, #10b981, #3b82f6);
}

.pricing-card .price {
  color: #0f172a;
}

.pricing-card .btn {
  margin-top: 0.5rem;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  background-color: var(--primary-dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  /* Removed underline from buttons */
}

.btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(73, 0, 150, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-kindness {
  background: linear-gradient(135deg,
      var(--rainbow-pink),
      var(--primary-purple));
  color: white;
}

.btn-kindness:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-orange {
  background-image: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
  color: white;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-kidcare {
  background-color: var(--primary-orange);
  color: white;
}

.btn-kidcare:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-decor {
  background-color: var(--primary-purple);
  color: white;
}

.btn-decor:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-sponsor {
  background-color: var(--rainbow-green);
  color: white;
}

.btn-sponsor:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-download {
  background-color: var(--rainbow-blue);
  color: white;
}

.btn-download:hover {
  background-color: var(--primary-dark-blue);
  transform: translateY(-2px);
}

.cta-button {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-purple);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary-dark-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--dark-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--primary-yellow));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.logo-text {
  color: var(--text-dark);
}

.logo-img {
  height: 2.5rem;
  /* Match the old icon size */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .cta-button {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #a855f7, #ec4899);
  color: white;
  padding: 5rem 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.blob-1 {
  width: 10rem;
  height: 10rem;
  background-color: var(--primary-yellow);
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 10rem;
  height: 10rem;
  background-color: white;
  bottom: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-logo-img {
  max-width: 400px;
  height: auto;
  animation: slideInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.5rem;
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 50rem;
  margin: 0 auto 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 40rem;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background-color: #490096;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

/* Removed older gradient background so the new dark image background applies */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  /* Start with transparent border */
  cursor: pointer;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.service-card:nth-child(6n + 1) {
  background-color: var(--light-blue);
}

.service-card:nth-child(6n + 2) {
  background-color: var(--light-yellow);
}

.service-card:nth-child(6n + 3) {
  background-color: var(--light-pink);
}

.service-card:nth-child(6n + 4) {
  background-color: var(--light-purple);
}

.service-card:nth-child(6n + 5) {
  background-color: var(--light-green);
}

.service-card:nth-child(6n + 6) {
  background-color: var(--light-blue);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

.service-card:nth-child(6n + 1):hover {
  border-color: var(--primary-blue);
}

.service-card:nth-child(6n + 2):hover {
  border-color: var(--primary-yellow);
}

.service-card:nth-child(6n + 3):hover {
  border-color: var(--rainbow-pink);
}

.service-card:nth-child(6n + 4):hover {
  border-color: var(--primary-purple);
}

.service-card:nth-child(6n + 5):hover {
  border-color: var(--rainbow-green);
}

.service-card:nth-child(6n + 6):hover {
  border-color: var(--primary-teal);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.service-card p {
  color: var(--text-light);
  /* Changed to dark text for readability */
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  background: transparent;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 2px solid var(--dark-gray);
}

.pricing-section h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  padding: 1.5rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.pricing-card:nth-child(6n + 1) {
  background-color: var(--light-blue);
}

.pricing-card:nth-child(6n + 2) {
  background-color: var(--light-yellow);
}

.pricing-card:nth-child(6n + 3) {
  background-color: var(--light-pink);
}

.pricing-card:nth-child(6n + 4) {
  background-color: var(--light-purple);
}

.pricing-card:nth-child(6n + 5) {
  background-color: var(--light-green);
}

.pricing-card:nth-child(6n + 6) {
  background-color: var(--light-blue);
}

.pricing-card:nth-child(6n + 1):hover {
  border-color: var(--primary-blue);
}

.pricing-card:nth-child(6n + 2):hover {
  border-color: var(--primary-yellow);
}

.pricing-card:nth-child(6n + 3):hover {
  border-color: var(--rainbow-pink);
}

.pricing-card:nth-child(6n + 4):hover {
  border-color: var(--primary-purple);
}

.pricing-card:nth-child(6n + 5):hover {
  border-color: var(--rainbow-green);
}

.pricing-card:nth-child(6n + 6):hover {
  border-color: var(--primary-teal);
}

.pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #111827;
  /* Changed to dark text for readability */
}

.package-details {
  font-size: 0.875rem;
  color: #6b7280;
  /* Changed to a darker color for readability */
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.pricing-card .btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
}

.pricing-card .btn-primary:hover {
  background-color: var(--primary-purple);
  box-shadow: 0 10px 25px rgba(73, 0, 150, 0.3);
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ============================================
   KINDNESS SECTION
   ============================================ */

.kindness {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.kindness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kindness-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kindness-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kindness-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.kindness-benefits {
  background: linear-gradient(135deg,
      rgba(254, 202, 202, 0.1),
      rgba(216, 180, 254, 0.1));
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.kindness-benefits p {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.kindness-benefits ul {
  list-style: none;
}

.kindness-benefits li {
  padding: 0.5rem 0;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .kindness-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COACHING SECTION
   ============================================ */

.coaching {
  background: transparent;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.coaching-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.coaching-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.coaching-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(224, 242, 254, 0.2);
  transform: translateX(10px);
}

.emoji {
  font-size: 1.5rem;
}

.coaching-pricing {
  background: linear-gradient(135deg,
      rgba(207, 250, 254, 0.1),
      rgba(186, 230, 253, 0.1));
  padding: 2rem;
  border-radius: 1.5rem;
}

.coaching-pricing h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coaching-pricing p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.coaching-pricing input[type="text"].donation-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: var(--primary-purple);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.coaching-pricing input[type="text"].donation-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.coaching-pricing input[type="text"].donation-input:focus {
  outline: none;
  background: purple;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--dark-gray);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.price-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  margin-right: 1rem;
}

.price-option:hover {
  border-color: var(--primary-purple);
  background: rgba(240, 249, 255, 0.2);
}

.price-option input[type="radio"]:checked~.option-content {
  color: var(--primary-purple);
  font-weight: 600;
}

.option-content {
  flex: 1;
}

.option-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.option-desc {
  font-size: 0.875rem;
  color: var(--text-light);
}

.option-price {
  font-weight: bold;
  color: var(--primary-purple);
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .coaching-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   KIDCARE SECTION
   ============================================ */

.kidcare {
  position: relative;
  background-image: url("images/jay-background-1.jpg");
  /* White background with clown */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}

.kidcare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kidcare-content {
  background: rgba(255, 255, 255, 0.85);
  /* Semi-transparent white overlay */
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-orange);
  /* Burst of orange */
  backdrop-filter: blur(5px);
}

.kidcare-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark-blue);
}

.kidcare-content p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.kidcare-features {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.6), rgba(254, 215, 170, 0.6));
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 5px solid var(--primary-blue);
}

.kidcare-features ul {
  list-style: none;
}

.kidcare-features li {
  padding: 0.5rem 0;
  color: var(--primary-dark-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.kidcare-features li::before {
  content: "🧸";
  margin-right: 10px;
}

.kidcare .tagline {
  font-style: italic;
  font-weight: 700;
  color: var(--primary-orange);
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .kidcare {
    background-attachment: scroll;
    /* Better performance on mobile */
  }

  .kidcare-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BALLOON DECOR SECTION
   ============================================ */

.balloon-decor {
  position: relative;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  /* Purple gradient */
  padding: 6rem 0;
  color: white;
}

.balloon-content {
  background: rgba(20, 10, 40, 0.75);
  /* Dark semi-transparent overlay */
  padding: 3rem;
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--primary-yellow);
  /* Pop of yellow */
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
  backdrop-filter: blur(5px);
}

.balloon-decor .section-header h2 {
  color: var(--primary-yellow);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.balloon-decor .section-header p {
  color: white;
  font-size: 1.3rem;
}

.balloon-content p {
  font-size: 1.1rem;
  color: var(--light-blue);
  margin-bottom: 2rem;
}

.balloon-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.balloon-services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.balloon-services li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid var(--rainbow-pink);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.balloon-services li:hover {
  background: var(--rainbow-pink);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--rainbow-pink);
}

@media (max-width: 768px) {
  .balloon-decor {
    background-attachment: scroll;
  }
}

/* ============================================
   SPONSOR SECTION
   ============================================ */

.sponsor {
  background: transparent;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 2px solid var(--dark-gray);
  max-width: 40rem;
  margin: 0 auto;
}

.sponsor-card p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.sponsor-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sponsor-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--dark-gray);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.sponsor-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  margin-right: 1rem;
}

.sponsor-option:hover {
  border-color: var(--rainbow-green);
  background: rgba(240, 253, 244, 0.2);
}

.sponsor-label {
  flex: 1;
  font-weight: 600;
}

.sponsor-icon {
  font-size: 1.5rem;
}

.sponsor-display {
  background: rgba(240, 253, 244, 0.1);
  border: 2px solid var(--dark-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sponsor-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--rainbow-green);
}

.sponsor-text {
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-card:nth-child(4n + 1) {
  background-color: rgba(224, 242, 254, 0.1);
}

.testimonial-card:nth-child(4n + 2) {
  background-color: rgba(254, 243, 199, 0.1);
}

.testimonial-card:nth-child(4n + 3) {
  background-color: rgba(252, 231, 243, 0.1);
}

.testimonial-card:nth-child(4n + 4) {
  background-color: rgba(243, 232, 255, 0.1);
}

.testimonial-card:nth-child(4n + 1):hover {
  border-color: var(--primary-blue);
}

.testimonial-card:nth-child(4n + 2):hover {
  border-color: var(--primary-yellow);
}

.testimonial-card:nth-child(4n + 3):hover {
  border-color: var(--rainbow-pink);
}

.testimonial-card:nth-child(4n + 4):hover {
  border-color: var(--primary-purple);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--dark-gray);
  padding-top: 1rem;
}

.testimonial-author p {
  margin: 0.25rem 0;
  font-style: normal;
}

.testimonial-author strong {
  color: var(--text-dark);
}

.date {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   DOWNLOADS SECTION
   ============================================ */

.downloads {
  background: transparent;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.download-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-red));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
}

.download-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.download-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.download-card p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.download-card .download-icon {
  color: white;
  background-color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background-color: var(--primary-purple);
  color: white;
}

.contact .section-header h2,
.contact .section-header p {
  color: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-icon img {
  height: 40px;
  width: auto;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}


.contact-button-container {
  text-align: center;
  margin-top: 2rem;
}

.contact-form {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .services-grid,
  .pricing-grid,
  .downloads-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  h1,
  h2,
  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .about-content h2,
  .kindness-content h2,
  .kidcare-content h2 {
    font-size: 1.75rem;
  }

  .decor-options {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {

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

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

.service-card {
  animation: fadeIn 0.6s ease;
}

/* ============================================
   CONFETTI STYLES
   ============================================ */

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
  background-color: var(--dark-gray);
}

.photo-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.photo-grid .card {
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-grid .card:hover {
  transform: scale(1.05);
}

.photo-grid .card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .photo-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .photo-grid {
    column-count: 1;
  }
}

/* ============================================
   SHOWCASE GALLERY
   ============================================ */

.showcase-grid {
  column-count: 4;
  column-gap: 1rem;
}

.showcase-item {
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .showcase-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    column-count: 1;
  }
}


/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev-button,
.next-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next-button {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-button:hover,
.next-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ============================================
   HAPPINESS COACHING SECTION
   ============================================ */
.happiness {
  background-color: #f0f9ff;
  /* Light blue background */
  color: var(--text-dark);
}

.happiness-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.happiness-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.happiness-services ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.happiness-services li {
  background: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--primary-purple);
}

/* ============================================
   JAY'S KID CARE SECTION
   ============================================ */
.kidcare {
  background-color: #fff7ed;
  /* Light orange background */
  color: var(--dark-gray);
  /* Ensure text is dark */
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern or gradient overlay for "slickness" */
.kidcare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.kidcare-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kidcare .section-header h2 {
  color: var(--primary-orange);
}

.kidcare .section-header p {
  color: var(--dark-gray);
  font-size: 1.2rem;
  opacity: 0.9;
}

.kidcare-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

.kidcare-activities ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.kidcare-activities li {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.kidcare-activities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary-orange), var(--primary-yellow));
  transition: width 0.3s ease;
}

.kidcare-activities li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px -5px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.kidcare-activities li:hover::before {
  width: 100%;
  opacity: 0.1;
}

/* Icons for the list items */
.kidcare-activities li:nth-child(1)::after {
  content: "🎨";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(2)::after {
  content: "📚";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(3)::after {
  content: "🎲";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(4)::after {
  content: "🌟";
  margin-left: auto;
  font-size: 1.5rem;
}

.btn-kidcare {
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */
.certificates-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: var(--primary-dark-blue);
  transition: transform 0.3s ease;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 3rem;
}

/* Donation Input Styling */
.donation-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--primary-purple);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  color: var(--primary-purple);
  font-weight: bold;
}

.donation-input::placeholder {
  color: var(--primary-purple);
  opacity: 0.8;
}

.no-context-menu {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
:root {
  --primary-purple: #490096;
  --primary-dark-blue: #0a2c47;
  --primary-red: #a73234;
  --primary-yellow: #fbbf24;
  --primary-orange: #f97316;
  --primary-teal: #14b8a6;
  --light-blue: #e0f2fe;
  --light-yellow: #fef3c7;
  --light-pink: #fce7f3;
  --light-green: #dcfce7;
  --light-purple: #f3e8ff;
  --rainbow-pink: #ec4899;
  --rainbow-green: #10b981;
  --rainbow-blue: #3b82f6;
  --dark-gray: #1f2937;
  --light-gray: #f3f4f6;
  --border-gray: #e5e7eb;
  --text-dark: #ffffff;
  --text-light: #cbd5e1;

}


:root {
  --accent-pink: #ff6ad5;
  --accent-cyan: #22d3ee;
}

.hero {
  background: linear-gradient(135deg,
      var(--primary-purple),
      var(--primary-dark-blue),
      var(--primary-red),
      var(--accent-cyan));
  background-size: 300% 300%;
  animation: gradientShift 14s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.hero-title {
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.btn.btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--primary-blue));
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(30, 58, 138, 0.35);
  filter: brightness(1.05);
}

.cta-button {
  background-image: linear-gradient(90deg,
      var(--accent-pink),
      var(--accent-cyan));
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(236, 72, 153, 0.35);
}

/* Cards: stronger hover tilt/shadow */
.service-card {
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05) rotate3d(1, 1, 0, 6deg);
  box-shadow: 0 28px 60px rgba(255, 255, 255, 0.2);
}

.pricing-card {
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-6px) rotate3d(1, -1, 0, 5deg);
  box-shadow: 0 22px 55px rgba(255, 255, 255, 0.2);
}

/* Testimonials: stars gold + subtle background flair */
.testimonials {
  background:
    radial-gradient(1200px 600px at 50% -10%,
      rgba(236, 254, 255, 0.1) 0%,
      transparent 60%),
    linear-gradient(to bottom, rgba(240, 253, 244, 0.1), transparent);
}

.testimonial-card .stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

/* Footer: gradient and brighter text */
.footer {
  background: linear-gradient(135deg, #111827, #1f2937 40%, #0b1020);
  color: #cbd5e1;
}

/* Less pastel: crisp surfaces */
.services {
  background-color: transparent;
  color: white;
}

/* Ensure headings and subtext remain readable on dark background */
.services .section-header h2,
.services .section-header p {
  color: white;
}

.service-card,
.pricing-card {
  background: #fff;
  border: 1px solid var(--border-gray);
}

/* Replace emoji icons with modern SVG masks */
.service-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: currentColor;
  color: #ffffff;
  display: block;
  font-size: 0;
  opacity: 0.95;
}

.service-card:nth-child(1) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3a9 9 0 0 0-9 9c0 4 3 6 6 6h1.5a1.5 1.5 0 0 0 0-3H10a3 3 0 0 1-3-3 7 7 0 1 1 7 7h-1'/><circle cx='7.5' cy='10.5' r='1' fill='%23000'/><circle cx='10.5' cy='7.5' r='1' fill='%23000'/><circle cx='14' cy='7.5' r='1' fill='%23000'/><circle cx='16' cy='10.5' r='1' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3a9 9 0 0 0-9 9c0 4 3 6 6 6h1.5a1.5 1.5 0 0 0 0-3H10a3 3 0 0 1-3-3 7 7 0 1 1 7 7h-1'/><circle cx='7.5' cy='10.5' r='1' fill='%23000'/><circle cx='10.5' cy='7.5' r='1' fill='%23000'/><circle cx='14' cy='7.5' r='1' fill='%23000'/><circle cx='16' cy='10.5' r='1' fill='%23000'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(2) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3c3 0 5 2.5 5 5.5S13.5 15 12 15s-5-3-5-6.5S9 3 12 3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3c3 0 5 2.5 5 5.5S13.5 15 12 15s-5-3-5-6.5S9 3 12 3z'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(3) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3l1.8 4.5L18 9l-4.2 1.5L12 15l-1.8-4.5L6 9l4.2-1.5L12 3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 3l1.8 4.5L18 9l-4.2 1.5L12 15l-1.8-4.5L6 9l4.2-1.5L12 3z'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(4) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8c0-2.2 4-3 8-3s8 .8 8 3-4 5-8 5-8-2.8-8-5z'/><circle cx='9' cy='9' r='1' fill='%23000'/><circle cx='15' cy='9' r='1' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8c0-2.2 4-3 8-3s8 .8 8 3-4 5-8 5-8-2.8-8-5z'/><circle cx='9' cy='9' r='1' fill='%23000'/><circle cx='15' cy='9' r='1' fill='%23000'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(5) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l10-4v12L3 14v-4z'/><path d='M13 8l6-2v12l-6-2'/><path d='M3 14l2 5h3l-1-4'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l10-4v12L3 14v-4z'/><path d='M13 8l6-2v12l-6-2'/><path d='M3 14l2 5h3l-1-4'/></svg>") center / contain no-repeat;
}

.service-card:nth-child(6) .service-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 16l2-2M3 12l4-1M8 20l1-4M16 5l2-2M20 8l-4-1M19 15l-3 2'/><circle cx='12' cy='12' r='3' fill='%23000'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 16l2-2M3 12l4-1M8 20l1-4M16 5l2-2M20 8l-4-1M19 15l-3 2'/><circle cx='12' cy='12' r='3' fill='%23000'/></svg>") center / contain no-repeat;
}

/* Download icon modern */
.download-icon {
  width: 36px;
  height: 36px;
  background: currentColor;
  color: #1f2937;
  display: inline-block;
  font-size: 0;
}

.download-card .download-icon {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v10'/><path d='M8 11l4 4 4-4'/><rect x='4' y='17' width='16' height='3' rx='1'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v10'/><path d='M8 11l4 4 4-4'/><rect x='4' y='17' width='16' height='3' rx='1'/></svg>") center / contain no-repeat;
}

/* VIBRANT SERVICE CARDS (modern gradients) */
.services .service-card {
  border: none;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services .service-card:nth-child(1) {
  background: linear-gradient(135deg, #ff6ad5, #f97316);
}

.services .service-card:nth-child(2) {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.services .service-card:nth-child(3) {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.services .service-card:nth-child(4) {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
}

.services .service-card:nth-child(5) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  text-shadow: none;
}

.services .service-card:nth-child(6) {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Make icons visible on gradients */
.services .service-card:nth-child(5) .service-icon {
  color: #1f2937;
  opacity: 0.9;
}

/* PRICING CARDS: colorful header ribbons */
.pricing-card {
  position: relative;
  overflow: hidden;
  border: none;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.pricing-card:nth-child(2)::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.pricing-card:nth-child(3)::before {
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
}

.pricing-card:nth-child(4)::before {
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}

.pricing-card:nth-child(5)::before {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.pricing-card:nth-child(6)::before {
  background: linear-gradient(90deg, #10b981, #3b82f6);
}

.pricing-card .price {
  color: #0f172a;
}

.pricing-card .btn {
  margin-top: 0.5rem;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  background-color: var(--primary-dark-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  /* Removed underline from buttons */
}

.btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(73, 0, 150, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-kindness {
  background: linear-gradient(135deg,
      var(--rainbow-pink),
      var(--primary-purple));
  color: white;
}

.btn-kindness:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-orange {
  background-image: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
  color: white;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-kidcare {
  background-color: var(--primary-orange);
  color: white;
}

.btn-kidcare:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-decor {
  background-color: var(--primary-purple);
  color: white;
}

.btn-decor:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-sponsor {
  background-color: var(--rainbow-green);
  color: white;
}

.btn-sponsor:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-download {
  background-color: var(--rainbow-blue);
  color: white;
}

.btn-download:hover {
  background-color: var(--primary-dark-blue);
  transform: translateY(-2px);
}

.cta-button {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-purple);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary-dark-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--dark-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--primary-yellow));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.logo-text {
  color: var(--text-dark);
}

.logo-img {
  height: 2.5rem;
  /* Match the old icon size */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .cta-button {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #a855f7, #ec4899);
  color: white;
  padding: 5rem 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.blob-1 {
  width: 10rem;
  height: 10rem;
  background-color: var(--primary-yellow);
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 10rem;
  height: 10rem;
  background-color: white;
  bottom: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-logo-img {
  max-width: 400px;
  height: auto;
  animation: slideInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.5rem;
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 50rem;
  margin: 0 auto 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 40rem;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background-color: #490096;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

/* Removed older gradient background so the new dark image background applies */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  /* Start with transparent border */
  cursor: pointer;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.service-card:nth-child(6n + 1) {
  background-color: var(--light-blue);
}

.service-card:nth-child(6n + 2) {
  background-color: var(--light-yellow);
}

.service-card:nth-child(6n + 3) {
  background-color: var(--light-pink);
}

.service-card:nth-child(6n + 4) {
  background-color: var(--light-purple);
}

.service-card:nth-child(6n + 5) {
  background-color: var(--light-green);
}

.service-card:nth-child(6n + 6) {
  background-color: var(--light-blue);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

.service-card:nth-child(6n + 1):hover {
  border-color: var(--primary-blue);
}

.service-card:nth-child(6n + 2):hover {
  border-color: var(--primary-yellow);
}

.service-card:nth-child(6n + 3):hover {
  border-color: var(--rainbow-pink);
}

.service-card:nth-child(6n + 4):hover {
  border-color: var(--primary-purple);
}

.service-card:nth-child(6n + 5):hover {
  border-color: var(--rainbow-green);
}

.service-card:nth-child(6n + 6):hover {
  border-color: var(--primary-teal);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.service-card p {
  color: var(--text-light);
  /* Changed to dark text for readability */
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  background: transparent;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 2px solid var(--dark-gray);
}

.pricing-section h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  padding: 1.5rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--text-dark);
  /* Changed to dark text for readability */
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.pricing-card:nth-child(6n + 1) {
  background-color: var(--light-blue);
}

.pricing-card:nth-child(6n + 2) {
  background-color: var(--light-yellow);
}

.pricing-card:nth-child(6n + 3) {
  background-color: var(--light-pink);
}

.pricing-card:nth-child(6n + 4) {
  background-color: var(--light-purple);
}

.pricing-card:nth-child(6n + 5) {
  background-color: var(--light-green);
}

.pricing-card:nth-child(6n + 6) {
  background-color: var(--light-blue);
}

.pricing-card:nth-child(6n + 1):hover {
  border-color: var(--primary-blue);
}

.pricing-card:nth-child(6n + 2):hover {
  border-color: var(--primary-yellow);
}

.pricing-card:nth-child(6n + 3):hover {
  border-color: var(--rainbow-pink);
}

.pricing-card:nth-child(6n + 4):hover {
  border-color: var(--primary-purple);
}

.pricing-card:nth-child(6n + 5):hover {
  border-color: var(--rainbow-green);
}

.pricing-card:nth-child(6n + 6):hover {
  border-color: var(--primary-teal);
}

.pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #111827;
  /* Changed to dark text for readability */
}

.package-details {
  font-size: 0.875rem;
  color: #6b7280;
  /* Changed to a darker color for readability */
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.pricing-card .btn-primary {
  background-image: linear-gradient(90deg,
      var(--primary-purple),
      var(--rainbow-blue));
  color: white;
}

.pricing-card .btn-primary:hover {
  background-color: var(--primary-purple);
  box-shadow: 0 10px 25px rgba(73, 0, 150, 0.3);
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ============================================
   KINDNESS SECTION
   ============================================ */

.kindness {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.kindness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kindness-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kindness-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kindness-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.kindness-benefits {
  background: linear-gradient(135deg,
      rgba(254, 202, 202, 0.1),
      rgba(216, 180, 254, 0.1));
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.kindness-benefits p {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.kindness-benefits ul {
  list-style: none;
}

.kindness-benefits li {
  padding: 0.5rem 0;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .kindness-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COACHING SECTION
   ============================================ */

.coaching {
  background: transparent;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.coaching-quote {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.coaching-content p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.coaching-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(224, 242, 254, 0.2);
  transform: translateX(10px);
}

.emoji {
  font-size: 1.5rem;
}

.coaching-pricing {
  background: linear-gradient(135deg,
      rgba(207, 250, 254, 0.1),
      rgba(186, 230, 253, 0.1));
  padding: 2rem;
  border-radius: 1.5rem;
}

.coaching-pricing h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coaching-pricing p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.coaching-pricing input[type="text"].donation-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: var(--primary-purple);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.coaching-pricing input[type="text"].donation-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.coaching-pricing input[type="text"].donation-input:focus {
  outline: none;
  background: purple;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--dark-gray);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.price-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  margin-right: 1rem;
}

.price-option:hover {
  border-color: var(--primary-purple);
  background: rgba(240, 249, 255, 0.2);
}

.price-option input[type="radio"]:checked~.option-content {
  color: var(--primary-purple);
  font-weight: 600;
}

.option-content {
  flex: 1;
}

.option-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.option-desc {
  font-size: 0.875rem;
  color: var(--text-light);
}

.option-price {
  font-weight: bold;
  color: var(--primary-purple);
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .coaching-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   KIDCARE SECTION
   ============================================ */

.kidcare {
  position: relative;
  background-image: url("images/jay-background-1.jpg");
  /* White background with clown */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}

.kidcare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kidcare-content {
  background: rgba(255, 255, 255, 0.85);
  /* Semi-transparent white overlay */
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-orange);
  /* Burst of orange */
  backdrop-filter: blur(5px);
}

.kidcare-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark-blue);
}

.kidcare-content p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.kidcare-features {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.6), rgba(254, 215, 170, 0.6));
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border-left: 5px solid var(--primary-blue);
}

.kidcare-features ul {
  list-style: none;
}

.kidcare-features li {
  padding: 0.5rem 0;
  color: var(--primary-dark-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.kidcare-features li::before {
  content: "🧸";
  margin-right: 10px;
}

.kidcare .tagline {
  font-style: italic;
  font-weight: 700;
  color: var(--primary-orange);
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .kidcare {
    background-attachment: scroll;
    /* Better performance on mobile */
  }

  .kidcare-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BALLOON DECOR SECTION
   ============================================ */

.balloon-decor {
  position: relative;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  /* Purple gradient */
  padding: 6rem 0;
  color: white;
}

.balloon-content {
  background: rgba(20, 10, 40, 0.75);
  /* Dark semi-transparent overlay */
  padding: 3rem;
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--primary-yellow);
  /* Pop of yellow */
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
  backdrop-filter: blur(5px);
}

.balloon-decor .section-header h2 {
  color: var(--primary-yellow);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.balloon-decor .section-header p {
  color: white;
  font-size: 1.3rem;
}

.balloon-content p {
  font-size: 1.1rem;
  color: var(--light-blue);
  margin-bottom: 2rem;
}

.balloon-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.balloon-services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.balloon-services li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid var(--rainbow-pink);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.balloon-services li:hover {
  background: var(--rainbow-pink);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--rainbow-pink);
}

@media (max-width: 768px) {
  .balloon-decor {
    background-attachment: scroll;
  }
}

/* ============================================
   SPONSOR SECTION
   ============================================ */

.sponsor {
  background: transparent;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 2px solid var(--dark-gray);
  max-width: 40rem;
  margin: 0 auto;
}

.sponsor-card p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.sponsor-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sponsor-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--dark-gray);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.sponsor-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  margin-right: 1rem;
}

.sponsor-option:hover {
  border-color: var(--rainbow-green);
  background: rgba(240, 253, 244, 0.2);
}

.sponsor-label {
  flex: 1;
  font-weight: 600;
}

.sponsor-icon {
  font-size: 1.5rem;
}

.sponsor-display {
  background: rgba(240, 253, 244, 0.1);
  border: 2px solid var(--dark-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sponsor-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--rainbow-green);
}

.sponsor-text {
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  background: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-card:nth-child(4n + 1) {
  background-color: rgba(224, 242, 254, 0.1);
}

.testimonial-card:nth-child(4n + 2) {
  background-color: rgba(254, 243, 199, 0.1);
}

.testimonial-card:nth-child(4n + 3) {
  background-color: rgba(252, 231, 243, 0.1);
}

.testimonial-card:nth-child(4n + 4) {
  background-color: rgba(243, 232, 255, 0.1);
}

.testimonial-card:nth-child(4n + 1):hover {
  border-color: var(--primary-blue);
}

.testimonial-card:nth-child(4n + 2):hover {
  border-color: var(--primary-yellow);
}

.testimonial-card:nth-child(4n + 3):hover {
  border-color: var(--rainbow-pink);
}

.testimonial-card:nth-child(4n + 4):hover {
  border-color: var(--primary-purple);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--dark-gray);
  padding-top: 1rem;
}

.testimonial-author p {
  margin: 0.25rem 0;
  font-style: normal;
}

.testimonial-author strong {
  color: var(--text-dark);
}

.date {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   DOWNLOADS SECTION
   ============================================ */

.downloads {
  background: transparent;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.download-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-red));
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
}

.download-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.download-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.download-card p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.download-card .download-icon {
  color: white;
  background-color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background-color: var(--primary-purple);
  color: white;
}

.contact .section-header h2,
.contact .section-header p {
  color: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-icon img {
  height: 40px;
  width: auto;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}


.contact-button-container {
  text-align: center;
  margin-top: 2rem;
}

.contact-form {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .services-grid,
  .pricing-grid,
  .downloads-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  h1,
  h2,
  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .about-content h2,
  .kindness-content h2,
  .kidcare-content h2 {
    font-size: 1.75rem;
  }

  .decor-options {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {

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

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

.service-card {
  animation: fadeIn 0.6s ease;
}

/* ============================================
   CONFETTI STYLES
   ============================================ */

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
  background-color: var(--dark-gray);
}

.photo-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.photo-grid .card {
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-grid .card:hover {
  transform: scale(1.05);
}

.photo-grid .card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .photo-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .photo-grid {
    column-count: 1;
  }
}

/* ============================================
   SHOWCASE GALLERY
   ============================================ */

.showcase-grid {
  column-count: 4;
  column-gap: 1rem;
}

.showcase-item {
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .showcase-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    column-count: 1;
  }
}


/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev-button,
.next-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next-button {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-button:hover,
.next-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ============================================
   HAPPINESS COACHING SECTION
   ============================================ */
.happiness {
  background-color: #f0f9ff;
  /* Light blue background */
  color: var(--text-dark);
}

.happiness-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.happiness-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.happiness-services ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.happiness-services li {
  background: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--primary-purple);
}

/* ============================================
   JAY'S KID CARE SECTION
   ============================================ */
.kidcare {
  background-color: #fff7ed;
  /* Light orange background */
  color: var(--dark-gray);
  /* Ensure text is dark */
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern or gradient overlay for "slickness" */
.kidcare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.kidcare-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kidcare .section-header h2 {
  color: var(--primary-orange);
}

.kidcare .section-header p {
  color: var(--dark-gray);
  font-size: 1.2rem;
  opacity: 0.9;
}

.kidcare-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

.kidcare-activities ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.kidcare-activities li {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.kidcare-activities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary-orange), var(--primary-yellow));
  transition: width 0.3s ease;
}

.kidcare-activities li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px -5px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.kidcare-activities li:hover::before {
  width: 100%;
  opacity: 0.1;
}

/* Icons for the list items */
.kidcare-activities li:nth-child(1)::after {
  content: "🎨";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(2)::after {
  content: "📚";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(3)::after {
  content: "🎲";
  margin-left: auto;
  font-size: 1.5rem;
}

.kidcare-activities li:nth-child(4)::after {
  content: "🌟";
  margin-left: auto;
  font-size: 1.5rem;
}

.btn-kidcare {
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */
.certificates-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: var(--primary-dark-blue);
  transition: transform 0.3s ease;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 3rem;
}

/* Donation Input Styling */
.donation-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--primary-purple);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  color: var(--primary-purple);
  font-weight: bold;
}

.donation-input::placeholder {
  color: var(--primary-purple);
  opacity: 0.8;
}

.no-context-menu {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

<!-- Contact Section -->
  <section id="contact" class="contact">
    <div class="container">
      <div class="section-header" style="color: white">
        <h2>Let's Create Magic Together</h2>
        <p>Get in touch to book your next celebration</p>
      </div>

      <div class="contact-info">
        <div class="contact-item">
          <div class="contact-icon">
            <img src="images/gallery/imgi-9-call-us-icon.png" alt="Call Us" />
          </div>
          <h3>Call Us</h3>
          <p>Call: 066 212 7467</p>
          <p>WhatsApp: 082 071 5046</p>
        </div>
        <div class="contact-item">
          <div class="contact-icon">
            <img src="images/gallery/imgi-10-email-icon.png" alt="Email Us" />
          </div>
          <h3>Email</h3>
          <p>Jason<!-- ignore -->@<!-- ignore -->getxcited.co.za</p>
        </div>
        <div class="contact-item">
          <h3>Location</h3>
          <p>Northgate, Johannesburg, South Africa</p>
        </div>
      </div>

      <div class="contact-button-container">
        <a href="https://wa.me/27820715046" class="btn btn-primary" target="_blank">WhatsApp Me</a>
      </div>
    </div>
  </section>
/* Contact Section link styling */
.contact-item a {
  color: white;            /* make links white */
  text-decoration: none;   /* remove underline */
}

.contact-item a:hover {
  text-decoration: underline; /* optional hover effect */
}
