@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'PlaySchool';
  src: url('/assets/fonts/GROBOLD.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

#main-section {
  background-image: url("/assets/scholl-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#header {
  background-color: whitesmoke;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.header-top {
  width: 100%;
  border-bottom: 1px solid black;
}

.header-top-wrapper {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 5px; */
}

.title {
    color: #2c4073;
}

#desktop-nav-link {
  width: 150px;
  height: 50px;
  border-right: 1px solid black;
  padding: 10px 5px;
}

#desktop-nav-link a {
  width: 100%;
  height: 100%;
  font-size: 0.9rem !important;
  text-align: center;
  line-height: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 400;
}

.header-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.header-bottom-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 0px;
}

.header-bottom-wrapper .header-bottom-navlink a {
  font-size: 1.2rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 500;
}

.header-bottom-navlink:hover {
    color: #dc3545;
}

.section-heading {
  /*font-family: Georgia, "Times New Roman", Times, serif;*/
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
}

/* Hero Section */
.hero-banner {
  background-color: #e5ba3c;
}

.heading-font {
  /*font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",*/
  /*  "Lucida Sans", Arial, sans-serif;*/
  font-family: 'PlaySchool', sans-serif;
}

/* Excellence */
/* .excellence-section {
  background-image: url("/assets/scholl-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

.excellence-card {
  padding: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.excellence-card .excellence-card-img {
    width: 100%;
    height: 250px;
}

.excellence-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.excellence-card h5,
p {
  text-align: center;
}

.excellence-card p {
  margin-bottom: 3rem;
}

.excellence-card:hover .excellence-card-bottom {
  background-color: brown;
}

.excellence-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c4073;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.excellence-card-bottom:hover {
  cursor: pointer;
}

/* Principal section */

#principal-section {
  background-color: #e5ba3c;
  position: relative;
  overflow: hidden;
}

#principal-section::before {
  content: " ";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.7;
  background-color: #a52a2a;
}

#principal-section::after {
  content: " ";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.7;
  background-color: #a52a2a;
}

/* Benefits Section */
#benefits-section {
  background-color: #e5ba3c;
  position: relative;
  overflow: hidden; 
}

#benefits-section::before {
  content: " ";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.7;
  background-color: #a52a2a;
}

#benefits-section::after {
  content: " ";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.7;
  background-color: #a52a2a;
}

/* Gallery Section */
.card {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
  transition: all 0.4s ease-out;
}

.card:hover {
  transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
  padding: 30px;
   background-image: linear-gradient(
    to right,
    #a52a2a,
    #b24d2a,
    #bc6c2f,
    #c28a3c,
    #c7a750
  );
  border-radius: 15px;
}

.cta-section form input,
select,
textarea {
  border: 1px solid white !important;
  background-color: transparent !important;
  border-radius: 15px !important;
  padding: 10px 16px;
  outline: none !important;
  color: white;
}

.cta-section form input::placeholder {
  color: white;
}

/* franchise */
.franchise-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  flex-shrink: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* testimonial Section */
.testimonial-section {
  /* background-color: #1e90ff; */
  background-image: #1e90ff, url("/assets/dots-pattern.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-wrapper {
  background-image: linear-gradient(
    to right,
    #a52a2a,
    #b24d2a,
    #bc6c2f,
    #c28a3c,
    #c7a750
  );
  padding: 12px;
  border-radius: 15px;
}

.testimonial-card {
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  color: white;
}

.quote-icon i {
  font-size: 4rem;
  color: white;
}

.rating i {
  color: yellowgreen;
}

.testimonial-text {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-card .testimonial-author .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intro Section */
.intro-card {
  padding: 15px;
  background-color: whitesmoke;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: all 0.4s ease;
}

.intro-card:hover h5 {
  color: brown;
}

.intro-card img {
  margin-bottom: 5px;
}

/* Faq Section */
.accordion-button {
  font-weight: 600 !important;
  color: #fff !important;
  background-color: brown !important;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: brown !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

.accordion-body li {
  position: relative;
  padding-left: 20px;
}

.accordion-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-body img {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.btn-close {
  z-index: 1;
  background-color: white;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-close:focus {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.btn-blink {
  animation: blink 1.5s infinite;
}

@media (max-width: 767.98px) {
  .modal-body img {
    border-radius: 15px 15px 0 0;
  }
}

/* Footer Section */
#footer-section {
  background-image: url("/assets/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#footer-section .container {
  margin-top: 5rem;
}

.footer-img {
  width: 100%;
  height: 150px;
  background-image: url("/assets/footer-img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#footer-section input::placeholder,
textarea::placeholder {
  color: white !important;
}

#footer-bottom {
    background: #2c4073;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: auto;
    text-align: center;
  }
  
  #footer-section {
  background: #a52a2a;
}

  #footer-section .container {
    margin-top: 0;
  }
}


/* Float Icon */

#phone {
    position: fixed;
    top: 50%;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

#phone:hover {
    border-radius: 10%;
}

#phone .phone-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: red;
}

#whatsapp {
    position: fixed;
    top: 59%;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 999;
    transition: all 0.4s ease;
}

#whatsapp:hover {
    border-radius: 10%;
}

#whatsapp .whatsapp-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: red;
}






