body {
  font-family: 'Fredoka', sans-serif;
}

.header-wrapper { position: relative; width: 100%; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 7rem;
  background: #ffffff;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #b48af7, #f5a030) 1;
}

/* Nav links — pill style with soft border */
.nav-right  { justify-content: center; }
.nav-group { display: flex; align-items: center; gap: 0.75rem; flex: 1; justify-content: center; }

.nav-group a {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px; font-weight: 500;
  color: rgb(148, 47, 198);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(148, 47, 198, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Left nav hover colors */
.nav-group a:nth-child(1):hover { background: #EEEDFE; color: #534AB7; border-color: #a855f7; }
.nav-group a:nth-child(2):hover { background: #E1F5EE; color: #085041; border-color: #1D9E75; }
.nav-group a:nth-child(3):hover { background: #FAEEDA; color: #633806; border-color: #f59e0b; }

/* Right nav hover colors */
.right-nav a:nth-child(1):hover { background: #FBEAF0; color: #72243E; border-color: #fb7eb0; }
.right-nav a:nth-child(2):hover { background: #EEEDFE; color: #3C3489; border-color: #a855f7; }

/* Enroll button — always styled */
.right-nav a:nth-child(3) {
  background: linear-gradient(135deg, #a855f7, #f5a030);
  color: #fff; border-color: transparent;
}
.right-nav a:nth-child(3):hover {
  background: linear-gradient(135deg, #f5a030, #a855f7);
  transform: scale(1.05);
}

/* Blob & logo */
.center-slot {
  position: relative; width: 200px; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin: 0 0.5rem;
}
.blob-svg   { position: absolute; width: 100%; height: 10rem; overflow: visible; }
.blob-path  { animation: morph 4s ease-in-out infinite, blobColor 6s ease-in-out infinite; }

@keyframes morph {
  0%   { d: path("M 18 32 C 16 12, 38 2, 56 4 C 74 6, 96 14, 94 32 C 92 50, 74 64, 54 62 C 34 60, 20 52, 18 32 Z"); }
  25%  { d: path("M 22 28 C 24 8, 42 2, 60 6 C 78 10, 98 20, 92 36 C 86 52, 68 66, 48 62 C 28 58, 20 48, 22 28 Z"); }
  50%  { d: path("M 14 36 C 12 16, 36 4, 58 6 C 80 8, 98 18, 96 36 C 94 54, 72 66, 50 63 C 28 60, 16 56, 14 36 Z"); }
  75%  { d: path("M 20 30 C 22 10, 44 2, 62 5 C 80 8, 96 16, 94 34 C 92 52, 70 66, 50 62 C 30 58, 18 50, 20 30 Z"); }
  100% { d: path("M 18 32 C 16 12, 38 2, 56 4 C 74 6, 96 14, 94 32 C 92 50, 74 64, 54 62 C 34 60, 20 52, 18 32 Z"); }
}
@keyframes blobColor {
  0%   { filter: hue-rotate(0deg)   brightness(1); }
  25%  { filter: hue-rotate(20deg)  brightness(1.05); }
  50%  { filter: hue-rotate(-20deg) brightness(0.95); }
  75%  { filter: hue-rotate(15deg)  brightness(1.05); }
  100% { filter: hue-rotate(0deg)   brightness(1); }
}
.logo-img { position: relative; z-index: 2; height: 5rem; object-fit: contain; }

/* Hamburger */
.hamburger {
  display: none; background: none;
  border: 1.5px solid rgba(148,47,198,0.3); border-radius: 8px;
  padding: 6px 9px; cursor: pointer;
  font-size: 18px; color: rgb(148,47,198);
  transition: all 0.2s;
}
.hamburger:hover  { background: #EEEDFE; border-color: #a855f7; }
.hamburger-ghost  { visibility: hidden; }

/* Mobile menu */
.mobile-menu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  background: #ffffff;
}
.mobile-menu.open {
  max-height: 500px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu a {
  display: block; font-family: 'Fredoka', sans-serif;
  font-size: 15px; font-weight: 500;
  color: rgb(148, 47, 198); text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.mobile-menu a:nth-child(1):hover { color: #534AB7; background: #EEEDFE; border-left-color: #a855f7; }
.mobile-menu a:nth-child(2):hover { color: #085041; background: #E1F5EE; border-left-color: #1D9E75; }
.mobile-menu a:nth-child(3):hover { color: #633806; background: #FAEEDA; border-left-color: #f59e0b; }
.mobile-menu a:nth-child(4):hover { color: #72243E; background: #FBEAF0; border-left-color: #fb7eb0; }
.mobile-menu a:nth-child(5):hover { color: #3C3489; background: #EEEDFE; border-left-color: #a855f7; }
.mobile-menu a:nth-child(6) {
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #f5a030);
  border-left-color: transparent;
}
.mobile-menu a:nth-child(6):hover { filter: brightness(1.08); }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .nav-group  { display: none; }
  .hamburger  { display: flex; align-items: center; justify-content: center; }
}

/* header end */

.hero { padding: 1.5rem; font-family: 'Fredoka', sans-serif; }

.photo-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.photo-card { border-radius: 16px; overflow: hidden; position: relative; }
.photo-card.tall { grid-row: span 2; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Text overlay on big photo */
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(80,20,120,0.72) 0%, rgba(80,20,120,0.15) 55%, transparent 100%);
  border-radius: 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.overlay-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px; font-weight: 600;
  color: #fff; line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.overlay-text span { color: #ffd87a; }

/* Top right — About Us card */
.card-about {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 1.5rem;
}
.card-about .card-icon, .card-enroll .card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.card-about .card-icon i, .card-enroll .card-icon i { font-size: 26px; color: #fff; }
.card-about p {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.9); text-align: center; line-height: 1.3;
}
.card-about a {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 0.55rem 1.5rem; border-radius: 999px;
  background: #fff; color: #7c3aed;
  text-decoration: none; transition: transform 0.15s;
}
.card-about a:hover { background: #f3e8ff; transform: scale(1.04); }

/* Bottom right — Enroll Now card */
.card-enroll {
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 1.5rem;
}
.card-enroll p {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.95); text-align: center; line-height: 1.3;
}
.card-enroll a {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 0.55rem 1.5rem; border-radius: 999px;
  background: #fff; color: #c2410c;
  text-decoration: none; transition: transform 0.15s;
}
.card-enroll a:hover { background: #fff7ed; transform: scale(1.04); }

/* Responsive — stack on mobile */
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 200px 200px;
  }
  .photo-card.tall { grid-row: span 1; }
}

/* main content end*/
.divider {
  font-family: 'Fredoka', sans-serif;
  padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  overflow: hidden; position: relative;
}

.divider-line-row {
  display: flex; align-items: center;
  gap: 1rem; width: 100%; max-width: 600px;
}
.divider-line {
  flex: 1; height: 2px; border-radius: 999px;
  background: linear-gradient(to right, transparent, #c084fc, transparent);
  animation: linePulse 3s ease-in-out infinite;
}
.divider-line.right {
  background: linear-gradient(to left, transparent, #f59e0b, transparent);
}
@keyframes linePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.95); }
  50%       { opacity: 1;   transform: scaleX(1); }
}

.divider-badge {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  padding: 0.5rem 1.4rem; border-radius: 999px;
  animation: badgeBounce 3s ease-in-out infinite;
}
.divider-badge span {
  font-size: 17px; font-weight: 600;
  color: #fff; letter-spacing: 0.02em;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.stars-row { display: flex; align-items: center; gap: 18px; }
.star {
  font-size: 18px; color: #f59e0b;
  animation: starPop 2.5s ease-in-out infinite;
}
.star:nth-child(1) { animation-delay: 0s;    color: #c084fc; }
.star:nth-child(2) { animation-delay: 0.3s;  color: #f59e0b; }
.star:nth-child(3) { animation-delay: 0.6s;  color: #fb923c; }
.star:nth-child(4) { animation-delay: 0.9s;  color: #c084fc; }
.star:nth-child(5) { animation-delay: 1.2s;  color: #f59e0b; }
@keyframes starPop {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.4); opacity: 1; }
}

.divider-sub {
  font-size: 15px; font-weight: 400;
  color: #c084fc; text-align: center;
  animation: fadeFloat 3s ease-in-out infinite;
}
@keyframes fadeFloat {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(-3px); }
}

.floating-shapes {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.shape {
  position: absolute; border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 5s ease-in-out infinite;
}
.shape:nth-child(1) { width:60px; height:60px; background:#a855f7; top:10%; left:5%;  animation-delay:0s; }
.shape:nth-child(2) { width:40px; height:40px; background:#f59e0b; top:60%; left:90%; animation-delay:1s; }
.shape:nth-child(3) { width:30px; height:30px; background:#fb923c; top:20%; left:80%; animation-delay:2s; }
.shape:nth-child(4) { width:50px; height:50px; background:#c084fc; top:70%; left:10%; animation-delay:1.5s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(20deg); }
}

/* about us section */
.about {
  font-family: 'Fredoka', sans-serif;
  padding: 3rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EEEDFE; color: #3C3489;
  font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 999px;
  border: 0.5px solid #AFA9EC; margin-bottom: 1rem;
}
.about-heading {
  font-size: 32px; font-weight: 600;
  color: rgb(148, 47, 198); line-height: 1.2; margin-bottom: 1rem;
}
.about-heading span { color: rgb(242, 157, 47); }
.about-body {
  font-size: 16px; color: #888; line-height: 1.75;
}

.about-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 14px;
}
.stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon i { font-size: 22px; }
.stat-icon.purple { background: #EEEDFE; color: #7F77DD; }
.stat-icon.orange { background: #FAEEDA; color: #BA7517; }
.stat-icon.pink   { background: #FBEAF0; color: #D4537E; }
.stat-label { font-size: 13px; color: #aaa; margin-bottom: 2px; }
.stat-value { font-size: 16px; font-weight: 600; color: #333; }

.cards-heading {
  font-size: 22px; font-weight: 600;
  color: #333; text-align: center; margin-bottom: 1.5rem;
}

.mvp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.mvp-card {
  border-radius: 12px; padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 10px;
  border: 0.5px solid rgba(0,0,0,0.08);
  background: #fff; transition: transform 0.2s;
}
.mvp-card:hover { transform: translateY(-4px); }
.mvp-card.mission { border-top: 3px solid #a855f7; }
.mvp-card.vision  { border-top: 3px solid #f59e0b; }
.mvp-card.promise { border-top: 3px solid #fb923c; }

.mvp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.mvp-icon i { font-size: 22px; }
.mvp-icon.purple { background: #EEEDFE; color: #7F77DD; }
.mvp-icon.amber  { background: #FAEEDA; color: #BA7517; }
.mvp-icon.coral  { background: #FAECE7; color: #D85A30; }

.mvp-title { font-size: 18px; font-weight: 600; color: #333; }
.mvp-text  { font-size: 14px; color: #888; line-height: 1.65; }

/* Scroll animations */
.reveal       { opacity: 0; transform: translateY(28px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 600px) {
  .about-intro { grid-template-columns: 1fr; }
  .mvp-grid    { grid-template-columns: 1fr; }
}


/* about us ends*/

/* Programs divider badge override */
.programs-badge {
  background: linear-gradient(135deg, #1D9E75, #6dcfb0);
}

/* Programs section */
.programs {
  font-family: 'Fredoka', sans-serif;
  padding: 1rem 2rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.room-hero {
  border-radius: 20px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #a855f7 0%, #6dcfb0 100%);
  padding: 2.5rem 2rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.room-hero-badge {
  background: rgba(255,255,255,0.18);
  border: 0.5px solid rgba(255,255,255,0.35);
  border-radius: 12px; padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 80px; height: 80px;
  animation: badgeBounce 3s ease-in-out infinite;
}
.room-hero-badge i { font-size: 40px; color: #fff; }
.room-hero-text h3 { font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.age-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.25); color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 4px 14px; border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.4); margin-bottom: 0.75rem;
}
.room-hero-text p { font-size: 15px; color: rgba(255,255,255,0.92); line-height: 1.7; max-width: 500px; }

.skills-heading {
  font-size: 19px; font-weight: 600;
  color: #333; text-align: center; margin-bottom: 1rem;
}

.skills-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 2rem; }
.skill-card {
  border-radius: 14px; padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 12px;
  border: 0.5px solid rgba(0,0,0,0.08);
  background: #fff; transition: transform 0.2s;
}
.skill-card:hover { transform: translateY(-3px); }
.skill-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.skill-icon i { font-size: 20px; }
.skill-icon.purple { background: #EEEDFE; color: #7F77DD; }
.skill-icon.teal   { background: #E1F5EE; color: #1D9E75; }
.skill-icon.amber  { background: #FAEEDA; color: #BA7517; }
.skill-icon.coral  { background: #FAECE7; color: #D85A30; }
.skill-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 3px; }
.skill-desc  { font-size: 13px; color: #888; line-height: 1.55; }

.approach-row { display: flex; gap: 12px; }
.approach-card {
  flex: 1; border-radius: 14px; padding: 1.25rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.approach-card.structured { background: #EEEDFE; border: 0.5px solid #AFA9EC; }
.approach-card.free       { background: #E1F5EE; border: 0.5px solid #5DCAA5; }
.approach-card i          { font-size: 26px; }
.approach-card.structured i    { color: #7F77DD; }
.approach-card.free i          { color: #1D9E75; }
.approach-card span            { font-size: 15px; font-weight: 600; }
.approach-card.structured span { color: #3C3489; }
.approach-card.free span       { color: #085041; }
.approach-card p               { font-size: 13px; line-height: 1.5; }
.approach-card.structured p    { color: #534AB7; }
.approach-card.free p          { color: #0F6E56; }

.delay-4 { transition-delay: 0.4s; }

@media (max-width: 600px) {
  .room-hero    { flex-direction: column; text-align: center; }
  .skills-grid  { grid-template-columns: 1fr; }
  .approach-row { flex-direction: column; }
}


/* end programs section */ 

/* Teachers divider badge */
.teachers-badge {
  background: linear-gradient(135deg, #fb923c, #f59e0b);
}

/* Teachers section */
.teachers {
  font-family: 'Fredoka', sans-serif;
  padding: 1rem 2rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.teachers-intro { text-align: center; margin-bottom: 2.5rem; }
.teachers-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FAEEDA; color: #633806;
  font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 999px;
  border: 0.5px solid #FAC775; margin-bottom: 0.75rem;
}
.teachers-heading {
  font-size: 32px; font-weight: 600;
  color: rgb(148, 47, 198); line-height: 1.2; margin-bottom: 0.75rem;
}
.teachers-heading span { color: rgb(242, 157, 47); }
.teachers-sub {
  font-size: 16px; color: #888;
  line-height: 1.7; max-width: 580px; margin: 0 auto;
}

.teacher-card {
  border-radius: 20px; overflow: hidden;
  border: 0.5px solid rgba(0,0,0,0.08);
  background: #fff;
  display: grid; grid-template-columns: 280px 1fr;
  margin-bottom: 1.5rem;
}

.teacher-photo {
  background: linear-gradient(135deg, #fb923c, #a855f7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem 1.5rem; gap: 1rem;
  position: relative; overflow: hidden;
}
.teacher-photo::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.teacher-photo::after {
  content: ''; position: absolute; bottom: -20px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.teacher-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 600; color: #fff; z-index: 1;
}
.teacher-name-block { text-align: center; z-index: 1; }
.teacher-name  { font-size: 20px; font-weight: 600; color: #fff; }
.teacher-role  { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 3px; }
.exp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.2);
  border: 0.5px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 999px; z-index: 1;
}
.exp-badge i { font-size: 14px; }

.teacher-info { padding: 2rem; }
.teacher-bio  { font-size: 15px; color: #888; line-height: 1.75; margin-bottom: 1.5rem; }

.qualities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.quality {
  border-radius: 12px; padding: 0.9rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 0.5px solid rgba(0,0,0,0.08);
  background: #f9f9f9;
}
.quality i    { font-size: 20px; }
.quality.q1 i { color: #a855f7; }
.quality.q2 i { color: #1D9E75; }
.quality.q3 i { color: #fb923c; }
.quality span { font-size: 13px; font-weight: 500; color: #444; }

@media (max-width: 620px) {
  .teacher-card     { grid-template-columns: 1fr; }
  .qualities-grid   { grid-template-columns: 1fr 1fr; }
}

.teacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* teacher section ends*/

.contact-badge {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}

.contact {
  font-family: 'Fredoka', sans-serif;
  padding: 1rem 2rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-intro { text-align: center; margin-bottom: 2.5rem; }
.contact-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EEEDFE; color: #3C3489;
  font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 999px;
  border: 0.5px solid #AFA9EC; margin-bottom: 0.75rem;
}
.contact-heading {
  font-size: 32px; font-weight: 600;
  color: rgb(148, 47, 198); line-height: 1.2; margin-bottom: 0.75rem;
}
.contact-heading span { color: rgb(242, 157, 47); }
.contact-sub { font-size: 16px; color: #888; line-height: 1.7; }

.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 560px; margin: 0 auto;
}
.contact-card {
  border-radius: 20px; padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  text-align: center; position: relative;
  overflow: hidden; transition: transform 0.2s;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card.phone { background: linear-gradient(135deg, #a855f7, #c084fc); border: 0.5px solid #AFA9EC; }
.contact-card.email { background: linear-gradient(135deg, #fb923c, #f59e0b); border: 0.5px solid #FAC775; }
.contact-card::before {
  content: ''; position: absolute; top: -25px; right: -25px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.contact-card::after {
  content: ''; position: absolute; bottom: -15px; left: -15px;
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; animation: badgeBounce 3s ease-in-out infinite;
}
.contact-icon i { font-size: 26px; color: #fff; }
.contact-label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75); z-index: 1;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.contact-value {
  font-size: 18px; font-weight: 600;
  color: #fff; z-index: 1; text-decoration: none;
}
.contact-value:hover { text-decoration: underline; }

.contact-cta {
  text-align: center; margin-top: 2rem; padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #EEEDFE, #FBEAF0);
  border: 0.5px solid #AFA9EC;
}
.contact-cta p { font-size: 16px; color: #534AB7; font-weight: 500; margin-bottom: 0.75rem; }
.contact-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 0.65rem 1.75rem; border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #fb923c);
  color: #fff; text-decoration: none; transition: transform 0.15s;
}
.contact-cta a:hover { transform: scale(1.04); }

@media (max-width: 500px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* contact section ends */

.site-footer {
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(135deg, #1a0a2e, #2d1254);
  padding: 3rem 2rem 1.5rem;
  margin-top: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  align-items: start;
}

.footer-brand .footer-logo-slot {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.footer-logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; }
.footer-brand-name { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.2; }
.footer-brand-name span { color: #f5a030; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 220px; }

.footer-col h4 {
  font-size: 15px; font-weight: 600; color: #fff;
  margin-bottom: 1rem; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 7px;
}
.footer-col h4 i { font-size: 16px; color: #a855f7; }

.footer-contact-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 0.85rem; }
.footer-contact-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-contact-value {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.15s;
}
.footer-contact-value:hover { color: #f5a030; }

.footer-divider {
  max-width: 960px; margin: 0 auto 1.5rem; height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,85,247,0.4), rgba(245,160,48,0.4), transparent);
}

.footer-bottom {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-copy span { color: #a855f7; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 400px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* end footer */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #f5a030);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
}