@property --t-1-x {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 35%;
}

@property --t-2-x {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 65%;
}

@property --t-3-x {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 50%;
}

@property --t-1-y {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 35%;
}

@property --t-2-y {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 50%;
}

@property --t-3-y {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 65%;
}

@keyframes top-gradient-flow {
    0% {
        --t-1-x: 35%;
        --t-1-y: 35%;
        --t-2-x: 65%;
        --t-2-y: 50%;
        --t-3-x: 50%;
        --t-3-y: 65%;
    }
    100% {
        --t-1-x: 65%;
        --t-1-y: 65%;
        --t-2-x: 35%;
        --t-2-y: 50%;
        --t-3-x: 50%;
        --t-3-y: 35%;
    }
}

.testimonial-hero {
    height: 80vh;
    display: flex;
    align-items: center;
}

.testimonial-hero-wrapper {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-hero-left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 30px;
}

.testimonial-hero-heading-wrapper {
    display: flex;
    flex-direction: row;
}

.testimonial-hero-heading-wrapper,
.testimonial-hero-sub-heading-wrapper {
    width: 100%;
    max-width: 650px;
    text-align: left;
}

.testimonial-icon {
    font-size: 50px;
    padding-top: 10px;
    padding-right: 10px;
    margin: 0;
}

.testimonial-hero-heading {
    width: 100%;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 24px;
}

.testimonial-hero-sub-heading {
    padding-top: 20px;
    font-size: 24px;
    color: gray;
    line-height: 1.6;
}

.testimonial-hero-right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background:
        radial-gradient(ellipse 15vw 15vw at var(--t-1-x) var(--t-1-y), #FD7E87 0%, transparent),
        radial-gradient(ellipse 16vw 16vw at var(--t-2-x) var(--t-2-y), #feb95a 0%, transparent),
        radial-gradient(ellipse 15vw 15vw at var(--t-3-x) var(--t-3-y), #743dbb 0%, transparent),
        #FFFFFF;
    animation: top-gradient-flow 3s ease-in-out infinite alternate;
}

.testimonial-img-wrapper {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .5s ease;
}

.testimonial-hero-img:hover {
    transform: scale(1.2);
}

.review-section-wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom:30px;
}

.review-heading-icon,
.review-heading {
    margin: 0;
    padding: 0;
    font-size: 50px;
}

.review-heading {
    font-weight: bold;
    margin: 0;
}

.review-heading-icon {
    color: #743dbb;
    padding-top: 5px;
    padding-right: 15px;
}

.review-heading-wrapper {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}

.review-sub-heading {
    color: gray;
    font-size: 20px;
    margin-bottom:50px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.review-card-main-heading-wrapper {
    display: flex;
    flex-direction: row;
    text-align: start;
    margin-bottom: 30px;
}

.review-card-icon {
    color: lightgray;
    font-size: 50px;
}

.review-card-heading,
.review-card-sub-heading {
    margin: 0;
    padding: 0;
    padding-left: 10px;
}

.review-card-heading {
    font-weight: 700;
}

.review-card-sub-heading {
    color: gray;
}

.review-content {
    color: rgba(54, 50, 50, 1);
    text-align: left;
    font-style: italic;
}

.stats-section {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}

.stats-main-heading-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;
}

.stats-main-icon {
    margin: 0;
    padding: 0;
    color: #743dbb;
    font-size: 50px;
    padding-right: 20px;
    padding-top: 5px;
}

.stats-main-heading {
    font-weight: bold;
    font-size: 50px;
    margin: 0;
}

.stats-section-wrapper {
    height: 60vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.stats-section-left-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: radial-gradient(ellipse 12vw 12vw at var(--t-1-x) var(--t-1-y), #FD7E87 0%, transparent),
    radial-gradient(ellipse 12vw 12vw at var(--t-2-x) var(--t-2-y), #feb95a 0%, transparent),
    radial-gradient(ellipse 12vw 12vw at var(--t-3-x) var(--t-3-y), #743dbb 0%, transparent),
    #FFFFFF;
    animation: top-gradient-flow 3s ease-in-out infinite alternate;

}

.stats-img {
    height: 380px;
    width: auto;
    object-fit: contain;
}

@property --t-1-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 35%;
}

@property --t-2-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 65%;
}

@property --t-3-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --t-1-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 35%;
}

@property --t-2-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --t-3-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 65%;
}


@keyframes top-gradient-flow {
  0% {
    --t-1-x: 35%;
    --t-1-y: 35%;
    --t-2-x: 65%;
    --t-2-y: 50%;
    --t-3-x: 50%;
    --t-3-y: 65%;
  }
  100% {
    --t-1-x: 65%;
    --t-1-y: 65%;
    --t-2-x: 35%;
    --t-2-y: 50%;
    --t-3-x: 50%;
    --t-3-y: 35%;
  }
}

.stats-section-right-wrapper {
    height: 70%;
    flex: 1;
    width: 480px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 60px;
    flex-shrink: 0;
    border-color: #743dbb;
    border-width: 5px;
    border-style:dashed;
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px; */

}

.stats-star-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stats {
    font-size: 50px;
    font-weight: bold;
    padding-right: 15px;
    margin: 0;
}

.stat-star {
    color: #feb95a;
    font-size: 45px;
    margin-right: 4px;
}

.stats-sub-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.stats-sub-heading-1,
.stats-sub-heading-2 {
    margin: 0;
    width: 100%;
    font-size: 26px;
    color:gray;
    font-weight: 600;
    font-style: italic;
}

/* Call to Action */

.call-to-action-heading-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
}
.call-to-action-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.call-to-action-icon{
  margin: 0;
  padding: 0;
  padding-top:5px;
  padding-right: 10px;
  font-size: 50px;
  color: #FD7E87;
}
.call-to-action-heading{
  font-weight: bold;
  font-size: 50px;
}
.call-to-action-sub-heading{
  color: gray;
  font-size: 20px;
  padding-bottom: 20px;
}
.button-section{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.schedule-button,.curriculum-button{
  margin:0 10px;
  font-size: 20px;
  padding: 20px 30px;
}
.schedule-button{
  background-color: white;
  border-style: solid;
  border-color: #743dbb;
  border-width: 3px;
  border-radius: 20px;
  color: #743dbb;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out, color
  0.2s ease-in-out,transform 0.2s ease-in-out;
}
.schedule-button:hover{
  background-color: #743dbb;
  color: white;
  transform: translateY(-5px);
}

.curriculum-button{
  background-color: #743dbb;
  border-width: 3px;
  border-style: solid;
  font-weight: bold;
  border-color: #743dbb;
  border-radius: 20px;
  color: white;
  transition: background-color 0.2s ease-in-out, color
  0.2s ease-in-out,transform 0.2s ease-in-out;
}
.curriculum-button:hover{
  background-color: white;
  color: #743dbb;
  transform: translateY(-5px);
}























