@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --color1:#E8F7F2;
    --color2: #E2F8EC;
    --text-color:#53D690;
    --text-color2:#7273C1;
    --black-color:rgb(17, 17, 17);
    --font-size1: 20px;
    --font-size2:28px;
    --font-size3: 38px;
    --font-size4:14px;
    --font-size4:16px;
    --white-color1:#F7F1FD;
    --white-color2:rgba(255, 255, 255, 0.9);
    --black-color1:#363434e6;
}
body{
    overflow-x: hidden;
    font-family: 'poppins';
}

/*--------------------------------------------------------------
# hero-wave Section
--------------------------------------------------------------*/
  .hero-wave h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color:#333 !important;
  }
  
  .hero-wave h1 span {
    color: #5c5c5c;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .hero-wave p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 17px;
    font-weight: 400;
  }
  .hero-wave p{
    color: #757474;
  }
  
 
  .sec2 .php-email-form {
    height: 100%;
    background: #fff;
    padding: 10px 30px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    margin-bottom: 3rem;
  }
  .sec2 h2{
    color: #333;
    font-size: 28px !important;
    font-weight: 500 !important;
  }
  .sec2 .php-email-form input[type=text],
  .sec2 .php-email-form input[type=email],
  .sec2 .php-email-form input[type=phone],
  .sec2 .php-email-form select,
  .sec2 .php-email-form textarea {
    background: #fff !important;
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 2px !important;
    height: 45px;  /* Uniform height for all input fields */
    /* color: var(--default-color); */
    color: #333;
  }
  
  .sec2 .php-email-form input[type=text]:focus,
  .sec2 .php-email-form input[type=email]:focus,
  .sec2 .php-email-form input[type=phone]:focus,
  .sec2 .php-email-form select:focus,
  .sec2 .php-email-form textarea:focus {
    border-color: var(--accent-color);
    background: #fff;
    color: #333;
  }
  
  .sec2 .php-email-form input[type=text]::placeholder,
  .sec2 .php-email-form input[type=email]::placeholder,
  .sec2 .php-email-form input[type=phone]::placeholder,
  .sec2 .php-email-form textarea::placeholder {
    border-color: #3498db;
    background: #fff;
    color: #abaaaa;
  }


  
  
  #year{
    color: #333; 
    font-size: 14px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none; 
    height: auto;
  }
  #year option[value=""] {
    color: #444444; 
}


  .sec2 .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
  }
  .radio-sec {
    display: block;
    margin-top: 50px;
  }
  
  .radio-option {
    display: block; /* Ensures each radio button and label is on a new line */
    margin-bottom: 10px; /* Adds some space between each radio option */
  }
  
  .radio-sec input[type="radio"] {
    margin-right: 10px; /* Optional: space between the radio button and the label */
  }
  
  .radio-sec label {
    display: inline-block;
    cursor: pointer;
  }
  
  .sec2 .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }



  /* Spinner styling */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Message box styling */
.message-box {
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
}

.message-box.success {
  background-color: #28a745;
  border: 1px solid #218838;
}

.message-box.error {
  background-color: #dc3545;
  border: 1px solid #c82333;
}

.message-box i {
  font-size: 18px;
}

  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-wave {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f4fafd;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  
}


.hero-wave h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero-wave h2 span {
  text-decoration: underline;
}

.hero-wave p {
  animation-delay: 0.4s;
}


.hero-wave .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-wave h2 {
    font-size: 28px;
  }
}

.hero-wave .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero-wave .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #e7dff4;
  opacity: 0.6;
}

.hero-wave .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #c9d2ed;
  opacity: 0.4;
}

.hero-wave .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: white;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.alumni-testimonials .info h3 {
    font-weight: 700;
    font-size: 32px;
  }
  
  .alumni-testimonials .swiper {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--surface-color);
  }
  
  .alumni-testimonials .testimonials-carousel,
  .alumni-testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .alumni-testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 200px;
    position: relative;
    margin: 30px;
  }
  
  .alumni-testimonials .testimonial-item .testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid var(--background-color);
    margin-right: 10px;
    object-fit: cover;
  }
  
  .alumni-testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  .alumni-testimonials .testimonial-item h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    font-family: var( --default-font);
  }
  .alumni-testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
  }
  
  .alumni-testimonials .testimonial-item .stars {
    margin: 10px 0;
  }
  
  .alumni-testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .alumni-testimonials .testimonial-item .quote-icon-left,
  .alumni-testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
  }
  
  .alumni-testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .alumni-testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .alumni-testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
  }
  
  .alumni-testimonials .swiper-wrapper {
    height: auto;
    width: 200px !important;
  }
  
  .alumni-testimonials .swiper-pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .alumni-testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
    border: none;
  }
  
  .alumni-testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  .alumni-testimonials .swiper-slide{
    display: grid;
justify-content: center;
 
  }
  @media (max-width: 767px) {
  
    .alumni-testimonials .testimonials-carousel,
    .alumni-testimonials .testimonials-slider {
      overflow: hidden;
    }
  
    .alumni-testimonials .testimonial-item {
      margin: 15px;
    }
  }
  .alumni-testimonials .flex-column{
    text-align: center;
  }
  .alumni-testimonials .align-items-center {
    align-items: center !important;
    justify-content: center;
}
  /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.benifit-services .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 30px;
    margin: 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  }
  
  .benifit-services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
  }
  
  .benifit-services .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
  }
.stretched-link:hover{
  text-decoration: none !important;
}
  .benifit-services .details a:hover{
    text-decoration: none;
  }
  
  .benifit-services .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  #class {
    background-color: #fd7e14; 
}
.benifit-services .details:hover #class {
  background: var(--surface-color);
  border:  2px solid #fd7e14 !important;
}

.benifit-services .details:hover #class i {
  color:#fd7e14;
}

#personal {
    background-color: #0dcaf0; 
}
.benifit-services .details:hover #personal {
  background: var(--surface-color);
  border: 2px solid #0dcaf0;
}

.benifit-services .details:hover #personal i {
  color: #0dcaf0;
}
#expert {
    background-color: #df1529; 
}
.benifit-services .details:hover #expert {
  background: var(--surface-color);
  border: 2px solid #df1529;
}

.benifit-services .details:hover #expert i {
  color: #df1529;
}
#Project {
    background-color: #20c997; 
}
.benifit-services .details:hover #Project {
  background: var(--surface-color);
  border: 2px solid #20c997;
}

.benifit-services .details:hover #Project i {
  color: #20c997;
}
#placement {
    background-color: #9b59b6; 
}
.benifit-services .details:hover #placement {
  background: var(--surface-color);
  border: 2px solid #9b59b6;
}

.benifit-services .details:hover #placement i {
  color: #9b59b6;
}
#fees {
    background-color: #F3268C; 
}
.benifit-services .details:hover #fees  {
  background: var(--surface-color);
  border: 2px solid #F3268C;
}

.benifit-services .details:hover #fees i {
  color: #F3268C;
}

  /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
  }
  
  .call-to-action p {
    color: var(--default-color);
  }

  .call-to-action a:hover{
    text-decoration: none;
  }
  
  .call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
  }
  
  .call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
  }
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.enroll-services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
  }
  
  .enroll-services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }
  
  .enroll-services .service-item .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
  }
  
  .enroll-services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .enroll-services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  
  .enroll-services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
  }
  
  .enroll-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .enroll-services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  }
  
  .enroll-services .service-item.item-cyan i {
    color: #0dcaf0;
  }
  
  .enroll-services .service-item.item-cyan:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
  }
  
  .enroll-services .service-item.item-orange i {
    color: #fd7e14;
  }
  
  .enroll-services .service-item.item-orange:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
  }
  
  .enroll-services .service-item.item-teal i {
    color: #20c997;
  }
  
  .enroll-services .service-item.item-teal:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-teal:hover .icon path {
    fill: #20c997;
  }
  
  .enroll-services .service-item.item-red i {
    color: #df1529;
  }
  
  .enroll-services .service-item.item-red:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-red:hover .icon path {
    fill: #df1529;
  }
  
  .enroll-services .service-item.item-indigo i {
    color: #6610f2;
  }
  
  .enroll-services .service-item.item-indigo:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
  }
  
  .enroll-services .service-item.item-pink i {
    color: #f3268c;
  }
  
  .enroll-services .service-item.item-pink:hover .icon i {
    color: #fff;
  }
  
  .enroll-services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
  }
  