@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  margin: 0;
  background-color: #ffffff;
  transition: background-color 0.3s ease-in-out;
  box-sizing: border-box;
  animation: fadeIn 1s ease-in-out;
}
.default-light-bg {
  background-color: #F6F6F7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.default-color {
  color: #2c7a7b !important;
  /* Customize as needed */
}

.default-button {
  background-color: #2c7a7b !important;
  /* Customize as needed */
  color: #fff;
}

.second-image {
  border-radius: 8px;
  /* Customize as needed */
}

.default-color {
  color: #ffd000 !important;
}

.bg-success {
  background-color: #2c7a7b !important;
}

.text-success {
  color: #2c7a7b !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bolder;
}

.rounded-20 {
  border-radius: 20px;
  border: none;
}

.py-lg-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 600px) {
  .px-sm-50 {
    padding-right: 34px !important;
    padding-left: 34px !important;
  }
}

.rounded-20 {
  border-radius: 20px;
}

.card-text {
  font-size: 11px !important;
  margin-bottom: 10px;
  color: gray;
}






.lead {
  line-height: 1.5 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  text-transform: none !important;
  margin-bottom: 1rem !;
  color: gray !important;
}

/* Add the combined CSS here */
/* Existing styles */
.header {
  background-color: #2c7a7b;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 60px;
}

header .logo {
  width: 100px;
}

nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-right: 1rem;
}

nav .nav-item .nav-link {
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

nav .nav-item .nav-link:hover {
  color: #bfdcd9;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease-in-out;
}

nav .nav-item .active {
  color: #bfdcd9;
  font-weight: bold;
}

/* New styles for sticky header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.header-default {
  background-color: #2c7a7b;
}

.header-scrolled {
  background-color: #343a40;
  padding: 10px 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-scrolled .nav-link.active {
  color: #8ad3d4;
  font-weight: bold;
}

.default-button {
  border-radius: 0.5rem !important;
  font-weight: 500 !important;
  width: 100% !important;
  padding: 0.75rem !important;
  background-color: #2c7a7b !important;
  border: none !important;
  color: white !important;
}

.default-button:hover {
  background-color: #1d5a5a !important;
  color: white !important;
}

.nav-button-container {
  display: flex;
  align-items: center;
}

.nav-button-container .menu-toggle {
  display: none;
  /* Hide by default */
  background-color: transparent !important;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 25px;
  color: white;
  margin-left: 10px;
  /* Adjust margin to control spacing */
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    justify-content: flex-end;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .desktop-menu {
    display: none;
  }

  .nav-button-container .menu-toggle {
    display: inline;
    /* Show on mobile devices */
  }

  .header {
    background-color: #2c7a7b;
    padding: 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
}

#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c7a7b;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 100px;
  /* Adjust size as needed */
}

.close-menu {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  /* margin-top: 50px; */
}

.menu-list a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  padding: 10px;
}

.menu-list .nav-item {
  margin-bottom: 10px;
}

.menu-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.translator {
  font-size: 14px;
}

.gt_switcher-popup,
.glink .nturl .notranslate {
  color: white !important;
}

.gt_white_content a span {
  color: black !important;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

#banner-inner-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 20%;
  transform: translateX(-10%);
  width: 100%;
  height: auto;
}

.slick-carousel {
  position: relative;
  z-index: 1;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #000000;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #2c7a7b;
  border-radius: 50%;
}

.slick-slide img {
  width: 100%;
  /* border-radius: 47px; */
  display: block;
}

@media (max-width: 767px) {
  #banner-inner-image {
    top: -20px;
    width: 200%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #banner-inner-image {
    top: -30px;
    width: 200%;
  }
}

@media (min-width: 992px) {
  #banner-inner-image {
    top: -40px;
    width: 200%;
  }
}

.lazy {
  display: block;
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
}

.background-image {
  background-image: url('/assets/images/home/banner-1.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the color and opacity as needed */
  z-index: 2;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  padding: 2rem;
}




.scale {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  /* Added transition for z-index */
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 10px auto;
}

@media (max-width: 767px) {
  .scale:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow for hover */
    z-index: 10;
    /* Ensure the card is on top */
  }
}

@media (min-width: 768px) {
  .scale:hover {
    transform: scale(1.5);
    /* Slightly larger scale for desktop */
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow for hover */
    z-index: 10;
    /* Ensure the card is on top */
  }
}

.how-it-works .step {
  color: white;
}

#how-list h3 {
  background-color: #309689 !important;
  border-radius: 8px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 3px;
}

.how-it-works .step-text {
  margin-top: 5px;
  font-size: 16px;
}

.fancybox__content>.carousel__button.is-close {
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  background-color: #2c7a7b !important;
  color: white !important;
}

#for-scholl {
  background: url("/assets/images/home/howto.jpg") no-repeat center center;
  background-size: cover;
  height: 100%;
  border-radius: 20px;
}

.fit-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Custom CSS for Tabs */
.nav-tabs .nav-link {
  border: none;
  color: #555;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent !important;
}

.nav-tabs .nav-link.active {
  border: none;
  color: #309689;
  border-bottom: 3px solid #309689;
}

.nav-tabs .nav-link:hover {
  border: none;
  color: #309689;
  border-bottom: 3px solid #309689;
}

.nav-tabs {
  border: none !important;
}


/* Testimonials Section */
.testimonials {
  background-color: #e9f5f4;
}

.testimonials .card-footer {
  border-radius: 47px !important;
  background-color: white !important;
}

.testimonials .slider .card {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

/* Ensure dots are centered */
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

/* Active dot styling */
.slick-dots li.slick-active button:before {
  color: #309689;
  /* Active dot color */
  opacity: 1;
  /* Ensure it's fully opaque */
}

/* Default dot styling */
.slick-dots li button:before {
  color: #ccc;
  /* Default dot color */
  font-size: 12px;
  /* Dot size */
}

/* Center the dots container */
.slick-dots {
  text-align: center;
  position: relative;
  bottom: -30px;
  /* Adjust position if needed */
}



/* News and Blog Section */
.news-blog .card {
  border: none;
  margin-bottom: 30px;
}

.news-blog .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* Join Our Team Section */
.join-team {
  background-color: #333;
}


.custom-gap {
  margin-bottom: 3px;
}

.header-info {
  position: relative;
  padding: 20px;
}

.view-more {
  position: absolute;
  top: -25px;
  right: 20px;
  text-decoration: none;
  color: #309689;
  font-size: 1rem;
}

.view-more:hover {
  position: absolute;
  top: -25px;
  right: 20px;
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
}



@media (max-width: 768px) {


  .step-number {
    display: none;
  }
}


.custom-height-min {
  height: 70vh !important;
}

@media (max-width: 768px) {
  .custom-height-min {
    height: 35vh !important;
  }
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/home/blob.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.5;
  /* border-radius: 20px; */
}

.footer-bottom {
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .text-gray {
  color: gray;
}

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .d-flex {
    margin-top: 10px;
  }

  .footer-bottom .d-flex a {
    margin-bottom: 10px;
  }
}

footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 3rem 0;
}

footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 1rem;
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: #adb5bd;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}





footer .text-white {
  color: #ffffff !important;
}

footer .text-gray {
  color: #adb5bd;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info svg {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}

.contact-info p {
  margin: 0;
  line-height: 1.5;
}

.contact-info p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

footer .lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #e6e6e6 !important;
}


.newsletter-input {
  outline: none !important;
  background-color: transparent;
  border: 1px solid #2c7a7b;
  box-shadow: none;
  transition: border-color 0.3s ease;
  border-radius: 20px !important;
}

.newsletter-input:focus {
  border: 1px solid #eee;
  background-color: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 20px !important;
}



.custom-dropdown .dropdown-menu {
  min-width: 200px;
  border-radius: 8px;
  padding: 10px 0;
  right: 0;
  font-size: 1rem;
}

.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.custom-dropdown .dropdown-item i {
  margin-right: 10px;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #2c7a7b;
}

.custom-dropdown .dropdown-item:last-child {
  border-top: 1px solid #e9ecef;
}

.desktop-menu {
  margin-right: 50px;
  /* Increased distance from the profile icon */
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-container img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.profile-container span {
  color: #ffffff;
  margin-left: 10px;
  font-size: 0.8rem;
  font-weight: bold;
}

.profile-container .dropdown-toggle {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
}

.modal-content {
  border-radius: 0.5rem;
  padding: 1rem;
}

.modal-header {
  border-bottom: none;
}

.btn-switch {
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-switch.active {
  background-color: #2c7a7b;
  color: white;
}







.google-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 10px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: box-shadow 0.3s, background-color 0.3s;
}

.google-signin-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #f1f3f4;
}

.google-signin-btn img {
  width: 20px;
  margin-right: 10px;
}

.google-signin-btn span {
  font-weight: 500;
  color: #2c7a7b;
}

.illustration {
  text-align: center;
  margin-bottom: 20px;
}

.illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.modal-body {
  padding: 2rem;
}

.switch-text {
  font-size: 0.875rem;
  margin-top: 10px;
  text-align: center;
}

.switch-text a {
  color: #2c7a7b;
  text-decoration: none;
  font-weight: 500;
}

.switch-text a:hover {
  text-decoration: underline;
}

/* Default Button Style */
.btn {
  border-radius: 47px !important;
  padding: 0.8rem 1.5rem !important;
  background-color: #2c7a7b !important;
  border: 2px solid transparent !important;
  font-size: 12px !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color 0.4s ease, box-shadow 0.4s ease !important;
  z-index: 1;
}

/* Rotating Border Effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 47px;
  border: 2px solid #2c7a7b;
  z-index: -1;
  transition: transform 1s ease;
  transform-origin: center;
  transform: rotate(45deg);
}

.btn:hover::before {
  transform: rotate(360deg);
  border-color: #ffffff50;
}

/* Inner Glow Effect */
.btn:hover {
  color: #87b6b7 !important;
}

/* Light Version of the Button */
.btn-light {
  background-color: #f2f2f2 !important;
  color: #2c7a7b !important;
  border: 2px solid transparent !important;
  padding: 1rem 1.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  transition: color 0.4s ease, box-shadow 0.4s ease !important;
  z-index: 1;
}

/* Rotating Border Effect for Light Version */
.btn-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 47px;
  border: 2px solid #2c7a7b;
  z-index: -1;
  transition: transform 0.6s ease;
  transform-origin: center;
  transform: rotate(45deg);
}

.btn-light:hover::before {
  transform: rotate(360deg);
  border-color: #87b6b7;
}

/* Inner Glow Effect for Light Version */
.btn-light:hover {
  color: #ffffff !important;
}

/* Outline Button Style */
.btn-outline {
  background-color: transparent !important;
  border: 2px solid #2c7a7b !important;
  color: #2c7a7b !important;
  transition: background-color 0.4s ease, color 0.4s ease !important;
}

/* Rotating Border Effect for Outline Button */
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 47px;
  border: 2px solid #2c7a7b;
  z-index: -1;
  transition: transform 1s ease;
  transform-origin: center;
  transform: rotate(45deg);
}

.btn-outline:hover::before {
  transform: rotate(360deg);
  border-color: #2c7a7b;
}

/* Hover Effect for Outline Button */
.btn-outline:hover {
  background-color: #2c7a7b !important;
  color: #ffffff !important;
}

.view-switcher button {
  border: none !important;
  border-radius: 10px;
}


.how-it-works {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  width: 100vw;
  background-image: url('/assets/images/home/6942059303693.avif');
  /* Background for the entire section */
  background-size: cover;
  background-position: center;
}

/* Left and Right containers */
.how-it-works-left,
.how-it-works-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.how-it-works-left {
  background: rgba(255, 255, 255, 0.9);
  /* Slightly transparent white background */
  flex-direction: column;
}

/* Steps in the left container */
.section-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c7a7b;
  /* Adjust color as needed */
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

.step-number {
  font-size: 3rem;
  color: #2c7a7b;
  /* Adjust color as needed */
  margin-bottom: 10px;
}

.step-text {
  font-size: 1.25rem;
  color: #333333;
  /* Adjust color as needed */
}

.step-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c7a7b;
}

.step-description {
  font-size: 1rem;
  color: #666666;
}

/* Dismiss icon */
.dismiss-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666666;
  cursor: pointer;
  display: none;
  /* Hidden by default, only shown on mobile */
}

.step:hover .dismiss-icon {
  display: block;
}

/* Hover effects */
.step:hover {
  transform: scale(1.8);
  z-index: 100;
  /* Bring the step to the forefront */
}

.step:hover .step-card {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 101;
  /* Ensure the step-card is on top of everything */
}

/* Right container video section */
.how-it-works-right {
  position: relative;
  background: #000;
  /* Fallback color for right side */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/home/124356786.avif');
  /* Background image for the right side */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: relative;
  z-index: 2;
}

.play-icon {
  position: relative;
  display: block;
  margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
  }

  .dismiss-icon {
    display: block;
    /* Show dismiss icon on mobile */
  }

  .step:hover .step-card {
    transform: translate(-50%, -50%) scale(0.8);
    /* Slightly smaller scale on mobile */
  }
}


/* Creative Styles for Join Our Team Section */
.join-team {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  /* Body background color */
  padding: 0;
  margin: 0;
}

.join-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to center, rgba(44, 122, 123, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  /* Gradient blends from color to transparent halfway up */
  transform: translateY(100%) scale(1.1);
  /* Start off-screen */
  transition: transform 0.8s ease, background 0.8s ease;
  z-index: 0;
}

.zoom-container {
  position: relative;
  z-index: 1;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}


.zoom-container .container {
  position: relative;
  z-index: 1;
  background: url('https://www.livechat.com/prefooter/dust-left.svg') no-repeat center center;
  /* background-size: contain; */
  transition: transform 0.8s ease;
}

.zoom-container.zoomed {
  transform: scale(1.05) rotateX(5deg);
  /* Adds slight rotation for a 3D effect */
}



.container {
  position: relative;
  z-index: 1;
}

.join-team h2,
.join-team p {
  transition: color 0.8s ease, transform 0.8s ease;
}

.zoom-container.zoomed h2,
.zoom-container.zoomed p {
  color: #000;
  /* Change text color on zoom */
  transform: translateY(-10px);
  /* Slight upward move for emphasis */
}



.u-bg-accent {
  background-color: #ffd000 !important;
  color: #000;
}

.badge {
  background-color: #2c7a7b !important;
  color: #ffd000;
}

/* Preloader Styles */
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #2c7a7b;
  /* Background color matching the website's theme */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Teachers SVG Animation */
.preloader-teachers {
  width: 80px;
  height: auto;
  position: absolute;
  left: -120px;
  animation: moveIn 2s ease-in-out infinite;
}

/* Logo SVG Animation */
.preloader-logo {
  width: 150px;
  height: auto;
  animation: scalePulse 2s ease-in-out infinite;
}

/* School SVG Animation */
.preloader-school {
  width: 80px;
  height: auto;
  position: absolute;
  right: -120px;
  animation: moveIn 2s ease-in-out infinite;
}

/* Circle Line Wrapper Animation */
.preloader-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  animation: drawCircle 2s ease-in-out forwards;
}

/* Circle Drawing Animation */
@keyframes drawCircle {
  0% {
    stroke-dasharray: 0, 565.48;
  }

  100% {
    stroke-dasharray: 565.48, 565.48;
  }
}

/* Scaling Pulse Animation */
@keyframes scalePulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Move In Animation */
@keyframes moveIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100px);
    opacity: 0;
  }
}

/* Hide Preloader After Page Load */
body.loaded .preloader {
  animation: fadeOut 0.5s ease forwards;
  animation-delay: 3s;
  /* Delay the fade out by 3 seconds */
}

/* Fade Out Animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}


#Feedbacks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
}

#Feedbacks svg {
  width: 30px;
  height: 30px;
  color: #ffd000;
}

#feedback-modal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 100%;
  max-width: 400px;
  height: auto;
  background-color: #ffff;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

#feedback-modal-content {
  padding: 9px;
  position: relative;
  height: 100%;
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


/* CSS for Uniform Input Field */
.custom-input {
  width: 100% !important;
  padding: 12px 15px !important;
  margin: 8px 0 !important;
  display: inline-block !important;
  border: 1px solid #626363 !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  background-color: transparent !important;
  color: #333 !important;
  transition: border-color 0.3s, background-color 0.3s !important;
}

/* Hover Effect */
.custom-input:hover {
  border-color: #626363 !important;
  background-color: transparent !important;
  border: 1px solid #626363 !important;
}

/* Focus Effect */
.custom-input:focus {
  outline: none !important;
  border-color: #2c7a7b !important;
  border-width: 1px !important;
}

/* Placeholder Styling */
.custom-input::placeholder {
  color: #aaa !important;
}


/* CSS for Uniform Input Field */
.custom-input {
  width: 100% !important;
  padding: 12px 15px !important;
  margin: 8px 0 !important;
  display: inline-block !important;
  border: 1px solid #626363 !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  background-color: transparent !important;
  color: #333 !important;
  transition: border-color 0.3s, background-color 0.3s !important;
}

/* Hover Effect */
.form-control:hover {
  border-color: #626363 !important;
  background-color: transparent !important;
  border: 1px solid #626363 !important;
}

/* Focus Effect */
.form-control:focus {
  outline: none !important;
  border-color: #2c7a7b !important;
  border-width: 1px !important;
}

/* Placeholder Styling */
.form-control::placeholder {
  color: #aaa !important;
}
