:root {
  --white: #ffffff;
  --review-text: #5a5a5a;
  --title: #353a58;
  --blue: #0091f9;
  --deep-blue: #0091f9;
  --bright-yellow: #ffd32a;
  --soft-yellow: #ffe170;
  --cloud: #f8fbff;
  --charcoal: #1a1b2b;
  --text: #2b2d42;
  --muted: #5c6178;
  --parent-testimonial-text: #4e4e4e;
  --card-shadow: 0px 6px 4px 0px #00000029;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cloud);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1300px, 90vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  color: var(--charcoal);
  margin: 0 0 16px;
  line-height: 1.2;
	text-align: center;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

/* Header */

.site-header {
  background: var(--blue);
  padding: 30px 0;
}

.nav-bar {
  width: 1176px;
  height: 80px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  box-shadow: 0 25px 45px rgba(0, 18, 86, 0.18);
}

.logo {
  font-family: "Lexend";
  font-size: 27px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav a:hover {
  text-decoration: underline;
}

.nav a.active {
  color: #0091f9;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  color: #fff;
  padding: 120px 0 220px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy blockquote {
  width: 675px;
  height: 200px;
  font-family: "Lexend";
  font-style: semibold;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0%;
  margin: 2px;
}

.author {
  width: 675px;
  height: 28px;
  font-family: "Lexend";
  font-style: semibold;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  opacity: 0.87;
}

.hero-illustration {
  display: flex;
  justify-content: center;
}

.hero-illustration img {
  margin-left: 150px;
}

.hero-circle {
  background: #fff;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.08);
}

.hero-circle img {
  width: 190px;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 230px;
  background: url("https://kidsmusicgames.com/wp-content/uploads/2025/12/Curve.png")
    center/cover no-repeat;
  pointer-events: none;
}

/* Sections */

section {
  padding: 40px 0;
}

.activities {
  background: var(--bright-yellow);
}

.activities h2 {
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 40px;
  width: 712px;
  height: 48px;
  opacity: 1;
  color: var(--title);
  text-align: center;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}

.custom-navbar-wrapper {
  background-color: #1c8cff;
  padding: 30px 0;
}

.custom-navbar {
  background: #ffffff;
  padding: 20px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative; /* needed for dropdown positioning */
}

.navbar-menu a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  display: block;
}

/* Dropdown menu */
.navbar-menu li ul.sub-menu {
  display: none; /* hide by default */
  position: absolute;
  top: 100%; /* place below parent */
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
  border-radius: 20px;
}

/* Dropdown items */
.navbar-menu li ul.sub-menu li a {
  padding: 10px 15px;
  color: #000;
}

/* Show dropdown on hover */
.navbar-menu li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

/* Optional hover effect */
.navbar-menu li ul.sub-menu li a:hover {
  background-color: #f2f2f2;
  color: #000;
}

.navbar-menu li a {
  color: var(--text);
  text-decoration: none;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.navbar-menu li a:hover {
  opacity: 0.7;
}

/* Single Testimonial Container */
.single-testimonial-content {
  font-family: "Arial", sans-serif; /* clean readable font */
  font-size: 16px;
  color: #333;
  /* padding: 25px 30px; */
  border-radius: 10px;
  margin-bottom: 15px;
  /* white-space: pre-wrap; preserves line breaks */
}

/* Optional paragraph spacing */
.single-testimonial-content p {
  margin-bottom: 1em;
}

/* Author Name */
.single-testimonial-content + .testimonial-author,
.single-testimonial-author {
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #555;
  margin-top: 10px;
  text-align: center;
}

/* Optional styling for emphasis in text */
.single-testimonial-content strong {
  color: #222;
}

/* Optional: responsive adjustments */
@media screen and (max-width: 768px) {
  .single-testimonial-content {
    font-size: 15px;
    padding: 20px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.footer-col h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

/* Remove underline and bullets */
.footer-col ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0;
	text-align: center;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #333 !important;
  text-decoration: none !important; /* remove underline */
  font-size: 16px !important;
  line-height: 1.7;
}

.footer-col a:hover {
  color: #1c8cff !important;
}

.footer-col p {
  color: #333 !important;
  font-size: 16px !important;
  line-height: 1.7;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  background: #f5f5f5;
  font-size: 16px;
  color: #444;
  margin-top: 20px;
}

/* Optional: remove widget extra wrappers */
.footer-col > div {
  margin: 0 !important;
  padding: 0 !important;
}

.play-card,
.testimonial,
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.award-card {
  width: 400px;
  background: #fff7f0;
  border-radius: 18px;
  padding: 28px;
  margin-top: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
  overflow: visible;
}

.award-card_second {
  width: 400px;
  background: #f0fff7;
  border-radius: 18px;
  padding: 28px;
  margin-top: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.award-card_third {
  width: 400px;
  background: #f2f4ff;
  border-radius: 18px;
  padding: 28px;
  margin-top: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.play-card img,
.award-card img,
.review-card img {
  border-radius: 14px;
  margin: 0 auto 24px;
  display: block;
}

.play-card {
  text-align: center;
  margin-top: 30px;
  width: 378px;
}

.play-card h3 {
  font-family: "Lexend";
  font-style: semibold;
  font-weight: 700;
  font-size: 23px;
  line-height: 29.95px;
  letter-spacing: 0;
  width: 328px;
  height: 60px;
  margin: 0 auto 20px;
}

.award-card h3 {
  color: var(--title);
  font-family: "Lexend";
  font-weight: 700;
  font-size: 23px;
  line-height: 29.95px;
  letter-spacing: 0;
  width: 328px;
  height: 60px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.award-card_second h3,
.award-card_third h3 {
  color: var(--title);
  font-family: "Lexend";
  font-weight: 700;
  font-size: 23px;
  line-height: 29.95px;
  letter-spacing: 0;
  width: 328px;
  height: 60px;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.review-card h3 {
  color: var(--title);
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 23px;
  line-height: 29.95px;
  text-align: left;
  margin-bottom: 20px;
}

.play-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: #f0f8ff;
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  font-weight: 500;
  color: #4a5568;
}

.card-actions:last-child {
  margin-bottom: 0;
}

.card-actions span {
  font-size: 15px;
  color: #4a5568;
}

.card-actions .play-btn-new {
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  background: #22c55e;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-actions .play-btn-new:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.cta-btn {
  border: none;
  padding: 10px 28px;
  font-family: "Lexend";
  font-style: medium;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  border-radius: 30px;
  text-align: center;
  background: var(--deep-blue);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 60.79px;
  margin: 30px auto 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.awards {
  background: #fff;
}

.awards h2 {
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
  width: 422.74px;
  height: 48px;
  color: var(--title);
  margin: 0 auto;
}

.award-card ul,
.award-card_second ul,
.award-card_third ul {
  width: 328px;
  margin: 0 auto;
  padding-left: 20px;
  list-style: disc;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.award-card ul li,
.award-card_second ul li,
.award-card_third ul li {
  width: 328px;
  font-family: "Lexend";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  letter-spacing: 0;
  color: #4e4e4e;
  opacity: 1;
  margin-bottom: 8px;
  text-align: left;
}

.award-logos {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  opacity: 0.8;
}

.award-logos img {
  width: 181px;
  height: 121px;
  object-fit: contain;
}

/* Testimonials */

.testimonials.yellow {
  background: var(--bright-yellow);
}

.testimonials.neutral {
  background: var(--cloud);
}

.testimonials h2 {
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  width: 563px;
  height: 48px;
  color: var(--title);
  margin: 0 auto 50px;
}

.cards-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 items per row */
  gap: 20px;
}

.cards-grid.three {
  grid-template-columns: repeat(4, 1fr); /* Always 4 items per row */
}

.testimonial {
  width: 272px;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  border-radius: 15px;
  opacity: 1;
}

.teachers-testimonial {
  width: 272px;
  height: auto;
  min-height: auto;
}

.testimonial p {
  width: 232px;
  font-family: "Lexend";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0;
  margin: 0;
  color: var(--parent-testimonial-text);
}

.testimonial p.testimonial-author {
  width: 232px !important;
  min-height: 26px !important;
  height: auto !important;
  font-family: "Lexend" !important;
  font-weight: 700 !important;
  font-style: Bold !important;
  font-size: 16px !important;
  line-height: 26px !important;
  text-align: center !important;
  vertical-align: middle !important;
  color: var(--title) !important;
  margin: 10px auto 0 !important;
}

.testimonial strong {
  width: 232px;
  height: 52px;
  color: var(--title);
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.grandparents-testimonial {
  width: 270px;
  height: 350px;
  min-height: 350px;
  background: #fff7f0;
  display: flex;
  flex-direction: column;
}

.grandparents-testimonial p:not(.testimonial-author) {
  flex: 1;
  margin-bottom: 0;
}

.grandparents-testimonial p.testimonial-author {
  margin-top: auto;
  margin-bottom: 0;
  width: 232px !important;
}

.grandparents-testimonial p {
  color: var(--parent-testimonial-text);
  font-family: "Lexend";
  font-style: regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  width: 232px;
  min-height: 96px;
  height: auto;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.grandparents-testimonial strong {
  font-family: "Lexend";
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  color: var(--title);
  margin: 0 auto;
  display: block;
}

/* Kids Testimonials */
.testimonial.kid {
  width: 310px;
  height: auto;
  min-height: auto;
  background: #f0fff7;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  border-radius: 15px;
  opacity: 1;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial.kid p {
  font-family: "Lexend";
  font-style: regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100% !important;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial.kid strong {
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 100%;
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid #fff;
}

.reviews.blue {
  background: var(--blue);
  color: #fff;
}

.reviews h2 {
  font-family: "Lexend";
  font-style: bold;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: var(--white);
}

.reviews .cards-grid {
  gap: 30px;
}

.reviews .review-card {
  text-align: center;
}

.reviews .review-card {
  background: #f0f7ff;
  color: var(--text);
}

.reviews .review-card ul {
  text-align: left;
  width: 328px;
  height: 318px;
}

.reviews .review-card ul li {
  font-family: "Lexend";
  font-style: regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  color: var(--review-text);
  text-align: left;
}

.reviews .cta-btn {
  margin-top: 40px;
}

.reviews .cta-btn.outline {
  background: var(--bright-yellow);
  color: #000000;
  border: none;
}

/* Footer */

.site-footer {
  background: #ffffff;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
}

.footer-about {
  max-width: 376px;
}

.site-footer h4 {
  font-family: "Lexend";
  font-weight: 700;
  font-size: 20px;
  color: var(--title);
  margin-bottom: 14px;
  margin-top: 0;
}

.site-footer p {
  font-family: "Lexend";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--review-text);
  margin: 0;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.site-footer p .read-more {
  color: var(--blue);
  text-decoration: none;
  font-weight: 400;
}

.site-footer p .read-more:hover {
  text-decoration: underline;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  font-family: "Lexend";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--review-text);
  margin-top: 20px;
  margin-bottom: 8px;
  display: block;
}

.site-footer li a {
  color: var(--review-text);
  text-decoration: none;
  display: inline;
}

.site-footer li a:hover {
  color: var(--blue);
}

.footer-contact li:first-child {
  color: var(--review-text);
}

.footer-contact li a {
  color: #5a5a5a;
}

.footer-copyright {
  background: #fafafa;
  padding: 30px 0;
  /* margin-top: 80px; */
  width: 100%;
}

.footer-copy {
  text-align: center;
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.video-content {
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
}

#youtubeIframe {
  width: 100%;
  height: 500px;
}

.close-btn {
  position: absolute;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
	margin-left: 50%;
}

/* Wrapper */
.testimonial-content-wrapper {
  position: relative;
  margin-bottom: 10px;
}

/* Default button style */
.read-more-btn {
  background-color: #007bff; /* primary blue */
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}

/* Hover effect */
.read-more-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Smooth text transition */
.testimonial-content {
  transition: all 0.3s ease-in-out;
}

.single-review-wrapper {
  background-color: #ffe73a; /* yellow background */
  padding: 80px 20px;
/*   text-align: center; */
}

.review-title {
  top: auto !important;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2e2a5f;
}

.review-card {
  /* max-width: 900px; */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

section.reviews-section {
  padding: 0;
}

a.read-more.readMore{
  color: var(--blue) !important;
}

/* Responsive */

@media (max-width: 1250px) {
  .nav-bar {
    width: calc(100% - 40px);
  }
}

@media (max-width: 767px) {
  .content-container {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 15px;
  }

  /* .content-container > * {
    width: 100%;
    max-width: 100%;
  } */

  .container {
    width: 90vw;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .nav-bar {
    width: calc(100% - 40px);
    max-width: 100%;
    flex-direction: column;
    height: auto;
    padding: 20px;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
  }

  .nav-bar .logo {
    order: 1;
    margin-bottom: 10px;
    text-align: center;
  }

  .nav-bar .nav {
    order: 2;
    justify-content: center;
    gap: 14px;
    width: 100%;
  }

  .custom-navbar {
    width: calc(100% - 40px);
    max-width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin: 0 auto;
  }

  .custom-navbar-wrapper {
    padding: 20px 0;
  }

  .custom-navbar .logo {
    order: 1;
    margin-bottom: 10px;
    text-align: center;
  }

  .custom-navbar .navbar-menu {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-copy blockquote {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 38px;
    height: auto;
  }

  .author {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-illustration img {
    margin-left: 0;
  }

  .activities h2 {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .play-card,
  .award-card,
  .award-card_second,
  .award-card_third {
    width: 100%;
    max-width: 100%;
  }

  .testimonials h2,
  .awards h2,
  .reviews h2 {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
  }

  .cards-grid.four {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .testimonial {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    margin: 0 auto;
  }

  .testimonial p {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }

  .testimonial p.testimonial-author {
    width: 100% !important;
    max-width: 100% !important;
  }

  .testimonial strong {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .teachers-testimonial {
    width: 100%;
    max-width: 100%;
  }

  .grandparents-testimonial {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
  }

  .grandparents-testimonial p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px;
    line-height: 20px;
    min-height: auto;
  }

  .grandparents-testimonial p.testimonial-author {
    width: 100% !important;
    max-width: 100% !important;
  }

  .grandparents-testimonial strong {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .cards-grid.three {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .read-more-btn {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 18px;
    margin-top: 12px;
    width: auto;
    min-width: 120px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-content-wrapper {
    margin-bottom: 12px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 40px 0 120px;
  }

  .wave {
    height: 120px;
  }

  .nav-bar {
    padding: 15px;
    gap: 12px;
  }

  .logo {
    font-size: 20px;
  }

  .nav a {
    font-size: 12px;
    padding: 8px 10px;
  }

  .play-card,
  .award-card,
  .award-card_second,
  .award-card_third {
    padding: 20px;
    margin-top: 0;
  }

  .card-actions {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .card-actions span {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px;
  }
}

/* Hide all items by default */
.award-list li {
  display: none;
}

/* These items will be visible */
.award-list li.show {
  display: list-item;
}

/* Phone Screens (max-width: 480px) */
@media (max-width: 480px) {
  .content-container {
    padding: 0 12px;
  }

  .container {
    width: 100%;
    padding: 0 12px;
  }

  .nav-bar {
    padding: 12px;
    gap: 10px;
  }

  .nav-bar .logo,
  .custom-navbar .logo {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .nav,
  .navbar-menu {
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav a,
  .navbar-menu a {
    font-size: 11px;
    padding: 6px 8px;
  }

  .hero {
    padding: 30px 0 100px;
  }

  .hero-copy blockquote {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
  }

  .author {
    font-size: 16px;
    margin-top: 12px;
  }

  .hero-inner {
    gap: 20px;
  }

  section {
    padding: 40px 0;
  }

  .activities h2,
  .testimonials h2,
  .awards h2,
  .reviews h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 24px;
  }

  .cards-grid {
    gap: 16px;
  }

  .play-card,
  .award-card,
  .award-card_second,
  .award-card_third {
    padding: 16px;
  }

  .play-card h3,
  .award-card h3,
  .award-card_second h3,
  .award-card_third h3 {
    font-size: 18px;
    line-height: 24px;
    height: auto;
  }

  .card-actions {
    padding: 8px 10px;
    gap: 8px;
  }

  .card-actions span {
    font-size: 12px;
  }

  .card-actions .play-btn-new {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .testimonial {
    padding: 16px 12px;
  }

  .testimonial p {
    font-size: 13px;
    line-height: 18px;
  }

  .testimonial strong {
    font-size: 16px;
    line-height: 22px;
  }

  .cta-btn {
    width: 140px;
    height: 45px;
    font-size: 16px;
    padding: 8px 20px;
  }

  .footer-grid {
    gap: 24px;
    padding: 30px 12px;
  }

  .site-footer h4 {
    font-size: 18px;
  }

  .site-footer p,
  .site-footer li {
    font-size: 14px;
    line-height: 20px;
  }

  .wave {
    height: 100px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
}

.popup-box p {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

#closePopup {
  padding: 8px 20px;
  background: #ff4b4b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Small Phone Screens (max-width: 375px) */
@media (max-width: 375px) {
  .content-container {
    padding: 0 10px;
  }

  .container {
    padding: 0 10px;
  }

  .nav-bar {
    padding: 10px;
  }

  .nav-bar .logo,
  .custom-navbar .logo {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .nav a,
  .navbar-menu a {
    font-size: 10px;
    padding: 5px 6px;
  }

  .hero-copy blockquote {
    font-size: 22px;
    line-height: 28px;
  }

  .author {
    font-size: 15px;
  }

  .activities h2,
  .testimonials h2,
  .awards h2,
  .reviews h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .play-card,
  .award-card,
  .award-card_second,
  .award-card_third {
    padding: 14px;
  }

  .card-actions {
    padding: 6px 8px;
  }

  .testimonial {
    padding: 14px 10px;
  }

  .footer-grid {
    padding: 24px 10px;
  }
}

@media (max-width: 540px) {
  .hero-circle {
    width: 220px;
    height: 220px;
  }

  .hero-circle img {
    width: 150px;
  }

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

  .card-actions {
    flex-direction: column;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards-grid.four {
    grid-template-columns: repeat(1, 1fr);
  }
}