@charset "UTF-8";
:root {
  --black-color: #000;
  --white-color: #fff;
  --primary-font: "Sora", serif;
  --heading-font: "Big Shoulders Display", serif;
}
@media only screen and (min-width: 992px) {
  :root {
    --container-x: 100%;
  }
}
@media only screen and (min-width: 1251px) {
  :root {
    --container-x: 1180px;
  }
}
@media only screen and (min-width: 1341px) {
  :root {
    --container-x: 1280px;
  }
}
@media only screen and (min-width: 1451px) {
  :root {
    --container-x: 1380px;
  }
}
@media only screen and (min-width: 1561px) {
  :root {
    --container-x: 1480px;
  }
}
@media only screen and (min-width: 1671px) {
  :root {
    --container-x: 1580px;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-x) !important;
  padding: 0px clamp(0.63rem, 0.71vw + 0.36rem, 0.94rem);
  margin: 0 auto;
}

/* Header */
header {
  background: #fbf6f1;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 198px;
}
.logo img {
  max-width: 100%;
}
@media (width <= 900px) {
  .logo {
    width: 120px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  position: relative;
  margin-right: auto;
  padding-left: 60px;
}
@media (width <= 770px) {
  .nav-links {
    padding-left: 10px;
  }
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #0d173f;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--primary-font);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 10px;
}

.nav-links a:hover {
  background: #fff;
  border-radius: 5px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 999;
}

.dropdown li {
  white-space: nowrap;
  list-style: none;
}

.dropdown li a {
  color: #0d173f;
  font-size: 14px;
}

.dropdown li a:hover {
  color: #ff6b6b;
}

.arrow {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 5px;
}

.enroll-btn {
  background: #0d173f;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 85px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--primary-font);
  color: var(--white-color);
}

.enroll-btn:hover {
  background: #FFF96F;
  color: #0d173f;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0d173f;
}

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
    padding-left: 0;
    gap: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
  .enroll-btn {
    display: none;
  }
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* Hero Section */
.hero {
  background: #fbf6f1;
  padding: 120px 0 0px;
  color: white;
  overflow: hidden;
}
@media (width <= 1000px) {
  .hero {
    padding-bottom: 50px;
  }
}

.hero-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 1000px) {
  .hero-content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.hero-left h1 {
  font-size: clamp(1.5rem, 5.71vw + -0.64rem, 4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #202c51;
  font-weight: 500;
}
@media (width <= 1000px) {
  .hero-left h1 br {
    display: none;
  }
}

.hero-tag {
  background: #ff3b2c;
  color: white;
  padding: 5px clamp(0.63rem, 1.43vw + 0.09rem, 1.25rem);
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 500;
  border-radius: 0px;
  font-size: clamp(1.25rem, 1.71vw + 0.61rem, 2rem);
  font-family: var(--primary-font);
}

.hero-subtitle {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  margin-bottom: 2rem;
  color: #202c51;
  font-family: var(--primary-font);
}
@media (width <= 600px) {
  .hero-subtitle {
    margin-bottom: 20px;
  }
}

.hero-btm {
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}
@media (width <= 600px) {
  .hero-btm {
    flex-direction: column;
  }
}

.hero-details {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
}

.hero-btn {
  background: #0d173f;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 85px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--primary-font);
  color: var(--white-color);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #FFF96F;
  color: #0D173F;
}
@media (width <= 600px) {
  .hero-btn {
    text-align: center;
  }
}

.hero-image {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* What is Zyntra Online Section */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (width <= 800px) {
  .about-section {
    padding: 40px 0;
  }
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (width <= 800px) {
  .about-content {
    flex-direction: column;
    gap: 20px;
  }
}

.about-heading {
  width: 43%;
}
@media (width <= 800px) {
  .about-heading {
    width: 100%;
  }
}
.about-heading h2 {
  font-size: clamp(1.56rem, 2.14vw + 0.76rem, 2.5rem);
  color: #202c51;
  line-height: 1.2;
  font-weight: 500;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-text p {
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  color: #202c51;
  line-height: clamp(1.25rem, 0.57vw + 1.04rem, 1.5rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (width <= 800px) {
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 30px;
  justify-content: space-between;
}

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

.feature-card.imagine {
  background: #ff5d95;
  color: white;
}

.feature-card.create {
  background: #77b11c;
  color: white;
}

.feature-card.explore {
  background: #372abb;
  color: white;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: clamp(1.88rem, 1.43vw + 1.34rem, 2.5rem);
  font-family: var(--primary-font);
  font-weight: 600;
}

.feature-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-card p {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  font-family: var(--primary-font);
  font-weight: 400;
}

.workshop-section {
  width: 100%;
  padding: clamp(2.5rem, 8.57vw + -0.71rem, 6.25rem) 0 0 0;
  /* Third slide - partial red visible */
}
.workshop-section .workshop-container {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.workshop-section .workshop-header {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (width <= 500px) {
  .workshop-section .workshop-header {
    flex-direction: column;
  }
}
.workshop-section .workshop-header .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.workshop-section .workshop-header .left .workshop-subtitle {
  font-size: clamp(1.38rem, 2.57vw + 0.41rem, 2.5rem);
  font-weight: 600;
  font-family: var(--primary-font);
  color: #0d173f;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (width <= 500px) {
  .workshop-section .workshop-header .left .workshop-subtitle br {
    display: none;
  }
}
.workshop-section .workshop-header .left .workshop-duration {
  font-size: clamp(1.13rem, 0.86vw + 0.8rem, 1.5rem);
  color: var(--black-color);
  font-weight: 500;
  font-family: var(--primary-font);
}
.workshop-section .swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.workshop-section .swiper-wrapper {
  align-items: stretch;
}
.workshop-section .swiper-slide {
  background: #fbf6f1;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 20px;
  height: auto;
  align-items: flex-start;
}
.workshop-section .character-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.workshop-section .grade-title {
  font-size: clamp(1.25rem, 2.86vw + 0.18rem, 2.5rem);
  font-weight: 600;
  color: #0d173f;
  margin-bottom: 12px;
}
.workshop-section .course-title {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  color: #4a5676;
  margin-bottom: 24px;
  font-weight: 500;
}
.workshop-section .features-list {
  list-style: none;
  margin-bottom: 24px;
}
.workshop-section .features-list li {
  padding: 6px 0;
  color: #4a5676;
  font-size: clamp(0.94rem, 0.14vw + 0.88rem, 1rem);
  position: relative;
  padding-left: 20px;
}
.workshop-section .features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a5676;
  font-weight: bold;
}
.workshop-section .key-learning {
  margin-bottom: 24px;
}
.workshop-section .key-learning h3 {
  color: #4a5676;
  margin-bottom: 8px;
  font-size: clamp(1.13rem, 0.29vw + 1.02rem, 1.25rem);
  font-weight: 600;
}
.workshop-section .key-learning p {
  color: #4a5676;
  font-size: clamp(0.94rem, 0.14vw + 0.88rem, 1rem);
  line-height: 1.5;
}
.workshop-section .reserve-btn {
  background-color: white;
  color: var(--black-color);
  border: 1px solid #0d173f;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: clamp(0.94rem, 0.14vw + 0.88rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.workshop-section .reserve-btn:hover {
  background-color: #2c3e50;
  color: white;
}
.workshop-section .swiper-navigation {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (width <= 500px) {
  .workshop-section .swiper-navigation {
    display: none;
  }
}
.workshop-section .nav-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
}
.workshop-section .nav-prev {
  background-color: #b8c5d1;
  color: white;
}
.workshop-section .nav-next {
  background-color: #2c3e50;
  color: white;
}
.workshop-section .nav-button:hover {
  transform: scale(1.1);
}
.workshop-section .nav-prev:hover {
  background-color: #95a5b3;
}
.workshop-section .nav-next:hover {
  background-color: #1a252f;
}
.workshop-section .grades-9-12 .character-icon {
  background-color: #e74c3c;
}
@media (max-width: 768px) {
  .workshop-section .workshop-title,
  .workshop-section .workshop-subtitle {
    font-size: 1.8rem;
  }
  .workshop-section .swiper-slide {
    padding: 14px;
  }
  .workshop-section .nav-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .workshop-section .swiper-navigation {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    transform: none;
  }
}

.howitworks {
  padding: 20px 0;
}
.howitworks .howitworks-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  background: #fbf6f1;
  border-radius: 8px;
  padding: 30px;
}
@media (width <= 800px) {
  .howitworks .howitworks-row {
    flex-direction: column;
    padding: 15px;
  }
}
.howitworks .howitworks-row .howbox {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (width <= 800px) {
  .howitworks .howitworks-row .howbox {
    width: 100%;
  }
}
.howitworks .howitworks-row .howbox h2 {
  font-size: clamp(1.25rem, 0.71vw + 0.98rem, 1.56rem);
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0d173f;
}
.howitworks .howitworks-row .howbox ul {
  list-style: none;
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.howitworks .howitworks-row .howbox ul li {
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  color: #0d173f;
}
.howitworks .howitworks-row .howbox ul li::before {
  content: "•";
  color: #0d173f;
  position: absolute;
  left: 0;
}

/* --------- All Workshops Include Section --------- */
.includes {
  padding: clamp(0.94rem, 5vw + -0.94rem, 3.13rem) 0 clamp(0.94rem, 2.14vw + 0.13rem, 1.88rem) 0;
}
.includes .includes-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fbf6f1;
  border-radius: 8px;
  padding: 20px clamp(1.88rem, 2.86vw + 0.8rem, 3.13rem) 0 clamp(1.88rem, 2.86vw + 0.8rem, 3.13rem);
}
@media (width <= 1000px) {
  .includes .includes-container {
    flex-direction: column-reverse;
    padding: 20px 10px;
  }
}
.includes .includes-text {
  max-width: 500px;
}
@media (width <= 1000px) {
  .includes .includes-text {
    width: 100%;
    max-width: 100%;
  }
}
.includes .includes-text h2 {
  font-size: clamp(1.5rem, 2.29vw + 0.64rem, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0d173f;
}
.includes .includes-text ul {
  list-style: none;
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.includes .includes-text li {
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  color: #0d173f;
}
.includes .includes-text li::before {
  content: "•";
  color: #0d173f;
  position: absolute;
  left: 0;
}
.includes .includes-img img {
  max-width: 400px;
}
@media (width <= 500px) {
  .includes .includes-img img {
    max-width: 100%;
  }
}

.workshop-banner-sec {
  width: 100%;
}
.workshop-banner-sec .workshop-banner {
  background: #372ABB;
  color: white;
  padding: clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  min-height: 200px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-bottom: 50px;
}
@media (width <= 1000px) {
  .workshop-banner-sec .workshop-banner {
    flex-direction: column;
    gap: 20px;
  }
}
.workshop-banner-sec .left-section {
  width: 46%;
}
@media (width <= 1000px) {
  .workshop-banner-sec .left-section {
    width: 100%;
  }
}
.workshop-banner-sec .right-section {
  width: 46%;
}
@media (width <= 1000px) {
  .workshop-banner-sec .right-section {
    width: 100%;
  }
}
.workshop-banner-sec .workshop-title {
  font-size: clamp(1.25rem, 2.86vw + 0.18rem, 2.5rem);
  font-weight: 600;
  color: #FFEB2C;
  margin: 0 0 30px 0;
  line-height: 1.2;
}
.workshop-banner-sec .fee-info {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.workshop-banner-sec .fee-label {
  font-size: clamp(1.13rem, 1.14vw + 0.7rem, 1.63rem);
  font-weight: 400;
}
.workshop-banner-sec .fee-amount {
  font-size: clamp(1.63rem, 2vw + 0.88rem, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.workshop-banner-sec .fee-per-child {
  font-size: clamp(1.13rem, 1.14vw + 0.7rem, 1.63rem);
  font-weight: 400;
}
.workshop-banner-sec .description {
  font-size: clamp(1rem, 0.29vw + 0.89rem, 1.13rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.workshop-banner-sec .highlight-text {
  font-size: clamp(1.25rem, 0.57vw + 1.04rem, 1.5rem);
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.5;
}
.workshop-banner-sec .dates-info, .workshop-banner-sec .location-info {
  margin-bottom: 15px;
}
.workshop-banner-sec .info-label {
  font-weight: 400;
  margin-right: 8px;
}
.workshop-banner-sec .info-value {
  font-weight: 400;
}

/* --------- Why This Workshop Makes an Impact --------- */
.impact {
  padding: clamp(1.88rem, 10vw + -1.88rem, 6.25rem) 0;
  background-color: #FBF6F1;
}

.impact-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.impact-container h2 {
  font-size: clamp(1.56rem, 2.14vw + 0.76rem, 2.5rem);
  color: #0D173F;
  font-weight: 500;
}

.impact-container p {
  font-size: clamp(1rem, 0.29vw + 0.89rem, 1.13rem);
  color: #0D173F;
  font-weight: 400;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media (width <= 800px) {
  .impact-cards {
    flex-direction: column;
  }
}

.impact-card {
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  padding: 2rem;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
@media (width <= 1000px) {
  .impact-card {
    padding: 10px;
  }
}
@media (width <= 800px) {
  .impact-card {
    max-width: 100%;
  }
}
.impact-card:hover {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon img {
  height: 60px;
  margin: 0 auto 1rem auto;
}

.impact-card h3 {
  font-size: clamp(1.25rem, 0.71vw + 0.98rem, 1.56rem);
  margin-bottom: 0.5rem;
  color: #0D173F;
  font-weight: 500;
}

.impact-card p {
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  text-align: left;
  color: #333333;
  font-weight: 400;
  line-height: 25px;
}

.impact-character {
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 800px) {
  .impact-character {
    display: none;
  }
}
.impact-character img {
  max-width: 40%;
  height: auto;
}

/* --------- Venue & Dates Section --------- */
.venue {
  padding: 4rem 0;
}
@media (width <= 1000px) {
  .venue {
    padding-bottom: 0;
  }
}

.venue-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FBF6F1;
}
@media (width <= 1000px) {
  .venue-container {
    flex-direction: column;
  }
}

.venue-img {
  width: 50%;
}
@media (width <= 1000px) {
  .venue-img {
    width: 100%;
  }
}
.venue-img img {
  max-width: 100%;
}
@media (width <= 1000px) {
  .venue-img img {
    max-width: 100%;
  }
}

.venue-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px 50px;
}
@media (width <= 1000px) {
  .venue-text {
    width: 100%;
    padding: 30px 14px 40px 14px;
  }
}

.venue-text h2 {
  font-size: clamp(1.81rem, 1.57vw + 1.22rem, 2.5rem);
  margin-bottom: 0;
  font-weight: 500;
  color: #0D173F;
}

.venue-text p {
  margin-bottom: 0.5rem;
  color: #0D173F;
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
}

.venue-text strong {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
}

.btn {
  border-radius: 100px;
  border: 1px solid #0D173F;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  font-family: var(--primary-font);
}
.btn:hover {
  background: #FFF96F;
  color: #0D173F;
}

/* --------- Enroll Form Section --------- */
.enroll {
  padding: 4rem 0;
  background-color: var(--light-cream);
}

.enroll-container {
  display: flex;
  gap: 2rem;
  background: #FBF6F1;
  padding: clamp(0.88rem, 5.14vw + -1.05rem, 3.13rem);
  border-radius: 12px;
}
@media (width <= 1000px) {
  .enroll-container {
    flex-direction: column;
  }
}

.enroll-text {
  width: 40%;
}
@media (width <= 1000px) {
  .enroll-text {
    width: 100%;
  }
}

.enroll-text h2 {
  font-size: clamp(1.63rem, 1.43vw + 1.09rem, 2.25rem);
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0D173F;
}

.enroll-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  color: #0D173F;
}

.enroll-text h3 {
  font-size: clamp(1rem, 0.57vw + 0.79rem, 1.25rem);
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.enroll-text ol {
  color: var(--text-light);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.enroll-text li {
  margin-bottom: 0.5rem;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
}

.enroll-form {
  width: 60%;
}
@media (width <= 1000px) {
  .enroll-form {
    width: 100%;
  }
}

.enroll-form p {
  margin-bottom: 1rem;
  font-weight: 600;
  background: #47B2FF;
  color: var(--white-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  border-radius: 8px;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (width <= 600px) {
  .form-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.form-grid div {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 16px;
  margin-bottom: 0.5rem;
  color: var(--black-color);
}

input, select, textarea {
  padding: 18px 20px;
  background: var(--white-color);
  border-radius: 0px;
  font-size: 16px;
}

textarea {
  width: 100%;
}

.btn {
  background: #0D173F;
  color: var(--white-color);
  font-size: 16px;
  font-family: var(--primary-font);
  padding: 15px 25px;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
}
.btn:hover {
  background: #FFF96F;
  color: #0D173F;
}

/* --------- FAQs & Parent Assurance Section --------- */
.faqs {
  padding: clamp(0.63rem, 2.86vw + -0.45rem, 1.88rem) 0 clamp(0.63rem, 12.86vw + -4.2rem, 6.25rem) 0;
}

.faqs-container {
  display: flex;
  gap: 3rem;
}
@media (width <= 1000px) {
  .faqs-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.faqs-text {
  flex: 1;
}

.faqs-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.parent-assurance {
  background-color: #FBF6F1;
  padding: clamp(0.94rem, 2.14vw + 0.13rem, 1.88rem);
  border-radius: 8px;
  width: 30%;
}
@media (width <= 1000px) {
  .parent-assurance {
    width: 100%;
  }
}

.parent-assurance h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.parent-assurance p {
  color: var(--text-light);
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  line-height: clamp(1.38rem, 0.57vw + 1.16rem, 1.63rem);
}

/* Footer */
.footer {
  background: #0d173f;
  color: white;
  padding: clamp(1.25rem, 8.57vw + -1.96rem, 5rem) 0 clamp(1.25rem, 4.29vw + -0.36rem, 3.13rem) 0;
  text-align: center;
}
.footer .footer-sec {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
.footer .footer-sec .footer-logo {
  width: -moz-fit-content;
  width: fit-content;
}
.footer .footer-sec .footer-tagline {
  color: #ef52bf;
  font-size: clamp(1.13rem, 0.86vw + 0.8rem, 1.5rem);
}
.footer .footer-sec .footer-sub-tagline {
  color: #fff;
  font-size: clamp(0.88rem, 0.29vw + 0.77rem, 1rem);
  font-weight: 400;
  padding-top: 5px;
}
.footer .footer-sec .social-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer .footer-sec .social-dots li {
  list-style: none;
}
.footer .footer-sec .social-dots li a {
  text-decoration: none;
}
.footer .footer-sec .social-dots li:hover {
  transform: scale(1.3);
}
.footer .footer-sec .ftbtm {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.94rem, 5vw + -0.94rem, 3.13rem);
}
.footer .footer-sec .ftbtm li {
  list-style: none;
  font-size: 12px;
  color: #a0a0a0;
}
.footer .footer-sec .ftbtm li a {
  font-size: 12px;
  color: #a0a0a0;
  text-decoration: none;
}
.footer .footer-sec .ftbtm li a:hover {
  color: #ef52bf;
}/*# sourceMappingURL=zyntra.css.map */