/* GENERAL STYLINGS */

body{
font-family: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden !important;
}

p{
  margin-top: 0;
  margin-bottom: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; 
}

.overlay-text 
{
  position: absolute;   /* overlay text */
  color: white;
}


/* GENERAL STYLINGS */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* HEADER STYLINGS */

.header {
  padding-top: 0.7vw;
  padding-bottom: 0.7vw;
  padding-left: 2vw;
  padding-right: 2vw;
  background: #ffe066;
  color: white;
}

.address{
  font-size: 0.7rem;
}

.contact{
  font-size: 1rem;
  text-align: right;
}

@media (max-width: 978px) {
  .address {
    font-size: 0.3rem;
  }
  .contact{
    font-size: 0.3rem;
  }
}

/* HEADER STYLINGS */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* NAVBAR STYLINGS */

.navbar{
  background-color: #fcf9ea;
  color: #f3ac22 !important; 
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* 700 = bold */
  padding-left: 1.5em;
  padding-right: 1.5em;
  position:sticky;
  top: 0;
  z-index: 10;
}

.navbar-nav {
  --bs-nav-link-color: #f3ac22;        /* default link color */
  --bs-nav-link-hover-color: #f3ac22; /* hover color */
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #f3ac22;
}

.navbar-nav .nav-link {
  position: relative;          /* so ::after is positioned relative to link */
  text-decoration: none;       /* remove default underline */
  padding-bottom: 3px;         /* space for the underline */
  display: inline-block;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;                    /* start hidden */
  height: 2px;                 /* thickness of underline */
  background-color: #f3ac22;   /* your brand yellow */
  transition: width 0.3s ease; /* smooth expand */
  transform: translateX(-50%); 
}

.navbar-nav .nav-link:hover::after, 
.navbar-nav .nav-link.active::after {
  width: 90%;              
}

.joinOurTeam{
  background-color: #ffbd59 !important;
  color: white !important;
  font-weight: 600;
  border-radius: 30px;
  border: 3px solid #ffbd59 !important;
  border-color: #ffbd59;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-right: 0.6em;
  padding-left: 0.6em;
  transition: background-color 0.2s ease, 
              color 0.2s ease, 
              border-color 0.2s ease; /* smooth transitions */
}

.joinOurTeam:hover {
  background-color: transparent !important; /* transparent background */
  color: #ffbd59 !important;  
  border: 3px solid #ffbd59 !important;
  border-color: #ffbd59 !important;        /* yellow border */
}

.navbar-brand {
    padding-top: 0 !important; 
    padding-bottom: 0 !important;

}

/* NAVBAR STYLINGS */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* FOOTER STYLINGS */

footer {
  margin-top: auto;
}

.copyright{
  font-size: 0.7rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3vw;
  padding-right: 3vw;
  background: #ffde59;
  color: black;
  text-align: center;
}

/* FOOTER STYLINGS */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* OTHER INFO STYLE */

.otherinfo{
  background:#ffefae;
  padding: 3vw;
  z-index: 10;
}

.otherinfo p {
  color: #737373;       /* change text color */
  line-height: 1.5;  /* improve readability */
  margin-bottom: 6px; /* spacing between paragraphs */
  font-size: 0.8em;
}

.otherinfo h6 {
  margin-top: 2em;
  color: #626262;       /* change text color */
  line-height: 1.5;  /* improve readability */
  margin-bottom: 6px; /* spacing between paragraphs */
  font-weight: 700; /* 700 = bold */
}

.vivid-name{
  color: #626262 !important;
  line-height: 0 !important;  /* improve readability */
  margin-bottom: 0!important; /* spacing between paragraphs */
  margin-top: 2em !important;
}

.icon {
  width: 1em;      /* adjust as needed */
  height: auto;
  margin-right: 8px;
  vertical-align: middle; /* keeps icon aligned with text */
}

.otherinfo a {
  text-decoration: none;
}

.otherinfo a:hover {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .otherinfo .row > [class^='col-'] {
    max-width: 100% !important;
    float: none !important;
    text-align: center !important;
  }
}
@media (max-width: 767.98px) {
  .otherinfo .row > [class^='col-'] {
    max-width: 100% !important;
    float: none !important;
  }
}
@media (max-width: 767.98px) {
  .otherinfo .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .otherinfo .row > [class^='col-'] {
    margin-left: auto;
    margin-right: auto;
  }
}


/* OTHER INFO STYLE */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* HOMEPAGE STYLE */

.Home-Section1{
  width: 100vw;       
  height: 50vh;
  background: #434343;
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
}

.Home-Section1 img {
  width: 100%;   /* scales image to fit width */
  height: 100%;  
  object-fit: cover;  /* options: cover | contain | fill | scale-down */
}

.Home-Section2{
  width: 100vw;     
  min-height: 50vh;
  background: linear-gradient(131deg,rgba(248, 228, 167, 1) 0%, rgba(250, 165, 0, 1) 100%);
  z-index: 0;
  position: sticky;
  top: 0; 
  text-align: center;
  color: white;
}

.Home-Section2-Button{
  background-color: white !important;
  color: #d98238 !important;
  font-weight: 500;
  border-radius: 30px;
  border: 3px solid white !important;
  border-color: white;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-right: 0.6em;
  padding-left: 0.6em;
  margin-top: 5vh;
  margin-left: 1vh;
  margin-right: 1vh;
  margin-bottom: 10vh;
  min-width: 10vw;
  transition: background-color 0.2s ease, 
              color 0.2s ease, 
              border-color 0.2s ease; /* smooth transitions */
}


.Home-Section2-Button:hover {
  background-color: transparent !important; /* transparent background */
  color: white !important;  
  border: 3px solid white !important;
  border-color: white !important;        /* yellow border */
}

.sub1{
  font-weight: 700;
  padding-top: 10vh;

}

.sub2{
  color: #d98238;
  font-weight: 700;
  padding-bottom: 3vh;
}

.sub3{
  color: #ffbd59;
  font-weight: 700;
  padding-bottom: 2vh;
  padding-top: 10vh;
}

.Home-Section3{
  width: 100vw;       
  background: #f6f7f1;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #545454;
}


@keyframes blurOut {
  from { filter: blur(0px); }
  to   { filter: blur(10px); } /* adjust strength */
}

 .carousel-pic-size{
  height: 40vw;
  width: auto;
}

.carousel-control-next-icon {
    background-image: url("/images/RightCarousel.png");
}

.carousel-control-prev-icon {
    background-image: url('/images/LeftCarousel.png');
}

.carousel{
  padding-top: 10vh;
  padding-bottom: 10vh;
} 

.Home-Section4{
  width: 100vw;       
  min-height: 60vh;
  background: #f6f7f1;
  position: relative;
  z-index: 2;
  padding-left: 8vw;
  padding-right: 8vw;
  padding-top: 5vw;
  padding-bottom: 5vw;
  color: #737373;
}

.image-container{
  border-radius: 3em;
  margin-left: 1vw;
  margin-right: 1vw;
  min-height: 30vh;
}

.image-container2{
  border-radius: 3em;
  min-height: 30vh;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.spacer{
  margin-right: 2vw;
  margin-top: 2vw;
  padding-bottom: 2vw;
}

.Home-Section4 h3, .Home-Section4 h4{
  color: #d46f2a;
  font-weight: 700;
}

.contained-image{
  width: 100%;
  height: auto;
}


.vivid-programs-grid {
  margin-top: 3rem;
}

/* Base card */
.program-panel {
  border-radius: 32px;
  padding: 2.6rem 3rem 2.3rem;
  color: #ffffff;
  text-align: center;
  min-height: 280px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  position: relative;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.7s ease;
  background-size: 140% 140%;
}

/* ================================
   VIVID PROGRAMS & SERVICES – SAFE UNIQUE CLASSES NEW 
   ================================ */

.vps-section {
    width: 100vw;
    min-height: 70vh;
    background: radial-gradient(circle at top left, #ffe9b5 0, #ffeec9 45%, #fff7df 100%);
    position: relative;
    z-index: 2;
    padding: 8vh 7vw;
    text-align: center;
}

.vps-section h1 {
    color: #272727;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.vps-section > p {
    color: #5d5d5d;
    max-width: 760px;
    margin: 0 auto 3rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* GRID */
.vps-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.3rem;
    max-width: 1550px;
    margin: 0 auto;
}

/* CARD BASE */
.vps-card {
    position: relative;
    border-radius: 26px;
    padding: 2.1rem 1.9rem 1.8rem;
    color: #1f1f1f;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(0) scale(1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-position 0.5s ease;
    background-size: 140% 140%;
}

.vps-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    top: -80px;
    right: -60px;
    filter: blur(28px);
    opacity: 0.35;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}

.vps-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.2);
}

/* COLOR VARIANTS */
.vps-cyan {
    background-image: linear-gradient(135deg, #6fdaf3, #6ac8f8);
}
.vps-purple {
    background-image: linear-gradient(135deg, #e1b5ff, #caa6ff);
}
.vps-green {
    background-image: linear-gradient(135deg, #b8f38e, #9cd865);
}
.vps-orange {
    background-image: linear-gradient(135deg, #ffc46b, #ffac4a);
}

/* IMAGE */
.vps-card-image {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    margin-bottom: 1.4rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    transform: translateY(0) scale(1);
    transition: transform 0.45s ease, background-position 0.45s ease;
}

.vps-card:hover .vps-card-image {
    transform: translateY(-6px) scale(1.05);
    background-position: center 40%;
}

/* TEXT */
.vps-card h3 {
    color: #1f1f1f;
    font-weight: 800;
    font-size: 1.18rem;
    margin-bottom: 0.6rem;
}

.vps-card p {
    color: #2f2f2f;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

/* LINK */
.vps-card-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: left;
    gap: 0.35rem;
    color: #1f1f1f;
    margin-left: 200px;
}

.vps-card-link::after {
    content: "→";
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.vps-card-link:hover::after {
    transform: translateX(4px);
}

.vps-card-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.8);
    transition: width 0.25s ease;
}

.vps-card-link:hover::before {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vps-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .vps-section {
        padding: 6vh 6vw;
    }
    .vps-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .vps-card {
        padding: 1.8rem 1.6rem 1.6rem;
    }
    .vps-card-image {
        height: 190px;
    }
}




/* end*/

/* =========================================
   HERO – FULLER, TALLER, MORE DETAILED
   ========================================= */

   
   .vivid-hero-feature {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 40px auto;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.vivid-hero-feature img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(0.85);
}

.vivid-hero-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255,236,207,0.4), rgba(255,255,255,0.6));
    backdrop-filter: blur(4px);
}

.badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge .dot {
    width: 10px;
    height: 10px;
    background: #FFA726;
    border-radius: 50%;
}

.top-badge {
    top: 20px;
    right: 25px;
}

.bottom-badge {
    bottom: 20px;
    left: 25px;
}


.tall-hero {
  width: 100%;
  min-height: 50vh;                 /* maximize height */
  padding: 8vh 6vw 6vh 6vw;
  background: radial-gradient(circle at top left, #ffe8b3 0, #fff6de 35%, #fffaf0 100%);
  position: sticky;
  top: 0px;
  overflow: hidden;
}

/* soft blobs on both sides */
.hero-bg-decoration {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.5;
  z-index: 1;
}

.hero-bg-left {
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, #ffe1a3 0, transparent 70%);
}

.hero-bg-right {
  top: -140px;
  right: -150px;
  background: radial-gradient(circle, #ffd38a 0, transparent 70%);
}

.hero-main-row {
  position: relative;
  z-index: 3;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100vw !important;
    }
}

.container-fluid{
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* LEFT TEXT */
.home-hero-copy {
  max-width: 580px;
}

.home-hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d28728;
  margin-bottom: 0.6rem;
}

.home-hero-title {
  font-size: 2.9rem;
  line-height: 1.2;
  font-weight: 800;
  color: #363636;
  margin-bottom: 1.1rem;
}

.home-hero-title span {
  color: #d8741f;
}

.home-hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2.1rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* BUTTONS */
.hero-btn-primary,
.hero-btn-secondary {
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.25s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ffaf3b, #f48b15);
  border: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(242, 148, 24, 0.45);
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(242, 148, 24, 0.55);
}

.hero-btn-secondary {
  background: #fff;
  border: 2px solid #f3ac22;
  color: #d27b24;
}

.hero-btn-secondary:hover {
  background: #fff4de;
  transform: translateY(-4px) scale(1.01);
}

/* RIGHT VISUAL */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 2rem auto 0;
}

/* REMOVE OLD PHOTO CARD CSS COMPLETELY */
/* AND REPLACE WITH THESE CLEAN RULES */

/* Circle Background */
.hero-circle-bg {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb23e, #f49a32);
    right: -40px;
    top: 20px;
    z-index: 1;
}

/* Main Photo */
.hero-main-image {
    position: relative;
    z-index: -1;
    width: 1250px;
    height: auto;
    object-fit: contain;
    transform: translateX(40px);
}

/* Adjust wrapper */
.hero-visual-wrapper {
    position: relative;
    height: 520px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating chips */
.floating-info-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    z-index: 3;
}

.chip-top {
    top: -18px;
    right: 18%;
}

.chip-bottom {
    bottom: -22px;
    left: 16%;
}

.floating-info-chip .chip-dot {
    width: 10px;
    height: 10px;
    background: #ffb23e;
    border-radius: 50%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {

    .hero-circle-bg {
        width: 360px;
        height: 360px;
        right: 0;
        margin: 0 auto;
    }

    .hero-main-image {
        width: 90%;
        transform: translateX(0);
    }

    .hero-visual-wrapper {
        height: auto;
        margin-top: 30px;
    }
}

/* Hide hero image on mobile */
@media (max-width: 768px) {
    .hero-visual-wrapper,
    .hero-circle-bg,
    .hero-main-image,
    .floating-info-chip {
        display: none !important;
    }
}

/* Big circle + container */
.hero-main-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;              /* controls height; tweak if needed */
  border-radius: 40px;
  overflow: hidden;
  /* circle background (like sample hero) */
  background:
    radial-gradient(circle at 70% 45%, #ffb13c 0, #f8a538 45%, #f49a32 75%, #f19732 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

/* Child + teacher photo inside the circle */
.hero-main-photo img {
  position: absolute;
  right: -6%;                 /* push a bit to the right so table fits */
  bottom: -4%;                /* show more of the legs/table */
  height: 118%;               /* slightly taller than container for full coverage */
  width: auto;
  max-width: none;
  object-fit: contain;        /* avoid cropping */
}

/* Floating chips on the image */
.floating-info-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.floating-info-chip .chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb23e;
}

.chip-top {
  top: -18px;
  right: 12%;
}

.chip-bottom {
  bottom: -22px;
  left: 12%;
}

/* Soft glow shapes around visual */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(12px);
  z-index: -1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: #ffe3b0;
  top: -30px;
  left: -20px;
}

.shape-2 {
  width: 90px;
  height: 90px;
  background: #ffd18a;
  bottom: -10px;
  right: -15px;
}

.shape-3 {
  width: 65px;
  height: 65px;
  background: #ffe9c6;
  bottom: 40px;
  left: -35px;
}

/* RESPONSIVE tweak for smaller screens */
@media (max-width: 991px) {
  .hero-visual-wrapper {
    margin-top: 2.5rem;
  }

  .hero-main-photo {
    max-width: 480px;
    margin-inline: auto;
  }

  .hero-main-photo img {
    right: -4%;
    bottom: -2%;
    height: 115%;
  }

  .floating-info-chip {
    font-size: 0.78rem;
    padding: 0.5rem 1.1rem;
  }
}

@media (max-width: 575px) {
  .hero-main-photo {
    border-radius: 26px;
  }
}


/* Floating chips on the image */
.floating-info-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.floating-info-chip .chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb23e;
}

.chip-top {
  top: -18px;
  right: 12%;
}

.chip-bottom {
  bottom: -22px;
  left: 12%;
}

/* Soft glow shapes around visual */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(12px);
  z-index: -1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: #ffe3b0;
  top: -30px;
  left: -20px;
}

.shape-2 {
  width: 90px;
  height: 90px;
  background: #ffd18a;
  bottom: -10px;
  right: -15px;
}

.shape-3 {
  width: 65px;
  height: 65px;
  background: #ffe9c6;
  bottom: 40px;
  left: -35px;
}

/* BOTTOM HIGHLIGHT STRIP */
.hero-highlight-strip {
  margin-top: 3.5rem;
  padding: 1.2rem 1.8rem 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  z-index: 4;
  position: relative;
}

.hero-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.4rem;
}

.hero-highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff3df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-highlight-text h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #444;
}

.hero-highlight-text p {
  font-size: 0.86rem;
  margin: 0;
  color: #666;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
  .tall-hero {
    min-height: auto;
    padding: 6vh 0 6vh;
  }
  .hero-main-row {
    text-align: center;
  }
  .home-hero-actions {
    justify-content: center;
  }
  .hero-visual-wrapper {
    margin-top: 2.5rem;
  }
  .floating-info-chip {
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .home-hero-title {
    font-size: 2.1rem;
  }
  .hero-highlight-strip {
    margin-top: 2.5rem;
    padding-inline: 1rem;
  }
}
/* ----------- Gradients (Darker Pastels for readability) ----------- */

.program-panel-play {
  background-image: linear-gradient(135deg, #f8d18b, #e8a64f);
}

.program-panel-iep {
  background-image: linear-gradient(135deg, #f5e3bf, #e8c791);
}

.program-panel-teachers {
  background-image: linear-gradient(135deg, #cfc0ff, #b6a6f0);
}

.program-panel-safe {
  background-image: linear-gradient(135deg, #bfe7ff, #8ecef0);
}

/* ----------- Glow Accent Shapes ----------- */

.program-panel::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
  background: rgba(255, 255, 255, 0.35);
  top: -50px;
  right: -30px;
  pointer-events: none;
}

.program-panel::after {
  /* this is now replaced via per-card background-image classes */
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0; /* hidden until hover */
  transform: scale(1);
  transition:
    opacity 0.45s ease,
    transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

/* Hover: reveal faded background image */
.program-panel:hover::after {
  opacity: 0.30;
  transform: scale(1.06);
}

/* ----------- Per-Card Background Images ----------- */

.panel-bg-play::after {
  background-image: url("/images/playbased.png");
}

.panel-bg-iep::after {
  background-image: url("/images/indied.png");
}

.panel-bg-teachers::after {
  background-image: url("/images/teachers.jpg");
}

.panel-bg-safe::after {
  background-image: url("/images/safe.png");
}

/* ----------- Icon Circle ----------- */

.program-panel-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 2;
}

.program-panel-icon img {
  width: 58%;
  height: auto;
  animation: programIconFloat 3.2s ease-in-out infinite;
}

/* Float animation */
@keyframes programIconFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ----------- Text Styles (with readability shadow) ----------- */

.program-panel-tag,
.program-panel-title,
.program-panel-text {
  text-shadow: 0px 2px 4px rgba(0,0,0,0.22);
  z-index: 2;
  position: relative;
}

.program-panel-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 0.4rem;
}

.program-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.program-panel-text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 1.3rem;
  color: #ffffff;
  opacity: 0.98;
}

/* ----------- Button ----------- */

.program-panel-btn {
  border: none;
  outline: none;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  background: #ffffff;
  color: #444;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  position: relative;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.program-panel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  background-color: #ffbd59;
  color: #4b3000;
}

/* ----------- Card Hover Motion ----------- */
.program-panel:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  background-position: 100% 0;
}

/* ----------- Responsive Tweaks ----------- */

@media (max-width: 991.98px) {
  .program-panel {
    padding: 2.3rem 2.2rem 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .program-panel {
    border-radius: 26px;
    padding: 2rem 1.6rem 1.8rem;
  }
}

/* ===========================
   PARENT TESTIMONIAL VIDEO SECTION
   =========================== */

/* ===========================
   PARENT TESTIMONIAL VIDEO — FIXED + CENTERED
   =========================== */

.vivid-testimonial-section {
  width: 100%;
  padding: 6vh 0 7vh 0;
  
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.vivid-testimonial-section .container-xxl {
  max-width: 1250px; /* centers content and prevents overly wide screens */
  margin: 0 auto;
  padding: 0 2rem;
}

/* subtle top curve overlap */
.vivid-testimonial-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.06), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

/* Make 2-column layout stack nicely on mobile */
@media (max-width: 991px) {
  .vivid-testimonial-section .row {
    text-align: center;
  }

  .vivid-testimonial-copy {
    margin: 0 auto 1.5rem auto;
  }

  .vivid-testimonial-video-card {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .vivid-testimonial-section .container-xxl {
    padding: 0 1.2rem;
  }
}

.vivid-testimonial-copy {
  max-width: 480px;
}

.vivid-testimonial-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e58b33;
  margin-bottom: 0.6rem;
}

.vivid-testimonial-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #444444;
  margin-bottom: 0.8rem;
}

.vivid-testimonial-text {
  font-size: 0.95rem;
  color: #5b5b5b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.vivid-testimonial-highlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.3rem;
}

.vivid-testimonial-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #555;
}

.vivid-testimonial-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f3ac22;
  font-size: 0.8rem;
}

.vivid-testimonial-badge {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #ffe7a5;
  color: #704700;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Video card */

.vivid-testimonial-video-card {
  background: linear-gradient(135deg, #ffe6b3, #ffd3a1);
  border-radius: 30px;
  padding: 1.2rem 1.2rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

/* soft glow elements */
.vivid-testimonial-video-card::before,
.vivid-testimonial-video-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.3;
  pointer-events: none;
}

.vivid-testimonial-video-card::before {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  top: -40px;
  right: -20px;
}

.vivid-testimonial-video-card::after {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -70px;
  left: -40px;
}

.vivid-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* 16:9 ratio */
.vivid-video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.vivid-video-wrapper iframe,
.vivid-testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vivid-video-label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.vivid-video-label .pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #444;
  font-weight: 600;
}

.vivid-video-label .pill-soft {
  background: rgba(255, 255, 255, 0.7);
  color: #5c5c5c;
}

/* Responsive */

@media (max-width: 991.98px) {
  .vivid-testimonial-section {
    padding: 5vh 6vw 6vh 6vw;
  }
  .vivid-testimonial-copy {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .vivid-testimonial-section {
    padding: 5vh 4vw 5vh 4vw;
  }
  .vivid-testimonial-title {
    font-size: 1.5rem;
  }
}


/* ===========================
   SERVICES OFFERED / CORE THERAPIES
   =========================== */

.vivid-services-section {
  width: 100%;
  padding: 6vh 0 5vh 0;
  background: #f6f7f1; /* same base as other home sections */
  display: flex;
  justify-content: center;
}

.vivid-services-section .container-xxl {
  max-width: 1250px;        /* same width as testimonial section */
  margin: 0 auto;
  padding: 0 2rem;
}

.services-panel-row {
  margin-top: 2rem;
}

.services-panel {
  background: radial-gradient(circle at top left, #ffe7b1 0, #ffe2a0 20%, #ffe6b8 55%, #ffeeda 100%);
  border-radius: 28px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

/* decorative blobs */
.services-panel::before,
.services-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.35;
  pointer-events: none;
}

.services-panel::before {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.65);
  top: -80px;
  right: -40px;
}

.services-panel::after {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.35);
  bottom: -90px;
  left: -20px;
}

.services-panel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.8rem;
}

.services-pill-label {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #fff9ee;
  border: 1px dashed rgba(255, 173, 64, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c07016;
  margin-bottom: 0.7rem;
}

.services-panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #c06312;
  margin-bottom: 0.4rem;
}

.services-panel-text {
  max-width: 720px;
  font-size: 0.95rem;
  color: #5d5d5d;
  line-height: 1.7;
}

/* tag grid */

.services-tag-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.3rem;
  margin-bottom: 1.8rem;
  margin-top: 1rem;
}

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

.service-tag {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-icon-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid #ffb341;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7e6;
  flex-shrink: 0;
}

.service-icon-dot .inner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5951d;
}

.service-copy h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #c06312;
  margin-bottom: 0.15rem;
}

.service-copy p {
  font-size: 0.86rem;
  color: #5e5e5e;
  margin-bottom: 0;
}

/* specialized approaches */

.services-special-box {
  position: relative;
  z-index: 2;
  margin-top: 1.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 18px;
  background: #fff7e6;
  border: 1px dashed #f5a93e;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  font-size: 0.84rem;
}

.services-special-label {
  font-weight: 700;
  color: #c06312;
  margin-bottom: 0;
}

.services-special-list {
  margin-bottom: 0;
  color: #6a6a6a;
}

/* responsive tweaks */

@media (max-width: 991px) {
  .vivid-services-section .container-xxl {
    padding: 0 1.5rem;
  }
  .services-panel {
    padding: 2rem 1.8rem 1.8rem;
  }
}

@media (max-width: 575px) {
  .vivid-services-section .container-xxl {
    padding: 0 1.1rem;
  }
  .services-panel-title {
    font-size: 1.4rem;
  }
}

/* =====================================
   PROGRAMS CTA SECTION
   ===================================== */

.vivid-programs-cta {
  width: 100%;
  padding: 6vh 0 7vh 0;
  background: #f6f7f1; /* matches your other sections */
  display: flex;
  justify-content: center;
  position: relative;
}

/* Optional soft fade at top */
.vivid-programs-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.vivid-programs-cta .container-xxl {
  max-width: 900px;
  text-align: center;
}

/* Title */
.programs-cta-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3f3f3f;
  margin-bottom: 0.7rem;
}

/* Text */
.programs-cta-text {
  font-size: 1rem;
  color: #5e5e5e;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

/* Button */
.programs-cta-btn {
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #ffb85c, #ff9f2b);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 171, 60, 0.35);
  transition: all 0.25s ease;
}

.programs-cta-btn:hover {
  background: linear-gradient(135deg, #ffaa38, #ff8c0c);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 153, 30, 0.45);
}

.programs-cta-btn:active {
  transform: translateY(-1px);
}



/* Scroll reveal base */

.reveal-on-scroll {
  opacity: 1; /* Change from 0 to 1 - make visible by default */
  transform: translateY(0); /* Change from 20px to 0 */
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* When visible - now just for animation effect */

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */

@media (max-width: 767.98px) {
  .Home-Section4{
    padding: 10vw 6vw 8vw;
  }
  .program-badge {
    padding: 1.6rem 1.2rem;
  }
}



/* FACILITIES GRID – UPGRADED VERSION */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.facility-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 340px; /* HIGHER BOXES */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

/* Image */
.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Gradient Overlay */
.facility-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Caption */
.facility-caption {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Hover Effects */
.facility-item:hover img {
    transform: scale(1.12); /* zoom effect */
}

.facility-item:hover {
    transform: translateY(-8px) scale(1.03); /* lift effect */
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.facility-item:hover::after {
    opacity: 1; /* show overlay */
}

.facility-item:hover .facility-caption {
    opacity: 1;
    transform: translateY(0); /* slide-up text */
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-item {
        height: 300px;
    }
}

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

    .facility-item {
        height: 260px;
    }
}

/* Upper Intro Section */
.vivid-intro-section {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.vivid-intro-kicker {
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c48a3a;
    margin-bottom: 0.4rem;
}

.vivid-intro-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #525252;
    margin-bottom: 1rem;
}

.vivid-intro-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #6f6f6f;
}

/* Facilities Header (left aligned) */
.facilities-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.facilities-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #525252;
    margin-bottom: 0.4rem;
}

.facilities-header p {
    font-size: 1rem;
    max-width: 650px;
    color: #6f6f6f;
    line-height: 1.6;
}


/* HOMEPAGE STYLE */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ABOUT US STYLE */

.About-Section1{
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
  width: 100vw;       
  height: 60vh;
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
}

.About-Section1 img {
  width: 100%;   /* scales image to fit width */
  height: 100%;  
  object-fit: cover;  /* options: cover | contain | fill | scale-down */
}

.spacer1{
 padding: 5vw;
}

.spacer2{
 padding-top: 2vh;
 padding-bottom: 10vh;
 padding-left: 10vw;
 padding-right: 10vw;
}

.About-Section1 h1,
.About-Section1 h2
{
  font-weight: 700;
}

.About-Section2{
  width: 100vw;     
  min-height: 70vh;
  background: #f8efc8;
  z-index: 0;
  position: sticky;
  top: -80vh; 
  text-align: center;
  color: white;
}

.AboutUsHeader2 {
  width: 100vw;   /* scales image to fit width */
  height: auto;  
  object-fit: cover;  /* options: cover | contain | fill | scale-down */
  position: absolute;
  top: -33vw;
  left: 0;
  z-index: -10;
}

.About-Section2 h1 {
  color: #e58b33;
  font-weight: 700;
}

.icon-img {
  width: 40px !important;
  height: 40px !important;
  margin-right: 0.5em !important;
  object-fit: contain !important;
  display: inline-block !important;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.About-Header-Image{
  width: 30vw !important;
  height: auto !important;
  z-index: 3;
  display: block;
  margin: 0 auto;
  position: relative;
  }

  @media (max-width: 767.98px) {

    .About-Section2{
      width: 100vw;     
      min-height: 70vh;
      background: #f8efc8;
      z-index: 0;
      position: sticky;
      top: -200vh; 
      text-align: center;
      color: white;
    }
    .About-Header-Image {
      width: 80vw !important;
      position: static !important;
      margin-top: 2vw;
      margin-bottom: 2vw;
      z-index: 1 !important;
    }
    .About-Section1 .overlay-text {
      position: static !important;
      color: white;
      width: 100%;
      text-align: left;
      padding: 8vw;
    }
  }

  .aboutus-main{
    position: relative;
  }

  .About-Section3{
  width: 100vw;     
  min-height: 30vh;
  background: linear-gradient(131deg,rgba(248, 228, 167, 1) 0%, rgba(250, 165, 0, 1) 100%);
  z-index: 1;
  position: sticky;
  top: 0; 
  color: #545454;
  text-align: center;
  padding: 5vw 10vw 5vw 10vw;
}

.About-Section3 ul{
padding: 2vw 10vw 0 10vw;
text-align: left;
}

.About-Section3 li{
margin-bottom: 2vw;
}

.About-Section3 h1{
  color: #e58b33;
  font-weight: 700;
}

.About-Section4 h1{
  color: #e58b33;
  font-weight: 700;
}

.About-Section4{
  width: 100vw;
  z-index: 2;
  position: sticky;
  top: 0;
  text-align: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}

@media (max-width: 767.98px) {
  .About-Section4 {
    grid-template-columns: 1fr;
  }
}


.About-Section4-1{
  width: 100%;
  background: #f8efc8;
  color: #545454;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vw 10vw 5vw 10vw;
}


.About-Section4-2{
  width: 100%;
  background: grey;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  padding: 0 2vw 5vw 2vw;
  background: #f8efc8;
  max-width: 80vw;
  margin: 0 auto;
  justify-content: center;
}

.value-card {
  border-radius: 20px;
  padding: 2vw;
  color: #545454;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1em;
  text-align: left;
  flex: 0 1 30%;
  width: 10vw;
}

.value-card.blue    { background: #b3e0fa; }
.value-card.green   { background: #d8f9b2; }
.value-card.purple  { background: #d6c6f9; }
.value-card.orange  { background: #ffd1a6; }
.value-card.pink    { background: #ffc6d6; }

.value-card h5 {
  font-weight: 700;
  margin-bottom: 1vw;
  display: flex;
  align-items: center;
}

.value-card .icon {
  margin-right: 0.5em;
}

@media (max-width: 900px) {
  .value-card {
    flex: 0 1 45%;
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .value-card {
    flex: 0 1 100%;
    min-width: 120px;
    max-width: 100%;
  }
}

.about-vivid {
  width: 60vw;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.About-Section5{
  width: 100vw;
  min-height: 60vh;
  z-index: 3;
  position: sticky;
  top: 0;
  text-align: center;
  background: #f6f7f1;
  padding: 5vw 10vw 5vw 10vw;
}

.About-Section5 h1{
  color: #e58b33;
  font-weight: 700;
  padding-bottom: 1vw;
}

.About-Section5 video{
  width: 80vw;
  height: auto;
  padding: 5vw;
}

.highlights {
  width: 60vw;
  color: #545454;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



/* ABOUT US STYLE */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* PROG AND SERV STYLE */

.ps-carousel-container {
  width: 100vw;
  height: 90vh;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ps-carousel-container:hover {
  background-size: 110%;
}

.ps-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0,0,0,0.5); /* overlay */
}

.ps-list {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ps-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ps-slide.active {
  opacity: 1;
}

.ps-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text content similar to your React version */
/* Hero text block */
/* === HERO TEXT (left) === */
.ps-slide .content {
  position: absolute;
  top: 24%;
  left: 14%;
  max-width: 25%;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
  box-sizing: border-box;
  z-index: 5; /* Increase from 2 to 10 */
}

.ps-slide .content .author {
  font-size: 16px;
}

.ps-slide .content .title {
  font-weight: 700;
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.ps-slide .content .des {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}

/* === THUMBNAIL ROW (cards) === */
.ps-thumbnail {
  position: absolute;
  bottom: 40px;              /* closer to the bottom like your ref */
 left: 70%;                     /* moved more to the RIGHT */
  transform: translateX(-40%); 
  width: max-content;
  display: flex;
  gap: 24px;
  z-index: 0;
}

/* Base card look */
.ps-thumb {
  width: 229px;
  height: 300px;
  position: relative;
  cursor: pointer;
  opacity: 0.8;
  transform: scale(0.94);               /* slightly smaller by default */
  transform-origin: center bottom;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.ps-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;                  /* softer, zoomer curve */
}

/* Text overlay inside card */
.ps-thumb .content {
  position: absolute;
  bottom: 22px;
  left: 18px;
  right: 18px;
  color: #fff;
}

.ps-thumb .content .title {
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ps-thumb .content .description {
  font-size: 18px;
  font-weight: 700;
}

/* Active / hovered card – POP */
.ps-thumb.active,
.ps-thumb:hover {
  opacity: 1;
  transform: scale(1.08) translateY(-14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* === ARROWS UNDER CARDS === */
.ps-arrows {
  position: absolute;
  bottom: 60px;
  right: 18%;               
  z-index: 110;
  width: 140px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.ps-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.ps-arrows button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* === RESPONSIVE HERO === */
@media screen and (max-width: 768px) {
  .ps-slide .content {
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    max-width: 80%;
    text-align: center;
  }

  .ps-slide .content .title {
    font-size: 34px;
  }

  .ps-thumbnail {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
  }

  .ps-thumb {
    width: 113px;
    height: 150px;
    transform: scale(0.96);
  }

  .ps-thumb.active,
  .ps-thumb:hover {
    transform: scale(1.03) translateY(-8px);
  }

  .ps-arrows {
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
  }
}


.ps-enroll-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 28px;
    background: #ffb347;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ps-enroll-btn:hover {
    background: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* ============================================
   ONE-ON-ONE SPED TUTORIALS PAGE STYLING
   ============================================ */

.oneonone-wrapper {
    background: #fcf9ea;
    padding: 5vh 15vw;
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 1rem;
}

/* Section Headers */
.oneonone-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #e58b33;
    margin-bottom: 1rem;
}

.oneonone-wrapper h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #d67b20;
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
}

/* Body Text */
.oneonone-wrapper p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

/* Bullet Lists */
.oneonone-wrapper ul {
    padding-left: 1.4rem;
    margin-bottom: 1.5rem;
}

.oneonone-wrapper ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    position: relative;
}

/* Custom Bullet Icon */
.oneonone-wrapper ul li::before {
    content: "•";
    color: #e58b33;
    font-size: 1.3rem;
    position: absolute;
    left: -1.2rem;
    top: -1px;
}

/* Highlight Box (Optional Feature Box) */
.oneonone-highlight-box {
    background: #fff3d1;
    border-left: 6px solid #ffb44a;
    padding: 1.4rem 1.2rem;
    margin-top: 2.5rem;
    border-radius: 12px;
}

.oneonone-highlight-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c06718;
    margin-bottom: 0.6rem;
}

.oneonone-highlight-box p {
    margin-bottom: 0;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .oneonone-wrapper {
        padding: 5vh 8vw;
    }

    .oneonone-wrapper h2 {
        font-size: 1.7rem;
    }

    .oneonone-wrapper h3 {
        font-size: 1.25rem;
    }

    .oneonone-wrapper p {
        font-size: 0.98rem;
    }
}
/* Sections under hero */


.ProgAndServ-Section2{
    top: 0;           /* sticks to top when scrolled */
    background: linear-gradient(131deg,rgba(248, 228, 167, 1) 0%, rgba(250, 165, 0, 1) 100%);
    color: #545454;
    z-index: 0;
    width: 100vw;       
    min-height: 20vh;
    position: sticky; /* stick instead of fixed */
    top: 0;           /* sticks to top when scrolled */
    z-index: 0;
    text-align: center;
    padding: 10vh 20vw 10vh 20vw;
}

.ProgAndServ-Section2 h1{
font-weight: 700;
}

.ProgAndServ-Section3{
    top: 0;           /* sticks to top when scrolled */
    background: gray;
    color: #545454;
    z-index: 0;
    width: 100vw;       
    min-height: 20vh;
    position: sticky; /* stick instead of fixed */
    top: 0;           /* sticks to top when scrolled */
    z-index: 1;
    text-align: center;

}

.ProgAndServ-Section4 {
    width: 100vw;
    min-height: 60vh;
    background: #f8e4a6;
    position: relative;
    z-index: 2;
    padding: 10vh 10vw;
    text-align: center;
}

.ProgAndServ-Section4 h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ProgAndServ-Section4 > p {
    color: #545454;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Always 2 columns on large screens */
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.program-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.program-card p {
    color: #545454;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.program-card-link {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: transform 0.3s ease, color 0.3s ease;
}

.program-card-link.cyan:hover {
    color: #1f4f59;
    transform: scale(1.02);
}

.program-card-link.purple:hover {
    color: #6b3a6b;
    transform: scale(1.02);
}

.program-card-link.green:hover {
    color: #4a7d1a;
    transform: scale(1.02);
}

.program-card-link.orange:hover {
    color: #b36a00;
    transform: scale(1.02);
}

.program-card.cyan { border-top: 5px solid #76D7EA; background-color: #76D7EA; }
.program-card.purple { border-top: 5px solid #D4A5D9; background-color: #D4A5D9; }
.program-card.green { border-top: 5px solid #98E144; background-color: #98E144; }
.program-card.orange { border-top: 5px solid #FFB84D; background-color: #FFB84D; }

@media (max-width: 900px) {
    .program-cards {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}

.therapy-col {
  transition: transform 0.3s ease, border-radius 0.3s ease;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.therapy-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.therapy-col:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.therapy-col:hover {
  transform: scale(1.05);
  z-index: 3;
  border-radius: 5px;
}


.therapy-item {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .therapy-item {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
  }
}

@media (max-width: 500px) {
  .therapy-item {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
  }
}

.therapy-item h3{
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
}

.ProgramsAndServices-Title {
  padding: 5vh 8vw;
  margin: 5vh 15vw;
  background-color: rgba(0, 0, 0, 0.6); /* black with 50% opacity */
  color: white;
  justify-content: center;     /* horizontal center */
  align-items: center;         /* vertical center */
  text-align: center;          /* make multi-line text centered */
  border-radius: 30px;
}

.ProgramsAndServices-Title h1{
  font-weight: 700;
}

.FAQ-Section1{
  width: 100vw;       
  min-height: 50vh;
  background: #434343;
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
  display: flex;                 /* make it a flexbox container */
  justify-content: center;       /* center horizontally */
  align-items: center;  
}

.FAQ-Section1 img {
  width: 100%;   /* scales image to fit width */
  height: 100%;  
  object-fit: cover;  /* options: cover | contain | fill | scale-down */
}

.FAQ-Section2{
  width: 100vw;     
  min-height: 70vh;
  background: #fcf9ea;
  z-index: 0;
  position: sticky;
  top: 0; 
  text-align: left;
  color: #545454;
  padding : 5vh 10vw 5vh 10vw;
}

.MainFAQ-Section1{
  width: 100vw;       
  min-height: 40vh;
  background: linear-gradient(131deg,rgba(248, 228, 167, 1) 0%, rgba(250, 165, 0, 1) 100%);
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
  color: #545454;
  display: flex;            /* Flexbox for centering */
  flex-direction: column;   /* Keep title + description stacked */
  justify-content: center;  /* Vertical centering */
  align-items: center;      /* Horizontal centering */
  text-align: center;       /* Make sure multi-line text stays centered */
  padding: 0 15vw;          /* Padding on sides for better look on large screens */
}

.MainFAQ-Section1 h1{
  font-weight: 700;
}

.MainFAQ-Section2{
  width: 100vw;     
  min-height: 70vh;
  background: #fcf9ea;
  z-index: 0;
  position: sticky;
  top: 0; 
  text-align: left;
  color: #545454;
  padding : 5vh 15vw 5vh 15vw;
}

.FAQ-Search {
    margin: 0rem 1rem !important;
}

.section-title {
      font-weight: bold;
      font-size: 1.5rem;
      color: #e58b33; /* Orange tone */
      padding: 10px 20px 0 20px;
    }
    .border_bottom{
      border-bottom: 3px solid #ffbd59;
      padding: 20px 30px 20px 30px;
    }
    .accordion-button {
      background: #fcf9ea;
      font-weight: bold;
      font-size: 1.2rem;
      color: #e58b33; /* Darker orange */
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) {
      color: #e58b33;
      background: #fcf9ea;
    }
    .accordion-button:focus {
      box-shadow: none;
    }
    .accordion-item {
      border: none;
      border-bottom: 3px solid #ffbd59;
    }
    .accordion-body {
      background: #fcf9ea;
      font-size: 1rem;
      color: #545454;
    }

.accordion-button:not(.collapsed)::after {
    background-image: url("/images/accordion_notCollapsed.png");
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("/images/accordion_after.png");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion {
  border-radius: 0 !important;
  --bs-accordion-border-radius: 0 !important;
}

/** MEET OUR TEAM STYLES **/


.team-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.team-title {
  font-weight: 700;
  font-size: 2rem;
  color: #2c2c2c;
}

.team-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 5px;
}

.team-description {
  font-size: 0.9rem;
  color: #555;
  max-width: 600px;
  margin: 10px auto 40px auto;
}

.team-category {
  font-weight: 600;
  color: #e99200;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.team-category::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #e99200;
  margin: 0 auto 10px;
}

.management-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    padding-bottom: 20vh;
    gap: 10vw;
    margin: 0px auto;
}

.management-container .role{
    color: #e99200;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.management-member {
  text-align: center;
  max-width: 300px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10vw;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20vh;
}

/* Center 1 orphan item */
.team-member:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

/* Center 2 orphan items */
.team-member:nth-last-child(2):nth-child(3n + 2),
.team-member:nth-last-child(1):nth-child(3n) {
  grid-column-start: 2;
}

.team-member:nth-last-child(1):nth-child(3n) {
  grid-column-start: 3;
}

.team-member {
  text-align: center;
  max-width: 300px;
}

.profile-pic {
  width: 245px;
  height: 245px;
  background-color: #f3a81b;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 10px solid #f3a81b;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member .role {
  color: #e99200;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
/** MEET OUR TEAM STYLES **/

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/** ENROLLEMNT STYLES **/

.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  width: 100%;
  padding: 0 2rem;
  padding: 10vh 10vw 10vh 10vw;
  background: #f6f7f1;
  max-width: 100vw !important;
}

.enrollment-info h2 {
  color: #f6b100;
  border-bottom: 2px solid #f6b100;
  padding-bottom: 0.5rem;
}

.enrollment-info h5 {
  margin-top: 1.5rem;
  color: #333;
}

.enrollment-info ul {
  margin-top: 0.5rem !important;
  margin-left: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.enrollment-info ul ul{
  list-style-type: circle;
  margin-top: 0.5rem !important;
  margin-left: 1rem !important;
  margin-bottom: 0.5rem !important;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  border: 1px solid #f6d661;
  border-radius: 2px;
  overflow: hidden;
  background-color: white;
}

/* Yellow header bar */
.card-header {
  background-color: #fde271;
  color: #4b4b4b;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-bottom: 1px solid #f6d661;
}

/* White card body */
.card-body {
  background-color: #ffffff;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

.card-body p {
  margin-bottom: 1.2rem;
  color: #333;
  font-size: 0.95rem;
}

/* Inputs */
.card-body input {
  display: block;
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.9rem;
  border: 2px solid #d1d1d1;
  border-radius: 10px;
  background-color: #fafaf0;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.card-body input:focus {
  border-color: #fbb021;
}

/* Button */
.enrollment-btn {
  background-color: #fbb021;
  border: none;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  font-size: 1rem;
}

.enrollment-btn:hover {
  background-color: #fca311;
}

/* Forgot password link */
.forgot {
  display: block;
  margin-top: 0.8rem;
  text-decoration: none;
  color: #0000cc;
  font-size: 0.9rem;
}

.forgot:hover {
  text-decoration: underline;
}


@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
}
/** ENROLLEMNT STYLES **/

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* CONTACT US STYLES */
.ContactUs-Section1{
  width: 100vw;       
  height: 50vh;
  background: #434343;
  color: #ffffff;
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
  display: flex;            /* Flexbox for centering */
  flex-direction: column;   /* Keep title + description stacked */
  justify-content: center;  /* Vertical centering */
  align-items: center;      /* Horizontal centering */
  text-align: center;       /* Make sure multi-line text stays centered */
}

.ContactUs-Section1 p{
width: 40vw;
}

.ContactUs-Section1 h1 {
    font-weight: 700;
}

.ContactUs-Section1 img {
  width: 100%;   /* scales image to fit width */
  height: 100%;  
  object-fit: cover;  /* options: cover | contain | fill | scale-down */
}

.ContactUs-Section2{
  width: 100vw;     
  min-height: 70vh;
  background: white;
  z-index: 0;
  position: sticky;
  top: 0; 
  text-align: center;
  color: #545454;
  padding: 0vh 10vw 10vh 10vw;
}

.FormandInfo{
  text-align: left !important;
  padding: 10vh 0vw 10vh 0vw;
}

.FormandInfocol{
  padding: 0vh 5vw 0vh 5vw;
}

.FormandInfocol .form-control{
  border: var(--bs-border-width) solid #b7b7b7 !important;
}

.FormandInfocol .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #e58b33 !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 211, 52, 0.25);
}

.FormandInfocol .form-label{
  font-size: 0.8em;
  color: black;
}

.FormandInfo p{
  font-size: 0.8em;
  color: black;
}

.FormandInfo h3{
  color: #e58b33;
  font-weight: 700;
}

.formspacer{
  padding-top: 3vh;
  padding-bottom: 5vh;
}

.contact-help {
  background-color: #fdf3cd;
  text-align: center;
  padding: 50px 20px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.contact-help h2 {
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
}

.contact-help p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
}

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

.icon-circle {
  background-color: #fbbd5c;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  font-size: 20px;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.contact-item p {
  font-size: 0.7em;
  color: #666;
  line-height: 1.5;
}

.socials a {
  color: #333;
  font-size: 18px;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #fbbd5c;
}

.contacticon{
    width: 1.5em;
    height: auto;
    vertical-align: middle;
}
/* CONTACT US STYLES */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ENROLLMENT REGISTRATION STYLES */

.error404-Section1{
  width: 100vw;       
  min-height: 40vh;
  background: linear-gradient(131deg,rgba(248, 228, 167, 1) 0%, rgba(250, 165, 0, 1) 100%);
  position: sticky; /* stick instead of fixed */
  top: 0;           /* sticks to top when scrolled */
  z-index: -1;
  color: #ffffff;
  display: flex;            /* Flexbox for centering */
  flex-direction: column;   /* Keep title + description stacked */
  justify-content: center;  /* Vertical centering */
  align-items: center;      /* Horizontal centering */
  text-align: center;       /* Make sure multi-line text stays centered */
  padding: 0 15vw;          /* Padding on sides for better look on large screens */
  padding-top: 10vh;
  padding-bottom: 10vh;
  text-shadow:  2px 2px 4px rgba(0, 0, 0, 0.5);
}

.error404-Section1 h1{
  font-weight: 700;
}

