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

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

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

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

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

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

@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%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fafbfc;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

h5 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

a,
button,
.btn {
  outline: none;
  transition: box-shadow 0.2s;
}

a:focus,
button:focus,
.btn:focus {
  box-shadow: 0 0 0 3px #a3c0fd;
}

@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%;
  }
}

@keyframes bottom-gradient-flow {
  0% {
    --b-1-x: 10%;
    --b-2-x: 50%;
    --b-3-x: 90%;
  }
  100% {
    --b-1-x: 90%;
    --b-2-x: 10%;
    --b-3-x: 50%;
  }
}

@keyframes subject-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8));
  }
}

@keyframes flag-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 8));
  }
}

.hero-section {
  display: flex;
  height: 80vh;
  width: 100%;
}

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

.hero-left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  background:
    radial-gradient(ellipse 16vw 15vw at var(--t-1-x) var(--t-1-y), #FD7E87 0%, transparent),
    radial-gradient(ellipse 16vw 15vw at var(--t-2-x) var(--t-2-y), #feb95a 0%, transparent),
    radial-gradient(ellipse 16vw 15vw at var(--t-3-x) var(--t-3-y), #743dbb 0%, transparent),
    #fafbfc;
  animation: top-gradient-flow 3s ease-in-out infinite alternate;
}

.hero-right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-video-container {
  width: 100%;
  height: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 0;
  margin-right: 100px;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #743dbb;
  box-shadow:
    0 -20px 60px rgba(116, 61, 187, 0.25),
    0 20px 60px rgba(116, 61, 187, 0.25),
    0 0 90px rgba(116, 61, 187, 0.15),
    0 0 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mySlides {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  border-radius: 20px;
  animation: heroFadeSequence 12s infinite;
}

.slideshow-container .mySlides:nth-child(1) {
  animation-delay: 0s;
}
.slideshow-container .mySlides:nth-child(2) {
  animation-delay: 4s;
}
.slideshow-container .mySlides:nth-child(3) {
  animation-delay: 8s;
}
.slideshow-container .mySlides:nth-child(4) {
  animation-delay: 12s;
}
.slideshow-container .mySlides:nth-child(5) {
  animation-delay: 16s;
}
@keyframes heroFadeSequence {
  0% { opacity: 0; }
  8% { opacity: 1; }   
  33% { opacity: 1; }  
  41% { opacity: 0; }  
  100% { opacity: 0; } 
}

.hero-heading-wrapper,
.hero-sub-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-section-heading {
  font-weight: bolder;
}

.hero-sub-heading {
  vertical-align: middle;
}

.hero-sub-heading-item {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.hero-check-icon {
  color: black;
  font-size: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}

.hero-button-section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 20px;
}

.free-demo-btn {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  background-color: #743dbb;
  border-style: solid;
  border-width: 5px;
  color: white;
  font-weight: bold;
  border-color: #743dbb;
  border-radius: 20px;
}

.free-demo-btn:hover {
  color: #743dbb;
  background-color: transparent;
  transform: translateY(-5px);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.contact-us-btn {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  background-color: transparent;
  border-style: solid;
  border-width: 5px;
  color: #743dbb;
  font-weight: bold;
  border-color: #743dbb;
  border-radius: 20px;
}

.contact-us-btn:hover {
  color: white;
  background-color: #743dbb;
  transform: translateY(-5px);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.hero-section-rating-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.company-rating {
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

.star-icon {
  color: #feb95a;
  font-size: 20px;
  padding-bottom: 10px;
}

.banner-section {
  width: 100%;
}

.banner-wrapper {
  width: 100%;
  line-height: 0;
}

.bannner-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .hero-left-section,
  .hero-right-section {
    flex: unset;
    width: 100%;
    padding: 1.5rem;
  }

  .hero-section {
    height: auto;
    padding: 2rem 0;
  }
}

.sucess-formula-wrapper {
  height: 65vh;
  margin-top: 50px;
  margin-bottom: 10px;
}

.success-formula-heading-wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.check-icon-heading {
  font-size: 40px;
  padding-right: 10px;
  padding-bottom: 5px;
}

.success-formula-heading {
  font-weight: bold;
}

.success-formula-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
  gap: 20px;
}

.success-formula-card {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 14px, rgba(47, 47, 60, 0.1) 0px 16px 56px, rgba(26, 26, 35, 0.1) 0px 14px 80px;
  border-color: white;
  border-style: solid;
  border-width: 5px;
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  padding: 30px 30px;
  margin: 10px;
  width: 30%;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.success-formula-card:hover {
  transform: translateY(-10px);
}

.red-success-card,.yellow-success-card,.purple-success-card{
  transition: border-color 0.2s ease-in-out;
}
.red-success-card:hover {
  border-color: #FD7E87;
}

.yellow-success-card:hover {
  border-color: #feb95a;
}

.purple-success-card:hover {
  border-color: #743dbb;
}

.success-formula-card-heading {
  font-weight: 500;
}

.success-formula-card-sub-heading {
  font-size: 15px;
  color: grey;
}

.three-step-img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.carousel-wrapper {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-header-wrapper {
  padding-top: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.carousel-header {
  font-weight: bold;
}

.slider {
  position: relative;
  width: 80%;
  height: 180px;
  overflow: hidden;
  box-shadow: -10px 0 40px -5px rgba(255, 255, 255, 0.125),
    10px 0 40px -5px rgba(255, 255, 255, 0.125);
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(227, 227, 227, 0) 100%);
}

.slider::before {
  left: 0;
}

.slider::after {
  right: 0;
  transform: rotate(180deg);
}

.subject-slide-track {
  display: flex;
  width: calc(250px * 16);
  height: 160px;
  animation: subject-scroll 20s linear infinite;
}

.subject-slide {
  flex: 0 0 250px;
  width: 250px;
  height: 160px;
  margin-right: 0;
  box-sizing: border-box;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flag-slide-track {
  display: flex;
  width: calc(320px * 16);
  height: 240px;
  animation: flag-scroll 20s linear infinite;
}

.flag-slide {
  flex: 0 0 320px;
  width: 320px;
  height: 240px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider:hover .subject-slide-track,
.slider:hover .flag-slide-track {
  animation-play-state: paused;
}

.subject-img {
  width: 130px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.flag-img {
  width: 200px;
  height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.school-grades-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 60vh;
}

.school-grades-heading {
  font-weight: bold;
}

.school-grades-heading-wrapper {
  padding-bottom: 30px;
}

.school-grades-card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.school-card {
  border-style: solid;
  border-width: 5px;
  border-radius: 20px;
  margin: 10px;
  padding: 20px;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.2s ease-in-out;
}

.school-card:hover {
  transform: translateY(-10px);
}

.school-images {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

.school-card-text {
  font-weight: 600;
  font-size: 15px;
}

.primary-school-text {
  color: #743dbb;
}

.middle-school-text {
  color: #FD7E87;
}

.high-school-text {
  color: #FEB95A;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #198754;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-form-main-heading-wrapper {
  width: 90%;
  margin: 80px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  font-size: 48px;
  line-height: 1;
}

.contact-form-heading-icon {
  margin: 0;
  padding: 0;
  font-size: 40px;
}

.contact-form-main-heading {
  font-weight: bold;
  margin: 0;
}

.contact-form-main-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  width: 80%;
  margin: 100px auto;
}

.contact-form-section {
  flex: 1; 
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.contact-form-section .row {
  width: 100%;
  margin: 0;
}

.contact-form-section .col-lg-8 {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.btn {
  background-color: #7E47C5;
  border-style: solid;
  border-color: #7E47C5;
  border-width: 5px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  background-color: transparent;
  border-color: #7E47C5;
  color: #7E47C5;
}

.btn:active {
  background-color: #7E47C5;
}

.btn-primary {
  background-color: #7E47C5;
  color: #fff;
  border: 5px solid #7E47C5;
}

.btn-primary:hover {
  background-color: transparent;
  color: #7E47C5;
  border-color: #7E47C5;
  box-shadow: 0 6px 15px rgba(99, 2, 209, 0.3);
}

.btn-primary:active {
  background-color: #743dbb;
  color: white;
}

.btn-secondary {
  background-color: #7E47C5;
  color: #fff;
  border: 1px solid #6c757d;
  box-shadow: 0 4px 10px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
  background-color: #7E47C5;
  border-color: #545b62;
  box-shadow: 0 6px 15px rgba(108, 117, 125, 0.3);
}

.faq-section {
  min-height: 60vh;
  position: relative;
  background:
    radial-gradient(60% 60% at var(--b-1-x) var(--b-1-y), #FD7E87 0%, transparent),
    radial-gradient(60% 60% at var(--b-2-x) var(--b-2-y), #FEB95A 0%, transparent),
    radial-gradient(60% 60% at var(--b-3-x) var(--b-3-y), #743dbb 0%, transparent),
    #fafbfc;
  animation: bottom-gradient-flow 2s ease-in-out infinite alternate;
}

.faq-conatiner {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.faq-icon {
  font-size: 3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h4 {
  color: #212529;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.subscribe-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #fff;
  padding: 40px 0;
}

.subscribe-content {
  background: #e3f0ff;
  border-radius: 8px;
  padding: 60px 40px 50px 40px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 24px rgba(66, 119, 250, 0.08);
}

.subscribe-divider {
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.subscribe-title {
  color: #1e3a8a;
  font-size: 2.5rem;
  font-family: "Roboto Slab", serif;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input[type="email"] {
  padding: 14px 18px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  width: 70%;
  outline: none;
  background: #f5f5f5;
  color: #1e3a8a;
  font-family: inherit;
  transition: box-shadow 0.2s;
}

.subscribe-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px #a3c0fd;
}

.subscribe-form button {
  padding: 14px 32px;
  background: #fff;
  color: #1e3a8a;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.subscribe-form button:hover {
  background: #e6edff;
  color: #2a5ad7;
}

@media (max-width: 480px) {
  .subscribe-title {
    font-size: 1.5rem;
  }

  .subscribe-content {
    padding: 30px 10px 30px 10px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
  }

  .subscribe-form button {
    width: 100%;
  }
}

.benefits-section {
  background-image: linear-gradient(to right,
      rgba(200, 200, 200, 0.3) 0%,
      rgba(200, 200, 200, 0.2) 100%),
    url("/Images/Benifits-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.features-section {
  font-family: "Inter", sans-serif;
  background-color: #34495e;
  color: white;
}

.feature-icon-wrapper {
  width: 96px;
  height: 96px;
  transition: transform 0.3s ease-in-out;
}

.feature-icon-wrapper:hover {
  transform: scale(1.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.section-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-column {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-column {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.content-column h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-column p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.button-group {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .section-container {
    flex-direction: column;
    margin: 20px;
    max-width: 700px;
  }

  .image-column,
  .content-column {
    max-width: 100%;
    min-width: unset;
    padding: 30px;
  }

  .image-column img {
    max-width: 80%;
  }

  .content-column h2 {
    font-size: 1.8rem;
  }

  .content-column p {
    font-size: 1rem;
  }

  .button-group {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .image-column,
  .content-column {
    padding: 20px;
  }

  .content-column h2 {
    font-size: 1.5rem;
  }

  .content-column p {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .button-group {
    gap: 0;
  }
}

.contact-section-heading-wrapper{
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 0;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.contact-main-heading-wrapper{
  display: flex;
  flex-direction: row;
}
.contact-heading-icon{
  color: #7E47C5;
  margin: 0;
  padding: 0;
  padding-top: 5px;
  margin-right: 15px;
  font-size: 50px;
}
.contact-main-sub-heading{
  color: gray;
  font-size: 25px;
}
.contact-main-section-heading{
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-main {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
}

.contact-img-wrapper {
  flex: 1;
  position: relative;
  background: #fff;
  border: 4px solid #7E47C5;
  border-radius: 1rem;
  padding: 0.5rem;
  box-sizing: border-box;
}

.contact-img {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
  border-radius: 0.6rem;
  display: block;
}

.contact-form-wrapper {
  flex: 1;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid #e9ecef;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-form-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}

.contact-form-icon {
  font-size: 40px;
  padding-right: 0.5em;
  color: #212529;
}

.contact-subheading {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-col-6 {
  flex: 1;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .message-group {
  flex: 1;
}

.contact-form .form-label {
  color: #495057;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #7E47C5;
  box-shadow: 0 0 0 0.2rem rgba(117, 13, 253, 0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  background-color: #7E47C5;
  color: white;
  cursor: pointer;
  align-self: center;
}

.contact-form .btn i {
  margin-right: 0.5rem;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(165, 13, 253, 0.3);
}

.review-heading-section{
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.review-carousel-heading-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}
.review-section-icon{
  margin: 0;
  padding: 0;
  font-size: 50px;
  margin-right: 10px;
  color: #FD7E87;
}
.review-carousel-heading{
  font-weight: bold;
  font-size: 50px;
}
.review-sub-heading{
  color: gray;
  font-size: 25px;
}

.review-carousel{
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 720px;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: -10px 0 40px -5px rgba(255, 255, 255, 0.125),
    10px 0 40px -5px rgba(255, 255, 255, 0.125);
}
.review-carousel::before,.review-carousel::after{
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.review-carousel::before{
  left: 0;
}
.review-carousel::after{
  right: 0;
  transform: rotate(180deg);
}
.review-carousel-track{
  display: flex;
  width: calc(500px*12);
  height: 100%;
  animation: review-scroll 30s linear infinite;
}
.review-slide{
  flex: 0 0 500px;
  width: 500px;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-img{
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
}
@keyframes review-scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-500px*6));
  }
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    max-width: 750px;
  }
  
  .contact-img-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 1rem;
  }

  .contact-img-wrapper {
    height: 250px;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form .btn {
    width: 100%;
  }
}