@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;600;700&display=swap');


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;

  }
  
  .contact-bar {
    background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
    color: white; 
    font-size: 24px;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 80px;
    padding-right: 160px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
  }
  
  .contact-content {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .contact-email {
    font-size: 20px;
  }
  
  .phone-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .phone-icon i {
    color: #f97316;
    font-size: 24px;
    transition: color 0.3s ease;

  }
  
  .phone-icon:hover {
    background-color: #9333ea;
  }
  
  .phone-icon:hover i {
    color: white;
  }
  
  .contact-number {
    font-weight: bold;
    font-size: 24px;
  }

  /* Navbar */
.navbar {
    position: absolute;
    width: 100%;
    background: transparent;
    z-index: 20;
    margin-top: 40px;
    font-family: 'Poppins', sans-serif;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
  }
  
  /* Logo */
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .navbar-logo img {
    width: 236px;
    height: 74px;
  }
  
  /* Links */
  .navbar-links {
    display: flex;
    gap: 50px;
    list-style: none;
  }
  
  .navbar-links li a {
    text-decoration: none;
    font-size: 24px;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar-links li a:hover,
  .navbar-links li a.active {
    color: #F05E47;
    font-weight:700 ;
  }
  
  /* Join Now Button */
  .join-now-btn {
    display: flex;
    width: 170px;
    height: 61px;
    background: linear-gradient(180deg, #5C2D80 0%, #340658 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .join-now-btn:hover {
    background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
    color: white;
  }
  
  /* Mobile Menu Button */
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: #5C2D80;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .menu-toggle:hover {
    transform: scale(1.2);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #5C2D80, #340658);
    color: white;
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .mobile-menu.active {
    display: flex;
    animation: slideIn 0.5s ease-out;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 32px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .close-btn:hover {
    transform: scale(1.2);
  }
  
  /* Mobile Links */
 /* Mobile Links */
.mobile-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0 auto;  /* Center horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Center vertically */
    align-items: center;      /* Center horizontally */
    height: 60%;              /* Adjust height to center better */
  }
  
  .mobile-links li {
    margin-bottom: 20px;
  }
  
  .mobile-links li a {
    text-decoration: none;
    font-size: 24px;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .mobile-links li a:hover,
  .mobile-links li a.active {
    color: #F05E47;
    font-weight:700 ;
  }
  
  
  /* Mobile Join Button */
  .mobile-join-btn {
    width: 170px;
    height: 50px;
    background: linear-gradient(180deg, #5C2D80 0%, #340658 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .mobile-join-btn:hover {
    background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
    color: white;
  }
  
 /* hero.css */
 .hero {
    display: flex;
    justify-content: space-evenly;
    background: #FDF8FF;
    padding-top: 15%;
    align-items: center; /* Aligns items vertically */
    padding-bottom: 10%;
    gap: 1rem; /* Adjust gap for spacing */
}

.hero-content {
    width: 35%;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-left: 1%;
}

.subheading {
    font-weight: 400;
    font-size: 23px;
    line-height: 34px;
    
}

.heading {
    font-weight: 400;
    font-size: 47px;
    line-height: 70px;
    letter-spacing: 0.0015em;
    margin-top: 20px;
}
.heading span{
    color:#F05E47;
}

.description {
    font-weight: 400;
    font-size: 23px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

.popads{
    display: flex;
    position:absolute;
    font-size: 23px;
    line-height: 34px;
    color: #F05E47;
    animation: blink 1s infinite;
    margin-top: 19px;
    margin-left: 16%;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.popads-text{
    font-weight: 400;
    font-size: 23px;
    margin-top: 20px;
}


.hero-btn {
    position: absolute;
    width: 237px;
    height: 61px;
    background: linear-gradient(180deg, #5C2D80 0%, #340658 100%);
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 23px;
    line-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 30px;
}
.hero-btn:hover {
    background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
    color: white;
  }

  .students {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #F05E47;
    margin-top: 200px;
    text-align: center;
    margin-left: 1%;
}


.student-images {
    display: flex;
    align-items: center;
    position: relative;
    /* margin-right: 400px; */
}

.student-images img {
    width: 60px;
    height: 60px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    position: absolute;
}

.student-images img:nth-child(1) {
    left: -40px;
    z-index: 3;
}

.student-images img:nth-child(2) {
    left: 0;
    z-index: 2;
}

.student-images img:nth-child(3) {
    left: 40px;
    z-index: 1;
}

.students-text {
    position: absolute;
    font-size: 20px;
    color: #F05E47;
    font-weight: 700;
    text-align: center;
    z-index: 4;
    background: transparent;
    padding: 8px 12px;
    margin-left: 120px;
}
.students-text span{
  color: #000;
  font-weight: 300;
}

.hero-images {
    position: relative;
    margin-right: 10%;
}

.gradient-circle {
    position: absolute;
    z-index: 1; /* Ensure gradients are behind the main image */
}

.gradient-1 {
    width: 275px;
    max-width: 100%;
    height: 275px;
    top: 370px;
    left: -100px;    
    border-radius: 50%;  
    background: linear-gradient(185.44deg, #B893FF 3.93%, #EAE0FD 96.07%);
    transition: all 1s ease;
}

.gradient-2 {
    width: 127px;
    max-width: 100%;
    height: 127px;
    left: 310px;    
    top: -110px;
    border-radius: 50%;
    background: linear-gradient(129.01deg, #B893FF 4.25%, #EAE0FD 95.75%);
    transition: all 1s ease;
}

.main-image {
    position: relative;
    z-index: 5; /* Ensure the main image is on top of gradients */
    transition: all 1s ease;
}

.main-image img {
    width: 478px;
    max-width: 100%;
    height: 478px;
    border-radius: 50%;
    border: 6px solid #FFFFFF;
    object-fit: cover;
    transition: all 1s ease;
}

.image-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    transition: all 1s ease;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-1 {
    width: 289px;
    max-width: 100%;
    height: 289px;
    left: 370px;   
    top: -100px;
    border-radius: 50%;
    border: 5px solid #FFFFFF;
    z-index: 2;
    transition: all 1s ease;
}

.circle-2 {
    width: 289px;
    max-width: 100%;
    height: 289px;
    top: 390px;
    left: 300px; 
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    transition: all 1s ease;
}

.circle-3 {
    width: 213px;
    max-width: 100%;
    height: 213px;
    left: -120px;
    top:-150px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    transition: all 1s ease;
}

.circle-1 img, .circle-2 img, .circle-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover animations using GSAP */
.main-image:hover {
    cursor: pointer;
}

.main-image:hover img {
    border-color:#FF3218;
    transform: translateY(30px);
}

.main-image:hover ~ .gradient-1 {
    transform: translateY(50px);
}

.main-image:hover ~ .gradient-2 {
    transform: translate(-70px, 1px);
}

.main-image:hover ~ .circle-3 {
    border-color:#FDCB03;
    transform: translate(30px, 40px);
}

.main-image:hover ~ .circle-2 {
    border-color:#0C5992;
    transform: translate(-20px, 20px);
}

.main-image:hover ~ .circle-1 {
    border-color:#75DE00;  
    transform: translateX(20px);
}

/* Reset animations on mouse leave */
.hero-images:not(:hover) .main-image img {
    border-color: white;
    transform: translateY(0);
}

.hero-images:not(:hover) .gradient-1,
.hero-images:not(:hover) .gradient-2,
.hero-images:not(:hover) .circle-1,
.hero-images:not(:hover) .circle-2,
.hero-images:not(:hover) .circle-3 {
    border-color: white;
    transform: translate(0, 0);
}

/* pop-up-form */
.modal-1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  justify-content: center;
  align-items: center;
  z-index: 20;
  font-family: 'Poppins', sans-serif;
}
.model-2{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  justify-content: center;
  align-items: center;
  z-index: 20;
  font-family: 'Inter', sans-serif;
}
.model-3{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  justify-content: center;
  align-items: center;
  z-index: 20;
  font-family: 'Inter', sans-serif;
}

.modal-content-1 {
  background: transparent;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 840.0943603515625px;
  background-color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.success-modal-1 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 45%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
  font-family: 'Inter', sans-serif;
}
.success-modal-2 {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 45%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  border: 4px solid #000000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
  font-family: 'Inter', sans-serif;
}
.form-headings{
  display: flex;
  justify-content: space-between;
 align-items: center;
 text-align: center; 
}
.form-headings-1{
  font-size: 32px;
  color: white;
  padding: 10px 23px;
  background: linear-gradient(90deg, #5C2D80 0%, #340658 100%);
  border-radius: 50px;
  width: 85%;
}
.offerstab{
  color:#5C2D80 ;
  display: flex;
  justify-content: center;
  line-height: 0%;
  animation: blink 1s infinite;
}
.form-headings i{
  color: #340658;
  width: 57px;
  height: 57px;
  border: #340658 1px solid;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form-group-1 {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.form-group-1 input {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  padding: 25px 20px;
  border: 1px solid #340658; 
  color:#340658;
  border-radius: 5px;
  font-size: 18px;
}
.modal-content-1 small{
  display: flex;
  font-size: 14px;
  color: grey;
  justify-content: flex-end;

}

.form-group-1 input::placeholder {
  color: #340658;
}

.btn-1 {
  margin-top: 20px;
  background: linear-gradient(90deg, #5C2D80 0%, #340658 100%);
  color: white;
  padding: 25px 23px;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}
.success-modal-1 img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.success-modal-2 img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.success-modal-1 h2 {
  font-size: 36px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}
.success-modal-2 h2 {
  font-size: 36px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}
.success-modal-1 p {
  font-size: 15px;
  color: gray;
  margin-bottom: 15px;
}
.success-modal-2 p {
  font-size: 15px;
  color: gray;
  margin-bottom: 15px;
}
.btn-ok-1 {
  background: linear-gradient(90deg, #5C2D80 0%, #340658 100%);
  color: white;
  padding: 15px 36px;
  border: none;
  border-radius: 15px;

  cursor: pointer;
  font-size: 20px;
}

.btn-ok-2 {
  background: linear-gradient(90deg, #5C2D80 0%, #340658 100%);
  color: white;
  padding: 15px 36px;
  border: none;
  border-radius: 15px;

  cursor: pointer;
  font-size: 20px;
}



.Courses {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.popular-courses h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #333333;
}

.popular-courses span {
    color: #F05E47;
    font-weight: 600;
    
}

.course-grid {
    gap: 1.7rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.course-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 20%;
    height: 450px;
    max-width: 100%;
    transition: color 0.5s ease;
}

.course-text  {
    font-size: 32px;
    color: #333333;
    margin-top: 15px; /* Outside the card */
    transition: color 0.5s ease;
    line-height: 10px;
    
}
.course-text h3{
  font-weight: 200;
}
.course-text p{
    font-weight: 400;
    font-size: 24px;
}

.course-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s ease, background 0.5s ease;
    border: 1px solid #e0e0e0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: white;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* Button styling */
.view-course-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s ease;
    text-decoration: none;
}


/* Gradient Effect on Hover */
.course-card-wrapper:nth-child(1):hover .course-card {
    background: linear-gradient(135deg, #FF5733, #d42c06);
}

.course-card-wrapper:nth-child(2):hover .course-card {
    background: linear-gradient(135deg, #639C0E, #6b9e1f);
}

.course-card-wrapper:nth-child(3):hover .course-card {
    background: linear-gradient(135deg, #0B5C7F, #2180a8);
}

.course-card-wrapper:nth-child(4):hover .course-card {
    background: linear-gradient(135deg, #F7BC09, #e4bb3f);
}

.course-card-wrapper:hover img {
    opacity: 0; /* Image disappears */
}

.course-card-wrapper:hover .view-course {
    opacity: 1; /* "View Course" appears */
}
.course-card-wrapper:hover .view-course-btn {
    opacity: 1; /* Button appears */
    transform: translate(-50%, -50%) scale(1.1); /* Slight scale effect */
}

/* Text Color Change on Hover */
.course-card-wrapper:hover .course-text {
    color: #9333ea;
}



.what-we-do {
  background-color: #f9f4ff;
  text-align: center;
  padding: 60px 20px;
}

.what-we-do h1 {
  font-size: 47px;
  font-weight: 500;
  color: #000;
  margin-bottom: 50px;
}

.what-we-do span {
  color: #ff5b4f;
}

.container {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
}

.item {
  text-align: center;
  cursor: pointer;
  position: relative;
}

.icon {
  width: 120px;
  height: 120px;
  position: relative;
  display: inline-block;
}

.icon img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.circle {
  position: absolute;
  top: 85%;
  left: 50%;
  width: 270px;
  height: 270px;
  background: url('./Assets/what\ we\ do/circle.png') no-repeat center/cover;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.3s ease;
}

.item:hover .circle {
  transform: translate(-50%, -50%) scale(1);
}

.item:hover .text {
  transform: translate(0%, 0%) scale(1.1);
}

.text {
  margin-top: 20px;
  font-size: 20px;
  color: #5c2d80;
  line-height: 1.5;
  font-weight: 700;
  transition: all 0.3s ease;
}

 .mission-section {
  font-family: 'Poppins', sans-serif;
  position: relative;
}
.container-1 {
  display: flex;
justify-content:space-around;
}
.container-2{
  width: 60%;
  padding-left: 10%;
}
.image-box {
  width: 90%;
  height: 600px;
  position: relative;
  top: -10px;
  border: 4px solid #9747FF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  background-image: url('./Assets/MandV/our-mission.png');
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}

.demo-box {
  position: absolute;
  left: 36.15%;
  right: 39.62%;
  top: 76.29%;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
  padding: 16px;
  text-align: center;
  transition: all 0.5s ease;
}

.popads-1{
  font-size: 18px;
  animation: blink 1s infinite;
}

.demo-box h3,
.demo-box p,
.demo-box a {
  color: #000000;
  transition: color 0.5s ease;
  text-decoration: none;
}
.demo-box i{
  color: #1A37B4;
}
.demo-box a  {
  color: #171717;
  transition: color 0.5s ease;
}
.mission {
  padding-top: 100px;
  width: 40%;
  transition: all 0.5s ease;
}

.mission-title h2{
  font-weight:100 ;
}

.mission-title {
  font-size: 34px;
  color: #000000;
  transition: all 0.5s ease;
}
.mission-title span{
  color: #F05E47;
  font-weight: 600;
}

.mission-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  transition: all 0.5s ease;
}

.container-1:hover .image-box {
  background-image: url('./Assets/MandV/our-vision.png');
}
.container-1:hover .demo-box {
  background: linear-gradient(105.07deg, #7063F3 4.03%, #C24CF1 96.36%);
}

.container-1:hover .demo-box h3,
.container-1:hover .demo-box p,
.container-1:hover .demo-box a,
.container-1:hover .demo-box a i,
.container-1:hover .demo-box span  {
  color: #FFFFFF;
}
 
.stem-2 {
  padding-top: 7%;
  padding-left: 10%;
  align-items: center;
}
.stem-title {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
.highlight {
  color: #F05E47;
  font-weight: 400;
}
.icons-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.icon-item {
  position: relative;
  width: 300px;
  height: 80px;
}
.circle-s, .circle-t, .circle-e, .circle-m, .circle-r {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 100;
  color: white;
}
.circle-r {
  color: black;
}
.label {
  position: absolute;
  width: 170px;
  height: 50px;
  left: 80px;
  top: 15px;
  background: #FDF8FF;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}
.circle-s { background-color: #5C2D80; }
.circle-t { background-color: #9747FF; }
.circle-e { background-color: #C24CF1; }
.circle-m { background-color: #DF8EFF; }
.circle-r { background-color: #F05E47; }
.stem-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stem-text {
  text-align: start;
  width: 50%;
  font-size: 23px;
}
.stem-image {
  width: 50%;
}
.stem-image img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
}

.cards-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;

}

.card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  width: 23%;
  height: 120px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0px 3px 10px 0px #00000033;
  gap: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(85.02deg, #B893FF 4.12%, #EAE0FD 46.92%);
  transform: translateY(100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease;
  font-weight: 700;
  z-index: 0;
}
.card:hover {
  border-radius: 30px;
}
.card:hover::before {
  transform: translateY(0);
}
.card img {
  width: 62px;
  height: 60px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.card p {
  font-size: 23px;
  font-weight: 600;
  color: #333;
  position: relative;
  margin: 0%;
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  transition: color 0.3s ease;
}
.card:hover p {
  color: #5C2D80;
  animation: shake-slide 0.6s ease-out forwards;
}


/* Reverse animation when mouse leaves */
.card:not(:hover) p {
  animation: shake-slide-reverse 0.6s ease-out forwards;
}

/* Keyframes for forward shake-slide animation */
@keyframes shake-slide {
  0% { transform: translateX(100px); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/* Keyframes for reverse shake-slide animation */
@keyframes shake-slide-reverse {
  0% { transform: translateX(0); }
  20% { transform: translateX(-30px); }
  40% { transform: translateX(30px); }
  60% { transform: translateX(-20px); }
  80% { transform: translateX(20px); }
  90% { transform: translateX(30px); }
  100% { transform: translateX(0);}
}



.stemr-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stemr-section h1 {
  font-size: 47px;
  margin-bottom: 10px;
  font-weight: 400;
}
.stemr-section h1 span {
  color: #F05E47;
  font-weight: 400;
}
.stemr-section p.subtitle {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
  width: 80%;
  text-align:center;
}
.stemr-section p.description {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 40px;
}
.stemr-cd {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.cd {
  width: 328px;
  height: 204px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  padding-top: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding-bottom: 1%;
  
}
.cd:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.cd img {
  width: 60px;
  height: 60px;
  color: #000;
}
.cd h3 {
  font-size: 16px;
  font-weight: bold;
 color:#252B42;
}
.cd p {
  font-size: 14px;
  color: #000;

}


.testimonial-section {
  display: flex;
  gap: 20px;
  padding: 40px;
  align-items: center;
}
.testimonial-container {
  display: flex;
  padding-left: 10%;
  width: 100%;
}
.testimonial-left {
  background: linear-gradient(105.07deg, #7063F3 4.03%, #C24CF1 96.36%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  height:558px;
  border-radius: 16px;
  padding: 40px;
}
.testimonial-left h2 {
  font-size: 36px;
  text-align: center;
}
.testimonial-right {
  padding: 20px;
  display: flex;
  width: 80%;
  flex-direction: column;
  justify-content: center;  /* Center content vertically */
  height: 100%;  /* Ensure it takes full height of the card */
  flex-grow: 1;  /* Allow it to take up remaining space */
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  height:558px;
  box-shadow: 2px 5px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonial-card img {
  width: 90px;
  height: 90px;
}
.testimonial-text {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;  /* Center text horizontally */
   height: calc(100% - 300px);  /*Adjust height considering other elements */
}

.testimonial-bottom {
  align-items: center;
  margin-top: auto;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  padding: 0 40px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.author-name {
  font-weight: bold;
}
.author-grade {
  color: #555;
}
.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}
.dot.active {
  background: #7F56D9;
}
.testimonial-arrows {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}
.arrow-left, .arrow-right {
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}
.arrow-left:hover, .arrow-right:hover {
  background: #7F56D9;
  color: white;
}


.whatneed {
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.what-you-need {
  text-align: center;
  width: 100%;
}
.what-you-need h1 {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
}
.what-you-need h1 span {
  color: #F05E47;
}
.cds {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 30px;
  padding-bottom: 3%;
  padding-top: 1%;
}

.cd-1 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 2px 5px 10px 0px #00000033;
  padding: 24px;
  width:18%;
  max-height: 380px;
  text-align: left;
  transition: all 0.3s ease;
}
.cd-1:hover {
  transform: translateY(-10px);
}
.ico {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 7px;
  background-color: #f4f4f4;
  box-shadow: 0px 4px 4px 0px #00000040;
  margin-bottom: 16px;
}
.ico img {
  width: 60px;
  height: 60px;
}
.cd-1 h3 {
  font-size: 26px;
  color: #F05E47;
  font-weight: 400;
  margin-bottom: 12px;
}
.cd-1 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.enroll-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
  color: #3D0569;
  max-width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.enroll-text h1 {
  font-size: 47px;
  font-weight: 700;
  margin: 0;
}
.enroll-text p {
  font-size: 33px;
  margin: 8px 0 0;
}
.enroll-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.phone {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 600;
  color: #240D65;
  text-decoration: none;
}
.phone i {
  font-size: 40px;
  margin-right: 8px;
}
.join-btn {
  width: 250px;
  height: 61px;
  background: #FFFFFF;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C2D80;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.join-btn:hover {
  background: linear-gradient(180deg, #5C2D80 0%, #340658 100%);
  color: #FFFFFF;
}


.footer {
  background-color: #5C2D80;
  color: #fff;
  padding: 80px 60px;
  text-align: center;
}

/* Centering the Title */
.footer-title {
  font-size: 56px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 40px;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  text-align: left;
}

/* Left Section (Description) */
.footer-description {
  flex: 1.5;
  font-size: 16px;
  line-height: 1.8;
  margin-right: 100px;
  text-align: justify;
  padding-left: 5%;
}
.footer-link{
  color: white;
  font-weight: 600;
  font-size: 20px;
}

/* Center Section (Courses) */
.footer-courses, .footer-contact {
  flex: 1;
}

.footer-courses h3, .footer-contact h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Course List */
.footer-courses ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.footer-courses a{
  color: white;
  text-decoration: none;
}


/* Contact Information */

.footer-contact{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.footer-2 {
  background: linear-gradient(90deg, #F05E47 0%, #F09047 100%);
  border-top: 4px solid #5C2D80;
  color: #5C2D80;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 800;
}



/* about-us page */

.about{
  display: flex;
  align-items: center;
  background-color: #f3f4f6;
  padding-bottom: 20px;
}

.about-container {
  margin-top: 10%;
  display: flex;
  justify-content: space-evenly;
  border-radius: 12px;
  overflow: hidden; 
  width: 100%;
}
.about-image{
  width: 750px;
  height: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  background-image: url('./Assets/About-us-images/1.png');
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}


.about-text {
  padding: 20px;
  text-align: justify;
  line-height: 1.6;
  width: 50%;
  
}
.about-text p{
  font-size: 24px;
}

.cta-box {
  position: absolute;
  right: 20%;
  top: 65.29%;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
  padding: 16px;
  text-align: center;
  transition: all 0.5s ease;
  width: 350px;
}

.cta-box h3,
.cta-box p,
.cta-box a{
color: #000000;
transition: color 0.5s ease;
text-decoration: none;
}
.cta-box h3{
  font-size: 26px;
}
.cta-box i{
  color: #1A37B4;
  font-size: 24px;
}
.cta-box p{
  font-size: 18px;
}
.cta-box a  {
  color: #171717;
  transition: color 0.5s ease;
  font-size: 24px;
}

.cta-phone {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  display: flex;
  align-items: center;
}

.cta-box:hover {
  background: linear-gradient(105.07deg, #7063F3 4.03%, #C24CF1 96.36%);
}

.cta-box:hover h3,
.cta-box:hover p,
.cta-box:hover a,
.cta-box:hover a i,
.cta-box:hover span {
  color: #FFFFFF;
}
.about-image:hover{
  background-image:url('./Assets/About-us-images/2.png') ;
}



/* contact-us */


.contact {
  display: flex;
  align-items: flex-start; /* Align everything to the left */
  flex-direction: column;
  background-color: #fff;
  position: relative;
  width:100%;
  max-width: 100%;
  padding-top: 5%;
  padding-bottom: 2%;
  justify-content: flex-start;
  flex-wrap: wrap; /* Ensures responsiveness */
  box-sizing: border-box; /* Prevents extra width issues */
  overflow: hidden; /* Avoids unwanted overflow */
  padding-left: 8%;
}

.contact-us {
  margin-top: 10%;
  text-align: left;
  min-width: 300px;
}

.contact-us h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
}

.contact-us p {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 30px;
  word-wrap: break-word; /* Ensures text breaks properly */
}

.form-container {
  max-width: 80%; /* Keeps form within limits */
  width: 100%;
}

.form-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 5%;
  flex-wrap: wrap;
}

.form-group input,
.message textarea {
  flex: 1;
  min-width: 280px;
  padding: 10px;
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  background: transparent;
  box-sizing: border-box;
}

.message{
  padding-top: 5%;
}

.message textarea {
  width: 100%;
  height: 120px;
  resize: none;
}

.submit-btn {
  margin-left: auto;
  margin-top: 20px;
  padding: 32px 10px;
  width: 100%;
  max-width: 358px;
  border: none;
  background-color: #F09047;
  color: white;
  font-size: 22px;
  border-radius: 37px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.submit-btn i {
  font-size: 22px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 40%;
  right: 10%; /* Reduced right space */
  transform: translateY(-50%);
}

.social-icons a {
  width: 70px; /* Adjusted size */
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  color: black;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #F09047;
  color: white;
}

        .contact-info{
          max-width: 100%;
          width: 100%;
          box-sizing: border-box;
          background-color: #fff;
          position: relative;
          padding-top: 5%;
          padding-bottom: 5%;
          padding-left: 8%;

        }

        .info-container {
          display: flex;
          align-items: flex-start;
      }
      
      .contact-left {
          flex: 1;
      }
      
      .info-sub-heading {
          font-size: 24px;
      }
      
      .info-main-heading {
          font-size: 56px;
          font-weight: bold;
          margin-top: 10px;
          
      }
      
      .contact-right {
          display: flex;
          gap: 200px;
          padding-right: 10%;
      }
      
      .contact-box {
          max-width: 250px;
      }
      
      .contact-box h4 {
          font-size: 22px;
          font-weight: bold;
      }
      
      hr {
          width: 30px;
          border: 1px solid black;
          margin: 8px 0;
      }
      
      .contact-box h5 {
          font-size: 22px;
          margin: 10px 0;
      }
      
      .contact-box i {
          margin-right: 8px;
      }
      
      .contact-box p{
          font-size: 20px;
          line-height: 1.7;
          font-family: 'Inter', sans-serif;
      }

      .submit-btn:hover{
        background: linear-gradient(105.07deg, #7063F3 4.03%, #C24CF1 96.36%);
      }



      /* course-pages */

             .course-menus{
              padding-top: 10%;
              display: flex;
              justify-content: center;
             }

             .menus-link{
              display: flex;
              align-self: center;
              list-style: none;
              gap: 150px;
              align-items: center;
             }
             .menus-link a{
              text-decoration: none;
              color: #000;
              display: flex;
              font-size: 30px;
             }

             .menus-link li a.active-1 {
               color:white;
               font-weight:600 ;
               background-color: #D93535;
               padding: 10px 20px;
               border-radius: 10px;
             }
             .course-title-image {
              display: flex;
              justify-content: center;
              align-items: center;  /* Ensures vertical alignment */
              width: 100%;
              padding: 20px 0;
          }
          
          .image-title {
              position: relative;
              width: 90%;
              border-radius: 10px;
              overflow: hidden;
          }
          
          .image-title img {
              width: 100%;
              height: 250px;
              object-fit: cover;
              border-radius: 10px;
          }
          
          .linear-gradient {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
          }
          
          .course-title {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              color: white;
              font-size: 48px;
              font-weight: bold;
              text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
              text-align: center;
          }

          .sub-title-course{
            width: 100%;
            max-width: 100%;
            max-height:100px;
            display: flex;
            background-color: #0E2A46;
            text-align: center;
            justify-content: center;
          }
          .sub-title-course h2{
            font-size: 36px;
            color: #FFFFFF;
          }
          .sub-title-course span{
            color: #F09047;
          }
          .course-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 5%;
            position: relative;
            overflow: hidden;
        }
        
        /* Title positioned at top-left */
        .section-title-1 {
            background: #E9E2FF;
            color: #704FE6;
            padding: 6px 12px;
            border-radius: 5px;
            text-transform: uppercase;
            font-size: 14px;
            position: absolute;
            top: 3%;
            left: 5%;
        }
        
        .courses-container-1 {
          display: grid;
          grid-template-columns: repeat(3, 1fr); /* Ensures only 3 cards per row */
          row-gap: 70px;
          padding-left: 10%;
          justify-content: center;
          width: 100%;
          max-width: 100%;
      }
        
        .courses-card-1 {
            background: white;
            border: 2px dashed #704FE6;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: 0.3s ease-in-out;
            position: relative;
            justify-content: center;
            align-items: center;
            width: 65%;
            display: flex;
            flex-direction: column;
        }
        
        /* Hover effect */
        .courses-card-1:hover {
            border-color: #6B2FB3;
            transform: scale(1.05);
        }
        
        /* Image with fixed height and width */
        .courses-image-1 {
            width: 100%;
            height: 253.97999572753906px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .courses-title {
            background: #704FE6;
            color: white; 
            padding: 8px 12px;
            border-radius: 20px;
            font-family: 'Epilogue', sans-serif;
            display: inline-block;
            margin-top: 15px;
            font-size: 16px;
        }
        
        .courses-description {
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            width: 90%; 
           
        }
        .detail-c{
          padding-top: 5%;

        }


        .detail-course {
          background: url(./Assets/Courses/course-bg.png);
          padding: 20px;
          border-radius: 10px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          text-align: center;
      }
      
      .detail-title {
         font-size: 64px;
          margin-bottom: 10px;
          font-family: 'Inter', sans-serif;
          font-weight: 600;
      }
      
      .status-bar {
          display: flex;
          justify-content: center;
          gap: 40px;
          font-size: 25px;
          font-weight: 600;
          color: #555;
          margin-top: 40px;
          margin-bottom: 40px;
          font-family: 'Jost', sans-serif;
      }
      
      .status {
          display: flex;
          align-items: center;
          gap: 5px;
      }
      .status i{
        color: #FF782D;
      }
      
      .detail-content {
          display: flex;
          align-items: center;
          justify-content: space-around;
      }
      
      .detail-main-image {
          width: 70%;
          max-width: 80%;
          max-height:700px;
          border-radius: 10px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
  
      
      .detail-info-box {
          display: flex;
          flex-direction: column;
          gap: 80px;
      }
      .detail-in{
        display: flex;
        flex-direction: column;
        align-items: center;
      }      
      /* Info Box Styling */
      .info-box {
        margin: 20px 0;
      }
      
      .detail-info {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
      }
      
      .detail-info i {
        color: white;
        font-size: 24px;
      }
      
      /* Colors */
      .blue {
        background-color: #008BD8;
      }
      
      .pink {
        background-color: #FF3C8A;
      }
      
      /* Text Styling */
      .detail-in p {
        color: #333;
        font-size: 24px;
        width: 170.6427764892578px;
        font-weight: 600;
        margin-top: 10px;
        line-height: 1.4;
      }

      .why-course{
        padding-top: 3%;
      }


      .why-choose-course {
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
        flex-direction: column;
        display: flex;
        justify-content: center;

    }
    
    /* Section Title */
    .why-choose-section-title {
        font-size: 32px;
        font-family: 'Inter', sans-serif ;
        font-weight: bold;
        color: #000;
    }
    
    /* Section Description */
    .why-choose-section-description {
        font-size: 25px;
        font-family: 'Inter', sans-serif ;
        margin: 15px 0;
        line-height: 1.5;
        text-align: center;
        color: grey;
        align-items:center;
        width: 70%;
    }
    
    /* Content Layout */
    .why-choose-content-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5%;
        flex-wrap: wrap;
        padding-left: 10%;
        margin-bottom: 5%;
    }
    
    /* Image Container */
    .why-choose-image-container {
        position: relative;
        width: 50%;
        text-align: center;
    }
    
    .why-choose-student-image {
        width: 100%;
        max-width: 482px;
    }
    
    
    /* Text Container */
    .why-choose-text-container {
        width: 50%;
        text-align: left; 
    }
    .get-more{
            background: #E9E2FF;
            color: #704FE6;
            font-family: 'Inter', sans-serif ;
            padding: 6px 12px;
            border-radius: 20px;
            width: 191px;
            text-transform: uppercase;
            font-size: 16px;
            text-align: center;
    }
    
    .why-choose-text-title {
        font-size: 36px;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        color: #000;
    }
    
    .why-choose-text-description {
        font-size: 16px;
        color: #555;
        width: 80%;
        margin-top: 10px;
        margin-bottom: 40px;
    }
    
    /* Features List */
    .why-choose-features-list {
        list-style: none;
        padding: 0;
      }
    
    .why-choose-features-list li {
        font-size: 24px;
        margin: 10px 0;
        display: flex;
        align-items: center;
        font-family: 'Poppins', sans-serif;
    }
    
    .why-choose-features-list i {
        font-size: 20px;
        color: #5C2D80;
        margin-right: 10px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: orange;
        border: 1px solid #5C2D80;
        box-shadow: 4px 3px 0px 0px #00000040;
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
        
    }

/* 
    temrs and condition */
    
    .Terms {
      font-family: 'Poppins', sans-serif;
      padding-left: 10%;
      padding-right: 10%;
      padding-top: 13%;
      background-color: #fff; 
      border-radius: 8px;
  }
  
  .Terms h1 {
    color: #000;
      font-size: 24px;
      margin-bottom: 20px;
  }
  
  .Terms ul {
    list-style-type: decimal;
    padding: 0;
  }
  
  .Terms li {
      padding: 10px;
      border-bottom: 1px solid #ddd;
      line-height: 1.6;
      text-align: justify;
  }
  .Terms a,.policy a{
    text-decoration: none;
    color: #007BFF;
  }
  .policy {
    font-family: 'Poppins', sans-serif;
      padding-left: 10%;
      padding-right: 10%;
      padding-top: 1%;
      background-color: #fff;
      border-radius: 8px;
      padding-bottom: 5%;
}

.policy h1 {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
}

.policy ul {
  list-style-type: decimal;
    padding: 0;
    text-align: justify;
}

.policy li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    line-height: 1.6;
}



/* 
choose the plan */
.planscard {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 10%;
}
.menuplan {
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;

}
.chooseplan {
  font-size: 36px;
  font-weight: 700;
  color: #2B2B2B;
}
.menuplan button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  color: #000;
  width: 200px;
  max-width: 100%;
  height: 68px;
  max-height: 100%;
  border: 1px solid #000;
  font-size: 23px;
  font-weight: 600;
}
.menuplan button.active {
  background: linear-gradient(180deg, #5C2D80 0%, #340658 100%);
  color: white;
}
.plans {
  display: none;
  margin-top: 20px;
  justify-content:space-evenly;
  flex-wrap: wrap;
  padding-bottom: 6%;
}
.plan {
  background: linear-gradient(180deg, #844FD9 0%, rgba(97, 88, 237, 0.7) 100%);
  color: white;
  padding: 20px;
  margin: 10px;
  border-radius: 50px;
  width: 375px;
  max-width: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 0%;
  font-size: 20px;
}
.plan i {
  margin-right: 5px;
  color: #000;
}
.plan:hover{
  background: linear-gradient(180deg, #844FD9 0%, #6158ED 100%);

}

.plan div{
  border-bottom: 2px solid black;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 0%;
  margin-left: 10%;

}