/* ===================================================
   UNMUTE – Summer Camp Website
   style.css
=================================================== */

:root {
  --primary: #EB6300;
  --primary-light: #ff6b5e;
  --primary-dark: #c42d22;
  --orange: #EF7F00;
  --green: #27AE60;
  --blue: #2980B9;
  --black: #000000;
  --purple: #8E44AD;
  --text-dark: #1a1a2e;
  --text-mid: #3F3F3F;
  --text-muted: #777;
  --bg-light: #f8f6f3;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: linear-gradient(to right, #fff 0%, #fff8d6 25%, #fff 50%, #ffd4cb 75%, #fff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
}

p {
  font-family: "Urbanist", sans-serif;
}

div {
  font-family: "Urbanist", sans-serif;
}

ul li {
  font-family: "Urbanist", sans-serif;
}

.section-padded {
  padding: 70px 0;
}


.section-title {
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo{
  padding: 0 0 25px;
  max-width: 350px;
  height: 100%;
  margin: auto;
}
.logo img{
  width: 100%;
  height: auto;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 225, 204, 1) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;

  background-image: url('../images/banner-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 54, 42, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-sub {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1.5px;
}

.brand-title {
  font-size: clamp(3.5rem, 10vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
  /* text-shadow: 3px 3px 0 rgba(232,54,42,0.15); */
  animation: brandPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes brandPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.6rem);
  color: var(--black);
  font-weight: 500;
  /* max-width: 480px; */
  margin: 0 auto;
}

/* Phone mockup */
.phone-mockup {
  max-width: 100px;
  animation: floatPhone 3s ease-in-out infinite;
  position: absolute;
  right: 0;
}

.phone-mockup.left {
  max-width: 100px;
  animation: floatPhone 3s ease-in-out infinite;
  position: absolute;
  left: 0;
  bottom: 70px;
}

.phone-mockup img {
  max-width: 100%;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.banner-border {
  border: #fff solid 20px;
  border-radius: 28px;
}

.banner-border img.img-fluid {
  width: 75%;
  height: auto;
}

.phone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.phone-inner i {
  font-size: 2.5rem;
}

.phone-inner span {
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.9;
}

/* Stat boxes */
.stat-box {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  box-shadow: var(--card-shadow);
  border-top: 3px solid var(--primary);
  transition: transform 0.2s;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* Feature icon boxes */
.feature-icon-box {
  text-align: center;
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5f4 0%, #ffe0dd 100%);
  border: 2px solid rgba(232, 54, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: all 0.3s;
}

.feat-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.feature-icon-box p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* ===== FESTIVAL BANNER ===== */
.festival-banner {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.festival-banner p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.festival-banner p i {
  color: var(--accent-dark);
}

.badge-year {
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 20px;
}


/* ===== ENROLLMENT FORM ===== */
.enrollment-card {
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.enrollment-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  padding: 18px;
  color: #fff;
}

.enrollment-header h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1rem;
}

.enrollment-body {
  background: #fff;
}

.form-control-custom {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;

}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 54, 42, 0.12);
  outline: none;
}

.btn-register {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: #fff;
  font-weight: 800;
  padding: 12px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 54, 42, 0.4);
  color: #fff;
}

.seats-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== QUICK INFO ===== */
.quick-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}



.qi-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.qi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.qi-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

/* ===== WHAT UNMUTE MEANS ===== */
.meaning-box {
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}

.box-red {
  background: #fff5f4;
  border: 2px solid #ffd0cc;
}

.box-green {
  background: #f0faf4;
  border: 2px solid #b8e6c8;
}

.box-heading {
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.box-red .box-heading {
  color: var(--primary);
}

.box-green .box-heading {
  color: var(--green);
}

.meaning-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.meaning-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-red .meaning-list li {
  color: var(--primary-dark);
}

.box-red .meaning-list li i {
  color: var(--primary);
}

.box-green .meaning-list li {
  color: var(--green);
}

.box-green .meaning-list li i {
  color: var(--green);
  font-weight: 800;
}

.box-img-placeholder {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-top: 10px;
}

.red-img {
  background: rgba(232, 54, 42, 0.1);
  color: var(--primary);
}

.green-img {
  background: rgba(39, 174, 96, 0.1);
  color: var(--green);
}

.unmute-statement {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.giving-voice-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  border-radius: var(--radius);
  padding: 18px;
}

.gv-text {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

/* ===== COMPARE ===== */
.compare-card {
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}

.card-grey {
  background: #f2f2f2;
  border: 2px solid #ddd;
}

.card-orange {
  background: linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
  border: 2px solid rgba(232, 54, 42, 0.25);
}

.compare-label {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.label-grey {
  color: #888;
}

.label-orange {
  color: var(--primary);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
}

.card-orange .compare-list li {
  color: var(--text-dark);
}

.card-orange .compare-list li i {
  color: var(--green);
}

.outcome-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 4px solid var(--accent-dark);
}

.outcome-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== DIFF TABLE ===== */
.diff-table-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.diff-header {
  margin: 0;
}

.diff-col-grey {
  background: #efefef;
  padding: 14px;
  font-size: 0.9rem;
  color: #555;
}

.diff-col-orange {
  background: var(--primary);
  padding: 14px;
  font-size: 0.9rem;
  color: #fff;
}

.diff-row-item {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.diff-row-item:last-child {
  border-bottom: none;
}

.diff-cell {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}

.grey-cell {
  background: #fafafa;
  color: var(--text-mid);
}

.orange-cell {
  background: #fff9f7;
  color: var(--text-dark);
}

/* ===== CREATE LIST ===== */
.create-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.create-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
}

.create-list li:last-child {
  border-bottom: none;
}

.create-list li i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.create-note {
  background: #fff8e1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-left: 4px solid var(--accent);
}

.child-create-img,
.exp-highlight-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto;
}

.child-create-img {
  background: linear-gradient(135deg, #f0faf4 0%, #d4efdf 100%);
  color: var(--green);
}

.exp-highlight-img {
  background: linear-gradient(135deg, #fff5f4 0%, #ffd6d1 100%);
  color: var(--primary);
}

/* ===== JOURNEY STEPS ===== */
.journey-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s;
}

.journey-step:hover {
  transform: translateY(-4px);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.journey-step p {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: 0;
}

.step-final .step-num {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.step-final p {
  color: var(--text-dark);
}

/* ===== DAY CARDS ===== */
.day-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--primary);
  transition: transform 0.2s;
}

.day-card:hover {
  transform: translateX(4px);
}

.day-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-final {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--text-dark);
}

.day-topic {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.day-card-final {
  border-left-color: var(--accent-dark);
}

/* ===== WHO IS THIS FOR ===== */
.who-card {
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.who-card h6 {
  font-weight: 800;
  font-size: 0.9rem;
  margin: 10px 0 6px;
}

.who-card p {
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.8;
  margin: 0;
}

.who-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.who-purple {
  background: linear-gradient(135deg, #f5f0ff 0%, #ebe0ff 100%);
  color: var(--purple);
  border: 2px solid rgba(142, 68, 173, 0.2);
}

.who-blue {
  background: linear-gradient(135deg, #f0f7ff 0%, #daeeff 100%);
  color: var(--blue);
  border: 2px solid rgba(41, 128, 185, 0.2);
}

.who-orange {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe0cc 100%);
  color: var(--orange);
  border: 2px solid rgba(255, 123, 53, 0.2);
}

.who-green {
  background: linear-gradient(135deg, #f0faf4 0%, #cceedd 100%);
  color: var(--green);
  border: 2px solid rgba(39, 174, 96, 0.2);
}

/* ===== WHAT YOUR CHILD GETS ===== */
.gets-card {
  padding: 20px 10px;
  transition: transform 0.2s;
}

.gets-card:hover {
  transform: translateY(-5px);
}

.gets-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5f4 0%, #ffd6d1 100%);
  color: var(--primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s;
}

.gets-card:hover .gets-icon {
  background: var(--primary);
  color: #fff;
}

.gets-card p {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* ===== PRICING ===== */
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
  padding: 0 0 30px;
  position: relative;
  border: 2px solid rgba(232, 54, 42, 0.15);
}

.pricing-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-amount {

  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin: 20px 0 4px;
}

.pricing-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0 30px;
  margin: 0 0 20px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--green);
}

.pricing-card .btn-enroll {
  display: block;
  margin: 0 30px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}

.footer-headline {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.btn-footer-enroll {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: #fff !important;
  font-weight: 800;
  padding: 13px 35px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232, 54, 42, 0.4);
}

.btn-footer-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 54, 42, 0.5);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.12);
}


.footer-note i {
  color: var(--primary);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .section-padded {
    padding: 50px 0;
  }

  .diff-cell {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .diff-col-grey,
  .diff-col-orange {
    padding: 10px;
    font-size: 0.8rem;
  }

  .pricing-features {
    padding: 0 16px;
  }

  .pricing-card .btn-enroll {
    margin: 0 16px;
  }

  .phone-mockup {
    width: 85px;
    height: 140px;
  }

  .phone-inner i {
    font-size: 1.8rem;
  }

  .create-list li {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 3.5rem;
  }

  .who-card {
    padding: 18px 10px;
  }

  .who-icon {
    font-size: 1.6rem;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


/* Custom spacing and subtle fixes */

.translate-middle-x {
  transform: translateX(-50%);
}

@media (max-width: 768px) {

  .position-absolute.w-75 {
    width: 95% !important;
    bottom: -60px !important;
  }

  .col-3 {
    padding: 5px !important;
    font-size: 0.8rem;
  }

}


p.ddpa {
  margin: 0;
  font-size: 1.5rem;
  text-align: left;
  color: var(--black);
}

.ddpa-txt {
  color: var(--orange);
  font-size: 1.1rem;
  text-align: left;
}

.sep {
  background-color: #8ac4fd;
  height: 2px;
  width: 45px;
  margin: 3px 0;
}

/* ── Feature cards ────────────────────────── */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .13);
}

.feature-icon-wrap {
  width: 101px;
  height: 86px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  /* font-size: 2rem; */
}

.feature-icon-wrap img {
  width: 100%;
  height: auto;
}

/* .icon-orange { background: linear-gradient(135deg,#ffe8d6,#ffd0b0); }
    .icon-blue   { background: linear-gradient(135deg,#d6eaff,#b8daff); }
    .icon-pink   { background: linear-gradient(135deg,#ffe0ec,#ffc4d6); }
    .icon-purple { background: linear-gradient(135deg,#e8d6ff,#d4b8ff); } */

.feature-label {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1E1D4C;
  line-height: 1.1;
}

.featured-block {
  position: relative;
}

.featured-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url('../images/half-moon.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 768px;
  z-index: -1;
}

.featured-remove::before {
  display: none;
}

.featured-block .l-square {
  background: #d95e00;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -18px;
  left: -30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
  z-index: -1;
}

.featured-block .r-square {
  background: #d95e00;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -18px;
  right: -30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 0px;
  z-index: -1;
}

.r-b {
  position: relative;
}

.r-b .right-border {
  position: absolute;
  top: 7px;
  right: 25px;
  width: 2px;
  height: 55px;
  background: #B08642;
}

/* ── Enrollment Section ── */
.enroll-section {
  padding: 60px 16px;
}

.top-tagline {
  font-weight: 500;
  font-size: 2rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 8px;
}

.festival-title {
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.year-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.event-pill {
  background: #1a1a1a;
  border-radius: 50px;
  width: 155px;
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.year-text {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #b8902a;
}

.form-inrollment{
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0 auto;
}

.form-heading {
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 3rem);
  color: var(--primary);
  letter-spacing: 0em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-subheading {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 15px;
}

.form-floating>label {
  font-size: 0.9rem;
  color: var(--black);
  padding-left: 16px;
  font-weight: 500;
}

.form-floating>.form-control {
  font-size: .92rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  height: 50px;
  padding: 16px 16px 0;
  color: #1a1a1a;
  transition: border-color .2s;
}

.form-floating>.form-control:focus {
  border-color: #e07b3a;
  box-shadow: 0 0 0 3px rgba(224, 123, 58, .12);
  outline: none;
}

.req {
  color: #e03030;
  margin-left: 2px;
}

.btn-enroll {
  width: 100%;
  background: #e12828;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  padding: 14px;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}

.btn-enroll:hover {
  background: #e12828;
  transform: translateY(-2px);
}

.btn-enroll:active {
  transform: translateY(0);
}

.footer-note {
  text-align: center;
  font-size: 1.5rem;
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 500;
}

.rocket-icon img {
  width: 50px;
  height: auto;
}

.quick-info {
  position: relative;
}

.quick-info .l-square {
  background: #d95e00;
  width: 70px;
  height: 50px;
  position: absolute;
  top: 165px;
  left: 170px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
  z-index: -1;
}

.quick-info .r-square {
  background: #d95e00;
  width: 70px;
  height: 50px;
  position: absolute;
  top: 165px;
  right: 120px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 8px;
  z-index: -1;
}


/* ── Unmute Section ── */
.unmute-section {
  padding: 60px 16px;
}

.unmute-title {
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.unmute-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  height: 100%;
}

.unmute-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  object-position: top;
}

.unmute-card-body {
  padding: 20px 22px 24px;
}

.unmute-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unmute-card-body ul li {
  font-size: 1.2rem;
  color: var(--black);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.unmute-card-body ul li::before {
  content: '·';
  font-size: 2.5rem;
  color: var(--black);
  flex-shrink: 0;
  line-height: 0;
  margin-top: -5px;
}

.unmute-tagline {
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  text-align: center;
  margin: 36px 0;
}

.unmute-bottom-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
}

.unmute-bottom-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.unmute-bottom-card .unmute-card-body {
  padding: 22px 26px 28px;
}

.unmute-footer-note {
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: #1a1a1a;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 0;
}

.unmute-footer-note span.hand-icon img {
  width: 37px;
  height: auto;
  position: relative;
  top: -3px;
}

.hand-icon img {
  width: 60px;
  height: auto;
  position: relative;
  top: -7px;
}

/* ── Camp About Section ── */
.camp-about-section {
  /* background: linear-gradient(160deg, #fdf6e3 0%, #fde8d8 100%); */
  padding: 60px 16px;
}

.camp-about-title {
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: #1a1a1a;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.camp-about-subtitle {
  font-weight: 600;
  font-size: clamp(.95rem, 2vw, 2rem);
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.compare-wrapper {
  background: #fff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0 auto;
}

.compare-inner {
  display: flex;
  gap: 8px;
  /* border-radius: 18px; */
  overflow: hidden;
  min-height: 420px;
}

/* ── Left panel (blue) ── */
.panel-left {
  flex: 1;
  background: linear-gradient(134deg, #C8E3FF 0%, #58ACFF 100%);
  padding: 28px 24px 0;
  position: relative;
  display: flex;
  border-radius: 18px;
  flex-direction: column;
  overflow: hidden;
  border: #ddd solid 1px;
}

/* ── Right panel (orange) ── */
.panel-right {
  flex: 1;
  background: linear-gradient(134deg, #FEF6F3 0%, #FFA949 100%);
  padding: 28px 24px 0;
  position: relative;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: #ddd solid 1px;
}

.panel-left-2 {
  flex: 1;
  background: linear-gradient(134deg, #C9F5A3 0%, #589968 100%);
  padding: 28px 24px 0;
  position: relative;
  display: flex;
  border-radius: 18px;
  flex-direction: column;
  overflow: hidden;
  border: #ddd solid 1px;
}

.panel-right-3 {
  flex: 1;
  background: linear-gradient(134deg, #EDDD 0%, #9E56F6 100%);
  padding: 28px 24px 0;
  position: relative;
  display: flex;
  border-radius: 18px;
  flex-direction: column;
  overflow: hidden;
  border: #ddd solid 1px;
}

.panel-heading {
  font-weight: 600;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.panel-list li {
  font-size: 1.1rem;
  color: #1a1a1a;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  font-weight: 500;
}

/* Red ✗ for left panel */
.panel-list li.cross .li-icon {
  color: #e03030;
  font-weight: 900;
  flex-shrink: 0;
  width: 17px;
  height: auto;
}

.panel-list li.cross .li-icon img {
  width: 100%;
  height: auto;
}

/* White circle + image at bottom */
.panel-img-circle {
  position: relative;
  /* margin-top: 16px; */
  display: flex;
  justify-content: end;
  align-items: flex-end;
  height: auto;
}

.panel-img-circle img {
  position: relative;
  z-index: 1;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  right: -24px;
}

/* ── Bottom tagline ── */
.camp-outcome-title {
  font-weight: 600;
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  color: var(--primary);
  text-align: center;
  margin-top: 36px;
  margin-bottom: 8px;
}

.camp-outcome-sub {
  font-weight: 600;
  font-size: 2rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .compare-inner {
    flex-direction: column;
  }

  .panel-img-circle {
    height: 160px;
  }

  .panel-img-circle img {
    width: 140px;
    height: 150px;
  }

  .panel-img-circle::before {
    width: 160px;
    height: 160px;
  }
}

/* Mohini Css */

/* ── Banner card ── */
footer {}

.summer-card {
  background: linear-gradient(73deg, #7848BC 0%, #a855f7 30%, #d8b4fe 100%);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  width: 100%;
  color: #fff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.18);
}

/* ── Headline ── */
.summer-card h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}

/* ── Pill tags row ── */
.tags {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.tags .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin: 0 15px;
}

/* ── CTA Button ── */
.btn-enrollm {
  background: #EF7F00;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.38);
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.btn-enrollm:hover {
  background: #ea6c0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
}

.btn-enrollm:active {
  transform: translateY(0);
}

/* ── Date badge ── */
.date-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #000;
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* ── Tagline below card ── */
.tagline {
  width: 100%;
  margin: 15px 0;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.btn-enrollm img {
  margin-top: -5px;
}

/*pricing css*/
/* ── Section wrapper ── */
.pricing-section {
  width: 100%;
  margin-bottom: 20px;
}

/* ── "PRICING" heading ── */
.title {
  font-size: clamp(1.4rem, 4vw, 3rem);
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.sub-title {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ── Gradient card ── */
.pricing-card1 {
  background: linear-gradient(135deg, #1a5fa8 0%, #1e88c8 40%, #29b5e8 100%);
  border-radius: 22px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 30px rgba(26, 95, 168, 0.25);
  flex-wrap: wrap;
}

/* ── Left content ── */
.pricing-left {
  color: #fff;
}

.pricing-amount1 {
  font-family: "Gelasio", serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-points img {
  width: 20px;
  margin-right: 6px;
}

.pricing-points li {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pricing-points li .hand {
  font-size: 1rem;
}

/* ── Enroll button ── */
.btn-enroll-outline {
  background: #fff;
  color: #000;
  border: 1.8px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  /* font-family: 'Nunito', sans-serif; */
  font-weight: 700;
  font-size: 18px;
  padding: 10px 35px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  letter-spacing: 0.2px;
}

.btn-enroll-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateX(3px);
}

.btn-enroll-outline .arrow {
  font-size: 1rem;
  line-height: 1;
}

/*Child gets*/
.wyc-section {
  width: 100%;
  margin-bottom: 60px;
}

/* ── Heading ── */
.wyc-title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

/* ── Cards row ── */
.wyc-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Single card ── */
.wyc-card {
  background: #ffffff;
  border-radius: 14px;
  /* border: 1.5px solid #e8e4db; */
  width: 200px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wyc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

/* ── Top: sky-blue gradient illustration box ── */
.wyc-card .illus-box {
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, #DCECE9 0%, #e6f3f1 20%, #dcece957 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  flex-shrink: 0;
}

/* ── Bottom: info area ── */
.wyc-card .info {
  padding: 20px 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ── Icon + red underline ── */
.wyc-card .icon-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.wyc-card .icon-row .small-icon {
  margin-bottom: 10px;
}

.wyc-card .icon-row .red-line {
  height: 3px;
  width: 50px;
  background: #F0926C;
  border-radius: 2px;
}

/* ── Label ── */
.wyc-card .label {
  font-size: 18px;
  font-weight: 600;
  color: #252525;
  line-height: 1.35;
  margin-top: 6px;
}

/*who is this for css*/
/* ── Section ── */
.witf-section {
  /* max-width: 860px; */
  width: 100%;
  margin-bottom: 60px;
}

/* ── Title ── */
.witf-title {
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

/* ── Grid ── */
.witf-grid {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Card base ── */
.witf-card {
  border-radius: 18px;
  width: 240px;
  min-width: 160px;
  height: 320px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Card colors */
.witf-card.teal {
  background-color: #2aab96;
}

.witf-card.purple {
  background-color: #7c3aed;
}

.witf-card.peach {
  background-color: #f4845f;
}

.witf-card.brown {
  background-color: #a0633a;
}

/* ── Label ── */
.witf-card .card-label {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  z-index: 3;
  margin: 0 auto 20px;
  text-align: center;
}

/* ── Child photo ── */
.witf-card .child-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 75%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  border-radius: 0;
}

/* ── Decorative shapes ── */
.shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.55;
}

/* Teal card shapes */
.witf-card .shape-circle {
  width: 28px;
  height: 28px;
  background: #fff;
  bottom: 130px;
  left: 32px;
}


/* ── Tagline ── */
.witf-tagline {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.witf-tagline .hand {
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

/* ── Placeholder silhouettes (replace with real <img> tags) ── */
.photo-placeholder {
  position: absolute;
  bottom: 0;
  right: 0;
  /* transform: translateX(-50%); */
  width: 69%;
  height: 60%;
  z-index: 2;
  /* display: flex; */
  /* align-items: flex-end; */
  /* justify-content: center; */
  /* overflow: hidden; */
}

.photo-placeholder img {
  width: 100%;
}

.witf-section .tagline {
  font-size: 30px;
}

/* ── All classes prefixed with tdp__ to avoid conflicts ── */

.tdp__section {
  width: 100%;
  margin-bottom: 60px;
}

.tdp__title {
  text-align: center;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

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

.tdp__item {
  background: #fffcf7;
  border-bottom: 1px solid #f0a830;
  padding: 25px 20px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 16px -22px;
  display: flex;
  align-items: center;
}

.tdp__item-text {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin: 0;
}

.jrny-section .red-line {
  background: #8AC4FD !important;
}

.jrny-section .icon-row .small-icon {
  margin-bottom: 7px;
  color: #EF7F00;
  font-weight: 600;
  font-size: 18px;
}

.line-icon {
  width: 100%;
  padding: 0 5%;
}

.jrny-section .illus-box img {
  max-height: 130px;
}

/* ── Wrapper ── */
.wycc__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

/* ── Card shell ── */
.wycc__card {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 10px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 40px;
}

/* Card 2 has a very light grey background */
.wycc__card--grey {
  background: #fff;
  margin-top: 20px;
}

/* ── Image panel ── */
.wycc__img-panel {
  flex: 0 0 300px;
  width: 300px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wycc__img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

/* Placeholder emoji for image */
.wycc__img-placeholder {
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

/* ── Text panel ── */
.wycc__text-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}

/* ── Title ── */
.wycc__heading {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #1a1a2e;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

/* ── Subtitle ── */
.wycc__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

/* ── Bullet list ── */
.wycc__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.wycc__list li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.7;
}

/* ── Tagline ── */
.wycc__tagline {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-top: 1rem;
}

.wycc__tagline .wycc__hand {
  margin-right: 0.25rem;
}

.wycc__wrapper h2 {
  text-align: left !important;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.wycc__card--grey .wycc__text-panel {
  padding-left: 50px;
  padding-right: 0;
}

.qr-code {}

.qr-code .qr-code-img {
  width: 130px;
  margin: auto;
  border: #fff solid 5px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.qr-code .qr-code-img img {
  width: 100%;
}

.qr-code p {
  text-align: center;
  font-weight: 600;
  color: #000;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 0;
}