/* Apply transition to all elements */
/* Apply smooth transition to all elements */
* {
  transition: all 0.3s ease-in-out;
  scroll-behavior: smooth; /* smooth scrolling on anchor links */
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

/* footer CSS starts */
.footer {
  border: 2px solid #f9f9f9;
  background-color: #f9f9f9;
}
.col1 {
  border: 2px solid black;
  padding-top: 50px;
}
.footer p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.footer p strong {
  font-weight: 600; /* Semi-bold for labels like Phone, Email */
}
.list1 li {
  margin-bottom: 10px;
  text-decoration: none;
}
.list2 li {
  margin-bottom: 10px;
}
.list1 li a {
  text-decoration: none;
  color: #808080;
}
.list2 li a {
  text-decoration: none;
  color: #808080;
}
.list1 li a:hover {
  color: #28a745;
}
.list2 li a:hover {
  color: #28a745;
}
#para {
  color: #666666; /* Light gray text */
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

#para .label {
  color: #000000; /* Black color */
  font-weight: bold;
}
.footerCol {
  padding: 50px 0px 50px 0px;
}
.footer {
  font-family: "Poppins", sans-serif;
}

/* footer CSS ends */
/* navbar CSS starts */

.navbar-brand {
  font-weight: 700;
  color: #5fcf80 !important;
  font-size: 24px;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
}

.navbar-nav .nav-link.active {
  color: #5fcf80 !important;
}

.btn-get-started {
  background: #5fcf80;
  color: #fff;
  border-radius: 25px;
  padding: 6px 18px;
  font-weight: 500;
}

.btn-get-started:hover {
  background: #45b76f;
  color: #fff;
}
.nav-item a {
  white-space: nowrap;
}

/* navbar CSS ends */
/* hero bg img starts*/
.bgImg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 680px;
  color: white;
}
.headingandButton {
  margin-top: 300px;
  margin-left: 5%;
  color: white;
  text-shadow: 2px 2px 2px #000000;
}
/* hero bg img ends */
/* course cards starts */
.course-tag {
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 5px;
  background-color: #5fcf80;
  color: white;
}
.card-footer span {
  margin-right: 15px;
}
.course-price {
  font-weight: bold;
  float: right;
}
.instructor img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
/* course cards ends */
/* all courses starts */
/* Outer container style */
.course-container {
  background: #f8f9fa;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Card styling with hover zoom */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.card-title {
  font-weight: 600;
}

.text-muted {
  font-size: 0.9rem;
}

.allCourses {
  border: solid 1px #d3d3d3; /* Light gray text */
}
.allCourses:hover {
  border: solid 1px #63d083; /* Light gray text */
}
.myCourse {
  padding-top: 25px;
}
.myCourse:hover {
  color: #63d083;
}
.courseLink {
  text-decoration: none;
  color: inherit; /* to keep text color unchanged */
}
.courseLink:hover {
  text-decoration: none;
}
/* all courses ends */
/*about us page starts*/
.lead {
  text-align: justify;
  color: black;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
}
.moreContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.moreContent.show {
  max-height: 1000px; /* large enough to show content */
  padding-top: 1rem;
}
.readMoreBtn {
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
}
.login-box h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #343a40;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.login-box p {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.login-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-box h2 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #343a40;
}

.login-box p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 10px;
}

.btn-custom {
  border-radius: 10px;
  font-weight: bold;
}

.form-group label {
  font-weight: 500;
}
.aboutHeading1 {
  background-color: #5fcf80;
}
.aboutHeading2 {
  background-color: #5bc57a;
  padding-top: 20px;
}
#head {
  color: white;
  text-align: center;
  padding-top: 120px;
  font-weight: bolder;
}
#aboutPara {
  color: white;
  text-align: center;
  width: 50%;
  margin: auto;
  padding-bottom: 120px;
  font-weight: bold;
  font-size: 18px;
}
.why-choose-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.why-choose-heading .highlight {
  color: #5fcf80;
}

/* Animated underline */
.why-choose-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #5fcf80;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: slideIn 1s ease-out forwards;
  transform: scaleX(0);
  transform-origin: center;
}

@keyframes slideIn {
  to {
    transform: scaleX(1);
  }
}
.why-choose-description {
  font-size: 1.1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.why-choose-list {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.why-choose-list .list-group-item {
  background-color: #f9f9f9;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  color: #2c3e50;
  border-bottom: 1px solid #eaeaea;
  transition: background 0.3s ease;
}

.why-choose-list .list-group-item:hover {
  background-color: #eefbf2;
}

.why-choose-list strong {
  color: #5fcf80;
}
.aboutHeadAnimation {
  animation: myAnim 2s ease 0s 1 normal forwards;
}
@keyframes aboutHeadAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(-250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateY(-65px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateY(-28px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateY(-8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }
}
/*about us page ends*/
/*event page ends*/
.zoom-hover {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 10px;
}

.zoom-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
#box {
}
/*event page ends*/
/*home page starts*/
.coursesLink {
  text-decoration: none;
  color: black;
}
.indexPageImageShaker:hover {
  animation-name: shake-center;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* shorthand
		animation: shake-center 1s linear 0s 1 normal none;*/
}
@keyframes shake-center {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
}
.bgImgAnimationIndexPage {
  animation: bgImgAnimationIndexPage 2s ease 0s 1 normal forwards;
}
@keyframes bgImgAnimationIndexPage {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateX(250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateX(68px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateX(32px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateX(8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }
}
/*popular courses heading starts*/
.text-uppercase.font-weight-bold.mb-4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #2c3e50; /* dark navy-gray */
  position: relative;
  overflow: hidden;
}

/* Animate a subtle sliding underline */
.text-uppercase.font-weight-bold.mb-4::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #34495e,
    #2980b9
  ); /* muted navy gradient */
  animation: slide-highlight 2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slide-highlight {
  to {
    left: 0;
  }
}
/*popular courses heading ends*/
.animationIndexPage {
  color: #3079ed;
  font-weight: 100;
  font-size: 2em;
  animation-name: text-focus-in;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;

  /* shorthand
		animation: text-focus-in 1s linear 0s 1 normal none;*/
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

/*home page ends*/
/* pricing page starts */
.summer-offer-tag {
  position: fixed;
  top: 40%;
  right: 0;
  background-color: #ffc107;
  color: #000;
  padding: 12px 18px;
  font-weight: bold;
  transform: rotate(-90deg);
  transform-origin: right;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 0 0;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
  cursor: default;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 30%;
  padding: 30px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
  border-color: #5fcf80;
  box-shadow: 0 12px 30px rgba(95, 207, 128, 0.4);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5fcf80;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1.2rem;
  color: #777;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #555;
}

.pricing-card ul li {
  padding-left: 1.2em;
  margin-bottom: 10px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5fcf80;
  font-weight: bold;
}

.pricing-card button {
  background-color: transparent;
  border: 2px solid #5fcf80;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-card button a {
  font-weight: 600;
  color: #5fcf80;
}

.pricing-card button:hover {
  background-color: #5fcf80;
}

.pricing-card button:hover a {
  color: #fff !important;
}

@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 90%;
    margin-bottom: 25px;
  }
}

/* pricing page ends */
/*contact page starts*/
.myAnim {
  animation: myAnim 2s ease 0s 1 normal forwards;
}
@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateY(65px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateY(28px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateY(8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }
}

.myAnim2 {
  animation: myAnim2 2s ease 0s 1 normal forwards;
}
@keyframes myAnim2 {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateX(250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateX(68px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateX(32px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateX(8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }
}
/*contact page ends*/
/* coding-for-kids-page starts */
.coding-for-kids-page {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  padding: 40px 0;
}

.coding-for-kids-page .container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.coding-for-kids-page h1 {
  font-weight: 700;
  color: #007bff;
  margin-bottom: 20px;
}

.coding-for-kids-page h2 {
  font-weight: 600;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
}

.coding-for-kids-page p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.coding-for-kids-page .btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.coding-for-kids-page .btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
/* coding-for-kids-page ends*/

