/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ed7a21;
  --secondary: #083761;
  font-family: "Archivo", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Urbanist", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h3 {
  color: #000;
  margin: 0;
}

h1,
h2,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  line-height: normal;
  font-size: 0.875rem;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 1.25rem 1.875rem;
  border-radius: 50px;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
  background-color: #083761;
  border-radius: 12px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 0.125rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  border: 1px dashed #083761;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 1016px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 4rem;
  width: fit-content;
  left: 0;
  right: 0;
  margin: auto;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 0.625rem;
  width: 0.625rem;
  display: inline-block;
  margin: 0 0.35rem !important;
  opacity: 1;
  border: #8c8b89;
  background: #8c8b89;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: end;
  padding: 0 0 7.875rem 0;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: -2px;
}

.main-slider p {
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  margin: 0.875rem 0 1.875rem;
}

/* !MAIN HERO SLIDER CSS */

/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* !SEARCH BAR CSS */

.navbar-nav .nav-item .nav-link:hover {
  background-color: var(--white);
  border-color: #7a8085;
  color: #395a77;
}

.form-inline a {
  margin: 0 0 0 45px;
  color: var(--white);
}

.slideOne .btn-group {
  align-items: center;
  gap: 1rem;
}

.slideOne .btn-group .themeBtn:last-child {
  border: 1px dashed var(--white);
  padding: 1.125rem 3.925rem;
  background-color: #5bb1af;
}

.subHead {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fb0007;
  letter-spacing: 1px;
  width: fit-content;
  border: 1px dashed #fb0007;
  padding: 0.5625rem 1.95rem;
  border-radius: 50px;
}

.school-content p {
  font-size: 2.125rem;
  font-weight: 600;
  color: #2c4073;
  line-height: 1.7;
  letter-spacing: -2px;
  font-family: "Quicksand";
  margin: 1.875rem 0 1.875rem;
  width: 97%;
}

.school-content .themeBtn {
  padding: 1.125rem 1.875rem;
}

.school-img {
  position: relative;
  margin: 5rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.school-img img:nth-child(2) {
  margin: -13rem 0 0 0;
}

.school-sub2 {
  position: absolute;
  top: -8rem;
  right: -11rem;
}

.school-sec {
  padding: 9rem 0 6rem 0;
}

.school-sub1 {
  position: absolute;
  right: 3rem;
  bottom: 0;
}

.family-main {
  text-align: center;
  border: 1px dashed #7a8085;
  padding: 2.5625rem 1.4375rem 2.1875rem 1.5rem;
  border-radius: 20px;
  height: 100%;
}

.family-main p {
  font-weight: 500;
  color: #4a4a4a;
  margin: 1rem 0 0 0;
  line-height: 1.3;
}

.family-box {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.family-box h5 {
  font-size: 2.625rem;
  font-weight: 600;
  color: #2c4073;
  font-family: "Urbanist";
}

.family-img {
  position: absolute;
  right: 0;
}

.mainHead {
  font-size: 3.75rem;
  font-weight: bold;
  color: #2c4073;
  letter-spacing: -2px;
  line-height: 1.5;
}

.child-top {
  text-align: center;
  margin: 0 0 2.25rem 0;
}

.child-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c4073;
  width: 80%;
}

.child-content {
  padding: 2.5625rem 0px 2.5625rem 2.0625rem;
  border-radius: 12px;
  background-color: rgb(117 193 55 / 10%);
  margin: -7px 0 0 0;
  position: relative;
  z-index: -1;
}

.child-main {
  margin-bottom: 2.625rem;
}

.child-content.back-color {
  background-color: rgb(242 83 52 / 10%);
}

.child-box {
  border: 2px solid #fed60a;
  position: relative;
  background-color: rgb(254 214 10 / 10%);
  padding: 2.125rem 1.25rem 0 2rem;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.child-box h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #2c4073;
  line-height: 1.3;
  font-family: "Archivo";
  margin-bottom: 1.375rem;
}

.child-img {
  position: absolute;
  left: -13px;
  right: 0;
  margin: auto;
  bottom: 0;
}

.child-img img {
  width: 100%;
}

.child-box .themeBtn {
  padding: 1.0125rem 1.975rem;
}

.offer-top {
  text-align: center;
  margin: 0 0 1rem 0;
}

.offer-top .mainHead {
  margin: 0.975rem 0 0 0;
}

.offer-main {
  text-align: center;
  position: relative;
}

.offer-content a {
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Urbanist";
  color: #000;
  margin: 0.875rem 0 0;
  display: block;
}

.offer-wrapper {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
  width: fit-content;
}

.grow-top {
  text-align: center;
  margin: 0 0 2.75rem 0;
}

.grow-top .mainHead {
  margin: 1rem 0 0 0;
  line-height: 1.2;
}

.grow-main {
  text-align: center;
  border: 1px dashed #c4c4c4;
  border-radius: 20px;
  padding: 1.25rem;
}

.student-sec {
  background-color: rgb(91 177 175 / 10%);
  border-radius: 20px;
  margin: 0 1.25rem;
}

.student-top {
  text-align: center;
  margin: 0 0 2rem 0;
}

.student-top .mainHead {
  margin: 0.325rem 0 0 0;
}

.student-main h4 {
  font-size: 1.6875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #2c4073;
  letter-spacing: -1px;
  line-height: 1.3;
  margin: 0.875rem 0 0 0;
}

section.offer-sec {
  background: url(../images/offerbg.webp) center/cover no-repeat;
}

.gallery-top .mainHead {
  text-align: center;
}

.gallery-sec {
  padding: 8rem 2.5rem 6rem 2.5rem;
}

.gallery-sec .col-md-3:nth-child(even) .gallery-img {
  margin: 3rem 0 4.5rem 0;
}

.gallery-img img {
  border-radius: 20px;
}

.expert-sub1 {
  position: absolute;
  left: 6rem;
  top: 6rem;
}

.expert-sub2 {
  position: absolute;
  right: 4rem;
  bottom: 11rem;
}

.expert-main {
  text-align: center;
}

.expert-content h3 {
  font-size: 1.875rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #2c4073;
  font-family: "Quicksand";
  margin: 0.25rem 0 0.9625rem 0;
}

.expert-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.expert-social li a i {
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 50px;
  background-color: var(--white);
  color: #5bb1af;
  display: grid;
  place-items: center;
}

.expert-content {
  background-color: rgb(255 223 0 / 10%);
  padding: 9rem 0 2rem 0;
  border-radius: 48px;
  margin: -8rem 0 0 0;
}

.expert-top .mainHead {
  text-align: center;

  line-height: 1.2;
}

.testimonial-main .mainHead {
  text-align: center;
  line-height: 1.2;
  margin: 1.075rem 0 3rem;
}

.testbg {
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

.testimonial-back {
  position: relative;
}

.test-sub {
  position: absolute;
  margin: auto;
  top: unset;
  right: 0;
  left: 0;
  bottom: -15rem;
  z-index: -1;
}

.testimonial-sec {
  padding: 12rem 0;
  z-index: 11;
}

.pen-imag {
  position: absolute;
  left: 0;
  top: 3rem;
}

.testimonial-content p {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}

.test-imag {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 2.4375rem 4rem 0 0;
  gap: 1rem;
}

.test-imag h5 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #2c4073;
}

.test-imag h5 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #323232;
  font-family: "Urbanist";
  margin: 0.325rem 0 0 0;
}

.testislider .swiper-button-next:after,
.testislider .swiper-button-prev:after {
  display: none;
}

.testislider .swiper-button-next,
.testislider .swiper-button-prev {
  height: 3rem;
  width: 3rem;
  border-radius: 50px;
  background-color: var(--white);
  transition: 0.6s ease;
  color: #5bb1af;
  bottom: 0;
  top: unset;
  left: 0;
  right: 0;
  margin: auto;
}

.testislider .swiper-button-next:hover,
.testislider .swiper-button-prev:hover {
  background-color: #ed7a21;
  color: var(--white);
}

.testislider .swiper-button-next {
  right: 2rem;
}

.testislider .swiper-button-prev {
  left: -9.97rem;
}

.expert-sec {
  padding: 10rem 0 3rem 0;
}

/* --- Section igk4rf --- */
.early-learning-blog .themeBtn {
  margin: 2.25rem 0 0 0;
}

.dashed-card {
  border: 1px dashed #7a8085;
  border-radius: 20px;
  padding: 0.6875rem;
  background: #fff;
  transition: all 0.3s ease;
}

.dashed-card:hover {
  border-color: #1e2c5b;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.rounded-img {
  border-radius: 15px;
  object-fit: cover;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #2c4073;
  margin-bottom: 1rem;
}

.read-more-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c4073;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 2px solid #2c4073;
  padding-bottom: 3px;
}

.read-more-link:hover {
  color: #1e2c5b;
  border-bottom-color: #1e2c5b;
  text-decoration: none;
}

.arrow-icon {
  margin-left: 6px;
  font-size: 1.1em;
  line-height: 1;
}

/* Badge for the middle card */
.custom-badge {
  position: absolute;
  bottom: 15px;
  right: 0;
  background-color: #eaf6aa;
  color: #3f4a25;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 15px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
  text-transform: uppercase;
}

/* --- Section 1cur8 --- */
/* Left Side Form Box */
.form-wrapper {
  background-color: #5bb5b0;
  /* Teal color from screenshot */
  border-radius: 30px;
  padding: 3rem 3rem 3rem 232px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c4073;
  /* Darker teal for text */
  margin-bottom: 8px;
}

.custom-input {
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  box-shadow: none !important;
  border: 1px dashed #7a8085;
  height: 58px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #7a8085;
}

.custom-input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}

.custom-textarea {
  border-radius: 20px;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  resize: none;
}

/* Custom select chevron fix if needed, though standard select is okay */
.custom-select-arrow {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1em;
}

/* Submit Button */

/* Right Side Image */
.image-wrapper img {
  border-radius: 30px;
  object-fit: cover;
  min-height: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .form-wrapper {
    padding: 2rem;
  }

  .image-wrapper {
    height: 400px;
  }
}

section.early-learning-blog .mainHead {
  text-align: center;
  margin: 0 0 2rem 0;
}

.card-content {
  padding: 0.875rem 1.875rem 1.875rem 1.925rem;
}

.early-learning-blog {
  padding: 6rem 0 0;
}

.enrollment-section {
  margin: 0 1.25rem;
  padding-bottom: 1rem;
}

.contact-heading .mainHead {
  margin: 38px 0 36px;
}

footer {
  background-color: #ed7a21;
  padding: 4rem 0 3rem 0;
  border-radius: 48px;
  margin: 0 1.125rem 1.125rem 1.125rem;
}

footer h4 {
  font-size: 39px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -1px;
}

.footer-top {
  border-bottom: 1px dashed var(--white);
  padding: 0 0 3rem 0;
  margin: 0 0 4rem 0;
}

.footer-form .form-control {
  height: 3.25rem;
  border-radius: 50px;
  outline: unset;
  box-shadow: unset;
  border: unset;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}

.footer-form .form-group {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-form a i {
  height: 3.125rem;
  width: 3.125rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #5bb1af;
  color: var(--white);
  transform: rotate(-56deg);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2rem 0 0 0;
}

.footer-social li a i {
  height: 3.25rem;
  width: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: #fb0007;
  background-color: #f4f4f4;
  transition: 0.6s ease;
  font-size: 1.25rem;
}

footer h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.footer-list li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.footer-list li + li {
  margin: 0.625rem 0 0 0;
}

ul.footer-items li a span {
  font-weight: 400;
}

ul.footer-items li a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.footer-items li + li {
  margin: 0.875rem 0 0 0;
}

.footer-bottom {
  text-align: center;
  margin: 4rem 0 0 0;
}

.footer-bottom p {
  color: var(--white);
  font-family: "Archivo";
}

.footer-social li a:hover i {
  color: var(--white);
  background-color: #fb0007;
}

.footer-list li a::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  bottom: -6px;
  background-color: #fb0007;
  transition: 0.6s ease;
  left: 0;
  right: 0;
  margin: auto;
}

.footer-list li a:hover::before {
  width: 100%;
}

.footer-list li a:hover {
  color: #fb0007;
}

.themeBtn::before {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  width: 0;
  background-color: var(--secondary);
  transition: 0.6s ease;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.themeBtn:hover::before {
  width: 100%;
  border-color: var(--secondary);
}

.themeBtn:hover {
  color: var(--white);
}

@keyframes floatLR {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }

  100% {
    transform: translateX(0);
  }
}

.offer-card,
.student-card,
.teacher-card {
  animation: floatLR 4s ease-in-out infinite;
}

@keyframes bounceHover {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes penWrite {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(6px, -4px) rotate(2deg);
  }

  50% {
    transform: translate(12px, 0) rotate(-2deg);
  }

  75% {
    transform: translate(6px, -4px) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.pen {
  animation: penWrite 3s ease-in-out infinite;
  transform-origin: bottom left;
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 5rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
}

.innerBan {
  position: relative;
}

/* ABOUT FOUNDER START */

.about-founder {
  background: #eff7f7;
}

.about-founder .row + .row {
  margin-top: 3rem;
}

.founder-box p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-weight: 500;
}
.founder-img {
  text-align: center;
}
/* ABOUT FOUNDER END */

.wathershep h3 {
  font-size: 3.75rem;
  font-weight: bold;
  color: #2c4073;
}

.wathershep p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-weight: 500;
}

section.family-sec.wathershepdsec .row + .row {
  margin-top: 5rem;
}

section.family-sec.wathershepdsec .family-main {
  background: #fff;
}

section.family-sec.wathershepdsec .family-main p {
  font-size: 1.3125rem;
  font-weight: 500;
}

.whyfamyhead {
  font-size: 2.625rem;
  font-weight: 500;
  color: #2c4073;
  text-align: center;
  margin-bottom: 3rem;
}

.programwraps h3 {
  font-size: 50px;
  font-weight: bold;
  color: #2c4073;
}

.programwraps p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.9;
}

section.program-section .row + .row {
  margin-top: 4rem;
}

section.early-learning-blog.admsiionsec .dashed-card {
  margin-bottom: 1.5rem;
}

.circle-hover-section {
  background-color: #fff;
}

.circle-item {
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 2rem;
}

/* Circle Wrapper to maintain shape */
.circle-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

/* Image Styling */
.circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Green Overlay Styling */
.circle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(97, 165, 152, 0.85);
  /* Teal/Green color matching screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border-radius: 50%;
}

/* Text inside the overlay */
.overlay-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

/* Text below the circle */
.caption-text {
  font-size: 1.5rem;
  color: #333;
  font-weight: 400;
  margin-top: 0.9375rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover Effects */
.circle-item:hover .circle-overlay {
  opacity: 1;
}

.circle-item:hover .overlay-text {
  transform: translateY(0);
}

.circle-item:hover .circle-img {
  transform: scale(1.05);
}

/* Hide bottom text on hover to mimic the text 'moving inside' */
.circle-item:hover .caption-text {
  opacity: 0;
  transform: translateY(-10px);
}

.contact-section1 {
  padding-top: 1rem;
}

.admissionwrpass h4 {
  font-size: 2rem;
  color: #2c4073;
  font-weight: bold;
  margin-bottom: 1rem;
}

.admissionwrpass p {
  color: #000;
  margin-bottom: 10px;
}

.admissionwrpass a {
  color: #2c4073;
  font-weight: 500;
}

section.admission-section {
  padding: 4rem 0;
}

.resourcesimage figure img {
  width: 170px;
  height: 140px;
  object-fit: contain;
}

.enrollment-form-section {
  background-color: #fff;
  color: #333;
}

.main-title {
  font-weight: bold;
  color: #2e3a59;
  font-size: 3.75rem;
}

.section-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #2e3a59;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #2c4073;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.form-control.custom-pill {
  border-radius: 50px;
  border: 1px dotted #a0a0a0;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  background-color: transparent;
  height: auto;
  color: #333;
}

.form-control.custom-pill::placeholder {
  color: #888;
  font-weight: 300;
}

.form-control.custom-pill:focus {
  box-shadow: none;
  border-color: #2e3a59;
  border-style: solid;
}

.check-group label.custom-control-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #2c4073;
  padding-top: 3px;
  cursor: pointer;
}

.small-heading {
  color: #2e3a59;
  font-size: 0.8rem;
  display: block;
}

.info-text {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.4;
  font-weight: 600;
}

.question-text {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #2e3a59;
  background-color: #2e3a59;
}

/* Radio button alignment tweak */
.custom-control-label::before,
.custom-control-label::after {
  top: 0.15rem;
}

/* Ensure specific spacing matches design */
.mb-5 {
  margin-bottom: 3.5rem !important;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
}

.family-main h3 {
  font-size: 1.3rem;
  margin-top: 1rem;
  font-weight: 600;
}

.student-main p {
  font-size: 1rem;
  line-height: 1.5;
}

.school-content.about-schoolcntnt p {
  font-size: 1.75rem;
}

.programwraps h4 {
  color: #2c4073;
  font-weight: 600;
  margin: 10px 0;
}

.programwraps ul li {
  list-style: disc;
  font-weight: 500;
  margin-bottom: 10px;
}

.programwraps ul {
  margin-top: 1rem;
  margin-left: 1rem;
}
.admissionwrpass ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.admissionwrpass ul {
  margin: 1rem 0 0 1rem;
}

/* Faq Sec Css Start */

.faqSec:before {
  clip-path: polygon(50% 0%, 100% 31%, 100% 100%, 0 100%, 0% 31.2%);
}

.faqSec #accordion .card {
  border: none;
  padding: 0rem 1rem;
  background: transparent;
  margin-bottom: 2.5rem;
  border-radius: unset;
}

.faqSec #accordion .card .btn-link {
  --height: 3.5rem;
  --width: 4.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  color: #1a1a1a;
  padding: 0;
  border: 0;
  font-size: 1.5625rem;
  border-radius: unset;
  text-decoration: none;
  overflow: hidden;
  border-bottom-left-radius: 0;
  text-align: left;
  border-bottom: 3px solid var(--secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.faqSec #accordion .card .btn-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08a28a;
  width: var(--width);
  height: var(--height);
  margin-left: auto;
  border-radius: 50%;
  background: 000;
  font-size: 1rem;
  height: 2rem;
  width: 2rem;
}

.faqSec #accordion .card .btn-link i::before {
  content: "\f068";
}

.faqSec #accordion .card .btn-link.collapsed i::before {
  content: "\f067";
}

.faqSec #accordion .card .btn-link.collapsed i {
  color: #225743;
  height: 2rem;
  width: 2rem;
  font-size: 1rem;
}

.faqSec #accordion .card + .card {
  margin-top: 0;
}

.faqSec #accordion .card .card-body {
  padding: 0rem 4rem 0.5rem 0rem;
}

.faqSec #accordion .card .card-body p {
  color: var(--black);
  font-size: 1.375rem;
  margin: 0;
  line-height: 33px;
}
.card-body ul {
  margin: 1rem 0;
}

.card-body ul li {
  list-style: disc;
  margin-bottom: 8px;
  margin-left: 1rem;
}

/* Faq Sec Css Start */

section.privacy-section p {
  font-size: 1rem;
  color: #000;
}

section.privacy-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #083761;
}

section.privacy-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #083761;
}

section.privacy-section ul li {
  list-style: disc;
  margin-bottom: 10px;
  margin-left: 1rem;
}

.enroll-head p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 600;
  width: 90%;
}

.form-section .answer {
  display: flex;
  /*align-items: center;*/
  flex-direction: column;
  gap: 2em;
}

.form-section .answer input {
  width: 100%;
  outline: unset;
  caret-color: var(--primary);
  border-radius: 50px;
  border: 1px dotted #a0a0a0;
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  background-color: transparent;
  height: auto;
  color: #333;
}

.form-section .answer.fixed-width input {
  width: 100%;
  max-width: 430px;
}

.enroll-head h3 {
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Quicksand";
}
