/* Color palette classes */
.green{ background-color: #39B54A !important; }
.yellow{ background-color: #FFCA0E !important; }
.orange{ background-color: #F79520 !important; }
.red{  background-color: #E92429 !important; }
.purple{ background-color: #94007b !important; }
.cyan{ background-color: #6ecff2 !important; }
.white{ background-color: #fff; }
.blue{ background-color: #225096; }
.darkBlue { background-color: #0a1d4c; }
/* Removed lightBrown and darkBrown usage */

@font-face {
  font-family: 'Luckiest Guy';
  src: url('fonts/Chewy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: #fff;
  color: #0a1d4c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

.flexRow {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-end;
}

.logo-standalone {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 10;
  width: 180px;
  height: auto;
}
.logo-standalone-img {
  width: 130px;
  height: auto;
  display: block;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.detached-navbar {
  position: absolute;
  top: 48px;
  right: 48px;
  left: auto;
  margin: 0;
  width: auto;
  min-width: 320px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,80,150,0.10);
  padding: 0.25rem 1.5rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  background: #0a1d4c;
  z-index: 20;
  height: 56px;
}

.navbar {
  background: #0a1d4c;
  box-shadow: none;
  height: 35px;
  padding: 0;
}
.logo-area {
  position: absolute;
  left: 0;
  top: 0;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: flex-start;
  z-index: 3;
}
.logo {
  height: 120px;
  width: 120px;
  object-fit: contain;
  margin-top: -20px;
  margin-left: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 50%;
  border: 4px solid #6ecff2;
}

.nav-links {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Lato', Arial, sans-serif;
  background: transparent;
  box-sizing: border-box;
}
.nav-links a.active, .nav-links a:hover {
  background: #6ecff2;
  color: #0a1d4c;
  border-radius: 16px;
  height: 48px;
  display: flex;
  align-items: center;
}


.educators-section {
      padding-top: 0.5rem ;
    padding-bottom: 0.5rem ;
}

.hero-section {
  /* Remove background image, keep other styles */
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  filter: drop-shadow(0px 10px 10px #6ecff2);
  background-attachment: scroll !important;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #6ecff2 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #0a1d4c;
  margin-top: -20px;
  margin-bottom: 60px;
}
.hero-content p{
  font-size: large;
}

.hero-content h1, section h1, section h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #0a1d4c;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  filter: none !important;
}

/* Remove any shadow or stroke from headings */
.hero-content h1, section h1, section h2 {
  text-shadow: none;
  -webkit-text-stroke: 0;
  filter: none;
}

.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.7em 2em;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #0a1d4c;
  transition: background 0.2s, color 0.2s;
  font-family: 'Lato', Arial, sans-serif;
}
.btn.yellow { background: #FFCA0E; color: #0a1d4c; }
.btn.blue { background: #225096; color: #fff; }
.btn.green { background: #39B54A; color: #fff; }
.btn.purple { background: #94007b; color: #fff; }
.btn.cyan { background: #6ecff2; color: #0a1d4c; }
.btn.orange { background: #F79520; color: #fff; }
.btn.red { background: #E92429; color: #fff; }

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  background: #fff; */
}
section h2, section h1 {
  margin-top: 0;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  position: relative;
}
.testimonial-slider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.testimonial-arrow {
  background: #6ecff2;
  color: #0a1d4c;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.testimonial-arrow:hover {
  background: #FFCA0E;
}
.testimonials blockquote {
  background: #6ecff2;
  color: #0a1d4c;
  border-left: 6px solid #225096;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  font-style: italic;
  margin: 0;
  flex: 1 1 250px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  min-width: 0;
}
.testimonials span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #225096;
}

.faq-section details {
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  color: #0a1d4c;
}
.faq-section summary {
  font-weight: 600;
  cursor: pointer;
  font-family: 'Lato', Arial, sans-serif;
}

.pricing-tiers {
  list-style: disc inside;
  margin: 1rem 0 2rem 1rem;
  color: #0a1d4c;
  font-family: 'Lato', Arial, sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin-top: 1.5rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.7em;
  border-radius: 6px;
  border: 1.5px solid #6ecff2;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}
.contact-form button {
  align-self: flex-start;
}

.emoji-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.emoji-parallax-img {
  position: absolute;
  will-change: transform;
  pointer-events: none;
  opacity: 0.3;
  /* Example sizes, can be customized per emoji */
}
.emoji-parallax-1 { left: 5vw; top: 10vh; width: 60px; }
.emoji-parallax-2 { left: 80vw; top: 20vh; width: 40px; }
.emoji-parallax-3 { left: 20vw; top: 60vh; width: 50px; }
.emoji-parallax-4 { left: 60vw; top: 70vh; width: 70px; }
.emoji-parallax-6 { left: 40vw; top: 30vh; width: 55px; }
.emoji-parallax-8 { left: 70vw; top: 10vh; width: 45px; }
.emoji-parallax-12 { left: 10vw; top: 80vh; width: 65px; }
.emoji-parallax-15 { left: 50vw; top: 50vh; width: 35px; }

.emoji-corner {
  position: absolute;
  width: 110px;
  height: 110px;
 
  z-index: 4;
  pointer-events: none;
}
.emoji-corner-left {
  bottom: -40px;
  left: -40px;
}
.emoji-corner-right {
  bottom: -40px;
  right: -40px;
  rotate: 5deg;
}
.emoji-corner-topright {
  top: -40px;
  right: -40px;
}
.flip-horizontal {
  transform: scaleX(-1);
}

section {
  position: relative;
  overflow: visible;
}

.site-footer {
  width: 100%;
  background: #0a1d4c;
  color: #fff;
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 12px rgba(34,80,150,0.08);
  flex-shrink: 0;
  z-index: 1;
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #6ecff2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  border-radius: 8px;
  padding: 2px 10px;
}
.footer-links a:hover {
  color: #FFCA0E;
  background: #225096;
}
.footer-social {
  font-size: 1.2rem;
  color: #FFCA0E;
}
.footer-company {
  font-size: 0.95rem;
  color: #e8ebef;
  text-align: center;
}
@media (max-width: 700px) {
  .footer-content { padding: 0 1rem; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 900px) {
  .emoji-parallax-img { width: 56px; height: 56px; }
}
@media (max-width: 700px) {
  .emoji-parallax-img { width: 40px; height: 40px; }
}

@media (max-width: 900px) {

  .logo-standalone-img {
    width: 120px;
  }


}
@media (max-width: 700px) {

  .logo-standalone-img {
    width: 70px;
  }

 .nav-links a{
  gap:5px;
 padding: 0 12px;

 }
.detached-navbar {
  right: 16px;
}
}

@media (max-width: 450px) {
  .logo-standalone-img {
    opacity: 0;
  }
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.about-img-col {
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  justify-content: center;
}
.about-main-img {
  width: 100%;
  max-height: 260px;
   max-width: 260px;
  border-radius: 18px;
filter: drop-shadow(0px 0px 50px #6ecff2);
  /* background: #fff; */
}
.about-text-col {
  flex: 2 1 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0px 0 3px #6ECFF1;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #6ecff2;
  border-radius: 18px;
  margin: 2.5rem 0 0 0;
  padding: 2rem 1rem 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
}
.about-pillars-img {
  width: 100%;
  max-width: 420px;
  margin-bottom: 1.2rem;
  background: transparent;
  display: block;
}
.about-pillars-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  gap: 0.5rem;
}
.pillar-label {
  flex: 1 1 0;
  text-align: center;
  font-family: 'Luckiest Guy', cursive;
  color: #0a1d4c;
  font-size: 1.1rem;
  background: #fff;
  border-radius: 10px;
  margin: 0 0.2rem;
  padding: 0.3em 0.7em;
  box-shadow: 0 1px 4px rgba(34,80,150,0.08);
  letter-spacing: 1px;
}
.about-pillars-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.2rem;
  gap: 0.3rem;
}
.about-pillars-img-inline {
  width: 90%;
  max-width: 90%;
  background: transparent;
  display: block;
  margin-bottom: 0.2rem;
  filter: drop-shadow(0 2px 8px rgba(34,80,150,0.10));
}
.about-pillars-labels-inline {
  display: flex;
  justify-content: flex-end;
  gap: 0.3rem;
}
.about-pillars-labels-inline .pillar-label {
  font-size: 0.95rem;
  background: #6ecff2;
  color: #0a1d4c;
  border-radius: 8px;
  padding: 0.18em 0.5em;
  font-family: 'Luckiest Guy', cursive;
  box-shadow: 0 1px 4px rgba(34,80,150,0.08);
  margin: 0;
}
@media (max-width: 900px) {
  .about-flex { flex-direction: column; gap: 1.5rem; }
 
  .about-pillars-img, .about-pillars-labels { max-width: 280px; }
}
@media (max-width: 700px) {

  .about-pillars-img, .about-pillars-labels { max-width: 160px; }
  .about-pillars { padding: 1rem 0.2rem 0.7rem 0.2rem; }
  .pillar-label { font-size: 0.85rem; padding: 0.2em 0.3em; }
}

/* New star rating styles */
.product-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.2rem;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.15em;
  margin-bottom: 0.2em;
}
.star-icon {
  font-size: 2.1rem;
  color: #FFCA0E;
  display: inline-block;
  margin-right: 0.05em;
  filter: drop-shadow(0 1px 2px rgba(34, 80, 150, 0.50));
  transform-origin: 50% 80%;
  position: relative; /* Needed for the ::after absolute positioning */
}

.star-icon.half {
  color: #e8ebef;
}

.star-icon.half::after {
  content: '\2605';
  color: #FFCA0E;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: inline-block;
  pointer-events: none;
}


.star-label {
  font-size: 1.1rem;
  color: #0a1d4c;
  font-weight: 700;
  margin-left: 0.5em;
  font-family: 'Lato', Arial, sans-serif;
}

@keyframes rocking {
  0% { transform: rotate(-18deg); }
  20% { transform: rotate(12deg); }
  40% { transform: rotate(-8deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-6deg); }
  100% { transform: rotate(-18deg); }
}
.rocking-star {
  animation: rocking 2.5s infinite cubic-bezier(.68,-0.55,.27,1.55);
  display: inline-block;
}
.rocking-star:nth-child(2) { animation-delay: 0.2s; }
.rocking-star:nth-child(3) { animation-delay: 0.4s; }
.rocking-star:nth-child(4) { animation-delay: 0.6s; }
.rocking-star:nth-child(5) { animation-delay: 0.8s; }

/* @media (max-width: 900px) {
  .star-icon { font-size: 1.3rem; }
  .star-label { font-size: 0.95rem; }
}
@media (max-width: 700px) {
  .star-icon { font-size: 1rem; }
  .star-label { font-size: 0.8rem; }
} */

.amazon-img-topright {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 90px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,80,150,0.10);
  background: #fff;
  z-index: 3;
}
.product-section {
  position: relative;
}
@media (max-width: 900px) {
  .amazon-img-topright { width: 60px; top: 10px; right: 10px; border-radius: 12px; }
}
@media (max-width: 700px) {
  .amazon-img-topright { width: 38px; top: 6px; right: 6px; border-radius: 8px; }
}

.product-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.2rem;
  justify-content: space-between;
}
.product-info-col {
  flex: 0 1 260px;
  min-width: 180px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}
.product-desc {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.product-img-col {
  flex: 1 1 180px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.product-img-label {
  font-family: 'Luckiest Guy', cursive;
  color: #fff;
  background: #6ecff2;
  border-radius: 12px 12px 0 0;
  font-size: 1.1rem;
  padding: 0.3em 1.1em 0.2em 1.1em;
  margin-bottom: -8px;
  box-shadow: 0 2px 8px rgba(34,80,150,0.10);
  letter-spacing: 1px;
}
.product-4in1-img {
  width: 120px;
  max-width: 100%;
  /* Height will be set dynamically via JS to 2x the combined height of heading+stars */
  background: #fff;
  display: block;
  height: var(--product-4in1-img-height, auto);
  transition: height 0.2s;
}
.product-header-inline {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
  justify-content: flex-start;
  position: relative;
}
.product-header-inline .star-rating {
  margin-bottom: 0;
}
.product-header-inline h2 {
  margin: 0 0.2rem 0 0;
  font-size: 1.5rem;
  font-family: 'Luckiest Guy', cursive;
  color: #0a1d4c;
  letter-spacing: 1px;
  display: inline-block;
}
.product-4in1-above-btn {
  position: relative;
  width: auto;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.product-desc-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.product-desc-text {
  flex: 1 1 0;
}

.product-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
}
.product-col-main {
  flex: 2 1 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.product-col-img {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product-4in1-side {
  height: 7.2rem;
  width: auto;
  border-radius: 16px;
  background: none;

  display: block;
}
.product-flex.product-4in1-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.2rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.product-img-col.product-4in1-img-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 220px;
  margin: 0 !important;
}
.product-4in1-above-btn {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  height: auto;
  margin: 0 auto;
}
.product-info-col.product-4in1-info-col {
  flex: 0 1 260px;
  min-width: 180px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .product-flex.product-4in1_row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.2rem !important;
  }
  .product-img-col.product-4in1-img-col {
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    margin-bottom: 0.2rem !important;
    margin-top: 0 !important;
  }
  .product-4in1-above-btn {
    width: auto;
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }
  .product-info-col.product-4in1-info-col {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    gap: 0.3rem !important;
  }

}

@media (max-width: 700px) {
  .product-flex.product-4in1_row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.2rem !important;
  }
  .product-img-col.product-4in1-img-col {
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    margin-bottom: 0.2rem !important;
    margin-top: 0 !important;
  }
  .product-4in1-above-btn {
    width: auto;
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }
  .product-info-col.product-4in1-info-col {
    margin-bottom: 0.1rem !important;
    gap: 0.5rem !important;
  }

}

/* Responsive logo size for non-index pages */
@media (max-width: 1270px) {
  body:not(.home) .logo-standalone-img {
    max-width: 80px !important;
  }
}

.shop-section > *, .contact-section > * {
  min-width: 600px;
}
@media (max-width: 700px) {
  .shop-section > *, .contact-section > * {
    min-width: 0;
  }
}