<style>


.alert {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  margin-bottom: 15px;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
}
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* Ensures children are same height */
}

.equal-height > [class^="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circular-image-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f7fa, #fff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  margin: 40px auto 0 auto; 
}

.circular-image-wrapper:hover {
  transform: scale(1.05);
}

.circular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.row.align-items-center {
  align-items: center;
}

.circular-image-wrapper:hover .circular-image {
  transform: scale(1.08);
}

/* Mobile responsiveness: optional */
@media (max-width: 576px) {
  .circular-image-wrapper {
    max-width: 220px;
  }
}

.framed-section {
  background-color: #fefefe;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  padding: 40px 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.testimonial-section {
    padding: 30px 20px;

    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-top: 0px;
  }

  .testimonial-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 24px;
   /* margin-bottom: 20px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-style: italic;
    font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.2rem;
  }

  .testimonial-box strong {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #343a40;
  }

  .testimonial-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background-color: #e6f0ff;
    color: #003366;
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .image-frame {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
	.image-frame img {
  object-fit: cover;
  height: 100%;

}
  }
  .image-frame:hover {
    transform: scale(1.02);
  }

  .section-heading {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    color: #212529; /* Dark text */
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .bg-learn {
    background-color: #e6f0ff; /* Light Blue */
  }
  .bg-format {
    background-color: #e6f9ec; /* Light Green */
  }
  .bg-why {
    background-color: #ffe6e6; /* Light Red/Pink */
  }
.course-box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding-top: 15px;
  padding-bottom: 15px;
}

.course-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.course-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #003366;
}

.course-box ul {
  padding-left: 1.2rem;
}

.course-box ul li {
  margin-bottom: 8px;
  text-align: left;
}

.cta-button {
  background-color: #25d366;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
 /* .testimonial-box {
    background: #f9f9f9;
    border-left: 5px solid #00b894;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
  } */
  .faq-section {
    background: #fdfdfd;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
  .faq-section h3 {
    margin-bottom: 20px;
    color: #2d3436;
    text-align: center;
    font-size: 24px;
  }
  .accordion-button {
    background-color: #ffffff;
    border: none;
    font-weight: 600;
    color: #2d3436;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  .accordion-button.active::after {
    transform: rotate(45deg);
  }
  .accordion-button:hover {
    background-color: #f1f1f1;
  }
  .accordion-content {
    display: none;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #555;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
 .lead-form {
  background: #f0f9f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.lead-form h3 {
  margin-bottom: 15px;
  color: #2d3436;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.lead-form button {
  background-color: #00b894;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
</style>
