:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* Section */
.curriculum-section {
  padding: 60px 0;
}

/* Card */
.curriculum-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icon */
.curriculum-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 26px;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 16px;
  margin-bottom: 15px;
}

.curriculum-icon i,
.card-icon i {
  color: #0d6efd;
}
.curriculum-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 26px;
  color: #0d6efd;
  background: rgba(253, 69, 13, 0.1);
  border-radius: 16px;
  margin-bottom: 15px;
}

.curriculum-home-icon i,
.card-icon i {
  color: var(--secondary);
}

.feature-icon i {
  color: #fff;
}

/* Title */
.curriculum-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.curriculum-card p {
  color: #555;
  font-size: 15px;
}

/* Read More */
.read-more {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--secondary);
  display: inline-block;
  margin-top: 10px;
  position: relative;
}

.read-more::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--secondary);
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}

.curriculum-card:hover .read-more::after {
  width: 100px;
}

.hero {
  background: var(--navy);
  padding: 100px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45, 125, 210, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 158, 117, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(45, 125, 210, 0.2);
  color: #7bb8f0;
  border: 1px solid rgba(45, 125, 210, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #5bb8ff;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #5bb8ff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

.wave {
  display: block;
  width: 100%;
  background: var(--navy);
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
}

.section {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.1);
}
.card:hover::before {
  opacity: 1;
}

.card.blue::before {
  background: linear-gradient(90deg, #2d7dd2, #5bb8ff);
}
.card.teal::before {
  background: linear-gradient(90deg, #1a9e75, #5dcaa5);
}
.card.amber::before {
  background: linear-gradient(90deg, #e8920a, #fac775);
}
.card.coral::before {
  background: linear-gradient(90deg, #d85a30, #f0997b);
}
.card.green::before {
  background: linear-gradient(90deg, #3b6d11, #97c459);
}
.card.purple::before {
  background: linear-gradient(90deg, #534ab7, #afa9ec);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
}

.card.blue .card-icon {
  background: var(--sky-light);
}
.card.teal .card-icon {
  background: var(--teal-light);
}
.card.amber .card-icon {
  background: var(--amber-light);
}
.card.coral .card-icon {
  background: var(--coral-light);
}
.card.green .card-icon {
  background: var(--green-light);
}
.card.purple .card-icon {
  background: var(--purple-light);
}

.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card.blue .card-tag {
  background: var(--sky-light);
  color: #185fa5;
}
.card.teal .card-tag {
  background: var(--teal-light);
  color: #0f6e56;
}
.card.amber .card-tag {
  background: var(--amber-light);
  color: #854f0b;
}
.card.coral .card-tag {
  background: var(--coral-light);
  color: #993c1d;
}
.card.green .card-tag {
  background: var(--green-light);
  color: #27500a;
}
.card.purple .card-tag {
  background: var(--purple-light);
  color: #3c3489;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.2s ease;
}

.card:hover .card-link {
  gap: 10px;
}

.card.blue .card-link {
  color: var(--sky);
}
.card.teal .card-link {
  color: var(--teal);
}
.card.amber .card-link {
  color: var(--amber);
}
.card.coral .card-link {
  color: var(--coral);
}
.card.green .card-link {
  color: var(--green);
}
.card.purple .card-link {
  color: var(--purple);
}

.feature-strip {
  background: var(--navy);
  padding: 60px 2rem;
  margin: 20px 0;
}

.feature-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.feature-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 180px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  .hero {
    padding: 72px 1.5rem 60px;
  }
  .hero-stats {
    gap: 28px;
  }
  .stat-divider {
    display: none;
  }
  .section {
    padding: 60px 1.25rem;
  }

  .card {
    padding: 28px 24px;
  }
}

.icb-about-playful {
  padding: 80px 0;
  background: #ffffff;
}

/* IMAGE AREA */
.icb-playful-img {
  position: relative;
  text-align: center;
}

/* Blob background */
.shape-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #faccab;
  border-radius: 60% 40% 50% 50%;
  top: -30px;
  left: 40px;
  z-index: 0;
}

/* Main image */
.main-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Small floating image */
.small-img {
  position: absolute;
  width: 140px;
  bottom: -20px;
  right: 30px;
  border-radius: 15px;
  border: 5px solid #fff;
  z-index: 3;
}

/* Badge */
.badge-box {
  position: absolute;
  top: 20px;
  left: 10px;
  /* background: #4caf50; */
  background: var(--secondary);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  z-index: 3;
}

.badge-box h6 {
  margin: 0;
  font-size: 18px;
  color: white;
}

/* CONTENT */
.abt-sub {
  color: #ff7043;
  font-weight: 600;
}

.icb-about-content h2 {
  font-size: 34px;
  margin: 15px 0;
}

.icb-about-content h2 span {
  color: var(--secondary);
}

/* Points */
.points div {
  margin-bottom: 8px;
}

.points i {
  color: #ff7043;
  margin-right: 8px;
}

/* Button */
.btn-play {
  background: linear-gradient(45deg, #ff7043, #ff9800);
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  margin-top: 10px;
}

.btn-play:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .shape-bg {
    left: 10px;
  }

  .small-img {
    display: none;
  }
}

.icb-why-playful {
  padding: 80px 0;
  background: #f9fafb;
}

/* Heading */
.icb-why-playful .subtitle {
  color: #ff7043;
  font-weight: 600;
}

.icb-why-playful h2 {
  font-size: 32px;
  margin-top: 10px;
}

.icb-why-playful p {
  color: #666;
}

/* Card */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
  position: relative;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Icon circle */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
}

/* Different playful colors */
.bg1 {
  background: #4caf50;
}
.bg2 {
  background: #2196f3;
}
.bg3 {
  background: #ff9800;
}
.bg4 {
  background: #e91e63;
}

/* Hover fill animation */
.why-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
}

/* Numbers */
.why-card h4 {
  font-size: 28px;
  margin: 10px 0;
}

/* Text */
.why-card p {
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .icb-why-playful h2 {
    font-size: 26px;
  }
}

.icb-why-content {
  padding: 80px 0;
  background: #ffffff;
}

/* TEXT */
.why-text .subtitle {
  color: #ff7043;
  font-weight: 600;
}

.why-text h2 {
  font-size: 32px;
  margin: 10px 0 15px;
}

.why-text p {
  color: #666;
  margin-bottom: 12px;
}

/* POINTS */
.why-points div {
  margin-bottom: 8px;
  font-size: 14px;
}

.why-points i {
  color: var(--secondary);
  margin-right: 8px;
}

/* IMAGE SECTION */
.why-image {
  position: relative;
  text-align: center;
}

/* Main image */
.why-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Playful shape */
.why-image .shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #e3f2fd;
  border-radius: 50%;
  top: -40px;
  right: 20px;
  z-index: 0;
}

/* Small circle */
.why-image .circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #ff9800;
  border-radius: 50%;
  bottom: -20px;
  left: 30px;
  z-index: 1;
}

/* Hover effect */
.why-image:hover img {
  transform: scale(1.03);
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
  .why-text h2 {
    font-size: 26px;
  }

  .why-image .shape {
    display: none;
  }
}

/* Cta */
.rk-cta {
  background: linear-gradient(135deg, #ffdc2a, #ff3d00);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rk-cta::before,
.rk-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.rk-cta::before {
  width: 200px;
  height: 200px;
  background: #fff;
  top: -50px;
  left: -50px;
}

.rk-cta::after {
  width: 300px;
  height: 300px;
  background: #fff;
  bottom: -100px;
  right: -100px;
}

.cta-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.rk-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.rk-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: #ffffff;
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #ff3d00;
  border: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .rk-cta h2 {
    font-size: 26px;
  }

  .rk-cta p {
    font-size: 16px;
  }
}

/* faq*/
/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&display=swap");

.faq-playful {
  font-family: "Fredoka", sans-serif;
  background: linear-gradient(135deg, #fff7ec, #e6f7ff);
}

/* TITLE */
.faq-title {
  font-size: 40px;
  color: #f6590b;
}

.faq-subtitle {
  color: #666;
}

/* FAQ LIST */
.faq-list {
  max-width: 800px;
  margin: auto;
}

/* ITEM CARD */
.faq-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-3px);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* PLUS ICON */
.faq-question span {
  font-size: 20px;
  color: #4d96ff;
}

/* ANSWER */
.faq-item p {
  padding: 0 20px 15px;
  font-size: 14px;
  color: #555;
}

/* COLOR VARIATIONS */
.faq-item:nth-child(1) {
  border-left: 6px solid #ff8c42;
}
.faq-item:nth-child(2) {
  border-left: 6px solid #28c76f;
}
.faq-item:nth-child(3) {
  border-left: 6px solid #4d96ff;
}
.faq-item:nth-child(4) {
  border-left: 6px solid #ffd93d;
}
.faq-item:nth-child(5) {
  border-left: 6px solid #ff6b6b;
}
.faq-item:nth-child(6) {
  border-left: 6px solid #6bcb77;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
}

/* faq end */

/* SECTION */
.rk-contact-section {
  background: linear-gradient(135deg, #f9fbff, #f1f7ff);
}

/* HEADING */
.rk-contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.rk-contact-subtitle {
  color: #666;
  font-size: 15px;
}

/* MAP */
.rk-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.rk-map-wrapper:hover {
  transform: scale(1.01);
}

/* CARD */
.rk-contact-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  height: 100%;
}

.rk-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ICON CIRCLE */
.rk-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
  color: var(--secondary);
  transition: 0.4s;
}

/* ICON HOVER FILL EFFECT */
.rk-contact-card:hover .rk-icon-circle {
  background: var(--secondary);
  color: #fff;
}

/* TEXT */
.rk-contact-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.rk-contact-card p {
  font-size: 14px;
  color: #555;
}

.rk-contact-card a {
  /* color: #0d6efd; */
  text-decoration: none;
  font-size: 14px;
}

.rk-contact-card a:hover {
  text-decoration: underline;
}

.rk-kidzee-title {
  text-align: center;
  margin-top: 20px;
}

.rk-kidzee-subtitle {
  text-align: center;
  color: gray;
  margin-bottom: 30px;
}

/* Gallery */
.rk-kidzee-gallery {
  width: 90%;
  margin: auto;
}

.rk-kidzee-item {
  /* width: calc(33.333% - 15px); */
  width: calc(25% - 15px);
  margin-bottom: 15px;
}

/* Image wrapper */
.rk-kidzee-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.rk-kidzee-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.rk-kidzee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;
}

.rk-kidzee-overlay i {
  color: #fff;
  font-size: 35px;
  transform: scale(0.7);
  transition: 0.3s;
}

.rk-kidzee-img-wrapper:hover img {
  transform: scale(1.05);
}

.rk-kidzee-img-wrapper:hover .rk-kidzee-overlay {
  opacity: 1;
}

.rk-kidzee-img-wrapper:hover .rk-kidzee-overlay i {
  transform: scale(1);
}

/* Lightbox */
.rk-kidzee-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.rk-kidzee-lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
  transition: transform 0.3s;
}

/* Controls */
.rk-kidzee-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.rk-kidzee-prev,
.rk-kidzee-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.rk-kidzee-prev {
  left: 30px;
}
.rk-kidzee-next {
  right: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .rk-kidzee-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 500px) {
  .rk-kidzee-item {
    width: 100%;
  }
}
.rk-kidzee-section-title {
  margin: 50px 0 50px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}
