/*!
Template Name: Edutics - Education HTML Template
Author: temptics pro
Version: 1.0

-----------------------------------------------------------------------------------
Front End is Developed By Shaikh Abu Amer on bahalf of temptics pro
-----------------------------------------------------------------------------------


CSS INDEX
=================== 
01. CUSTOM PROPERTIES
02. GLOBAL
03. Components
04. Header
05. Courses

*/
@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&amp;display=swap");
:root {
  --ed-blue: #241442;
  --ed-purple: #00de81;
  --ed-yellow: #F8BC24;
  --ed-gray: #4F536C;
  --ed-gray2: #445375;
  --black: #222858;
  --white: #fff;
  --font-poppins: "Poppins", sans-serif;
}

body {
  font-family: var(--font-poppins);
}

a,
button,
img,
svg path {
  transition: 0.4s ease;
}

p {
  line-height: 1.75;
}

.ed-btn {
  background-color: #00de81;
  color: #164334;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.ed-btn:hover {
  background-color: #00de81;
}

.ed-section-sub-title {
  font-weight: 600;
  color: #222858;
  text-transform: uppercase;
  padding-right: 10px;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.ed-section-sub-title::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 48px;
  background: #00DE81;
}
.ed-section-sub-title--white {
  color: var(--white);
}
.ed-section-sub-title--white::before {
  background: linear-gradient(90deg, rgb(255, 255, 255) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 8px, rgb(255, 255, 255) 8px, rgb(255, 255, 255) 13px, rgba(255, 255, 255, 0) 13px, rgba(255, 255, 255, 0) 18px, rgba(255, 255, 255, 0) 18px, rgb(255, 255, 255) 0);
}

.ed-section-title {
  font-weight: 600;
  font-size: 45px;
  color: var(--ed-blue);
  text-transform: capitalize;
  line-height: 1.29;
}
@media screen and (max-width: 1599px) {
  .ed-section-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1399px) {
  .ed-section-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .ed-section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .ed-section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 479px) {
  .ed-section-title {
    font-size: 25px;
  }
}

.ed-single-accordion-item {
  transition: 0.4s ease;
}

.ed-single-accordion-item.open .ed-single-accordion-item__header i {
  transform: rotate(90deg);
  color: var(--ed-purple);
}
.ed-single-accordion-item.open .ed-single-accordion-item__title {
  color: var(--ed-purple);
}
.ed-single-accordion-item.open .ed-single-accordion-item__body {
  grid-template-rows: 1fr;
  padding-top: 9px;
}

.ed-single-accordion-item__header i {
  transition: transform 0.4s ease;
}

.ed-single-accordion-item__body {
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}

.ed-single-accordion-item__body p {
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .ed-header-nav {
    width: 100%;
  }
}
.ed-header-nav a {
  display: block;
  line-height: 3;
  font-weight: 500;
  color: var(--ed-blue);
}
@media screen and (max-width: 1199px) {
  .ed-header-nav a {
    border-bottom: 1px solid rgba(79, 83, 108, 0.2);
    padding-bottom: 6px;
    padding: 11px 20px;
    line-height: 1.8;
  }
}
.ed-header-nav a:hover {
  color: var(--ed-purple);
}
.ed-header-nav .has-sub-menu {
  display: grid;
  grid-template-rows: max-content 0fr;
  transition: 0.4s ease;
}
.ed-header-nav .has-sub-menu:hover .ed-header-submenu {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1199px) {
  .ed-header-nav .has-sub-menu:hover .ed-header-submenu {
    transform: translateY(0) translateX(0);
  }
}
@media screen and (max-width: 1199px) {
  .ed-header-nav .has-sub-menu.active {
    grid-template-rows: max-content 1fr;
  }
}
.ed-header-nav .has-sub-menu.active > a {
  margin-bottom: 0;
}
.ed-header-nav .has-sub-menu.active .ed-header-submenu {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  border-color: #ddd;
  pointer-events: all;
}
@media screen and (max-width: 1199px) {
  .ed-header-nav .has-sub-menu.active .ed-header-submenu {
    transform: translateY(0) translateX(0);
  }
}
.ed-header-submenu {
  position: absolute;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.03);
  top: 100%;
  left: 50%;
  opacity: 0;
  transform: translateY(10px) translateX(-50%);
  transition: 0.4s ease, pointer-events 0s;
  pointer-events: none;
  width: max-content;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px) {
  .ed-header-submenu {
    position: static;
    transform: translateY(0) translateX(0);
    opacity: 1;
    width: 100%;
    overflow: hidden;
    box-shadow: none;
    background-color: #f3f3f3;
  }
}
.ed-header-submenu.active {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
}
.ed-header-submenu a {
  padding: 14px 20px;
  border-bottom: 1px solid #ddd;
  line-height: 1;
}
.ed-header-submenu li:last-child a {
  border-bottom: 0;
}
.ed-header-search.active .ed-header-search-open-btn {
  color: #00de81;
}
.ed-header-search.active form {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.ed-header-search form {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .ed-header-search form {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}
.ed-header--2 .ed-header-nav > li > a {
  color: var(--white);
}
.ed-header--2 .ed-header-nav > li > a:hover {
  color: var(--ed-yellow);
}
.ed-header--2.to-be-fixed.ed-sticky {
  background-color: #009b68;
  inset: auto;
  border-radius: 0;
  width: 100%;
  z-index: 222;
}

.ss-main {
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  flex-shrink: 0;
  width: max-content;
}
@media screen and (max-width: 1199px) {
  .ss-main {
    border-color: rgba(0, 0, 0, 0.2);
  }
}
.ss-main:focus {
  box-shadow: none;
}
.ss-main .ss-arrow path {
  stroke: var(--white);
}
@media screen and (max-width: 1199px) {
  .ss-main .ss-arrow path {
    stroke: var(--ed-blue);
  }
}
.ss-main .ss-values .ss-placeholder {
  color: var(--white);
}
@media screen and (max-width: 1199px) {
  .ss-main .ss-values .ss-placeholder {
    color: var(--ed-blue);
  }
}

.ss-content .ss-list .ss-option {
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 10px;
}

.ss-content.ss-open-below {
  padding: 0;
}
.ss-content.ss-open-below::before {
  content: none;
}

.to-be-fixed.ed-sticky {
  position: fixed;
  top: 0;
  background-color: var(--white);
  inset: 0 100px auto 100px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1176470588);
}
@media screen and (max-width: 1599px) {
  .to-be-fixed.ed-sticky {
    inset: 0 30px auto 30px;
  }
}
@media screen and (max-width: 1399px) {
  .to-be-fixed.ed-sticky {
    inset: 0 0 auto 0;
  }
}

.ed-sidebar.active > * {
  transform: translateX(0);
}

.mixitup-control-active {
  background-color: var(--ed-purple);
  color: var(--white);
}

.ed-countdown .number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.ed-course-details-tab-navs button.active {
  background-color: var(--ed-purple);
  color: var(--white);
}
.ed-course-details-tabs .ed-tab {
  overflow: hidden;
  opacity: 0;
  height: 0;
  pointer-events: none;
}
.ed-course-details-tabs .ed-tab.active {
  opacity: 1;
  height: auto;
  pointer-events: all;
}

/* ==============================
   WIZARD FORM STYLES
   ============================== */

/* Progress Bar */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.wizard-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.wizard-progress-step:first-child {
  align-items: flex-start;
}

.wizard-progress-step:last-child {
  align-items: flex-end;
}

.wizard-progress-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.4s ease;
  border: 3px solid #e0e0e0;
  position: relative;
}

.wizard-progress-step.active .wizard-progress-circle {
  background-color: var(--ed-purple);
  color: #fff;
  border-color: var(--ed-purple);
  box-shadow: 0 0 0 6px rgba(0, 222, 129, 0.2);
}

.wizard-progress-step.completed .wizard-progress-circle {
  background-color: var(--ed-purple);
  color: #fff;
  border-color: var(--ed-purple);
}

.wizard-progress-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-align: center;
  transition: color 0.4s ease;
}

.wizard-progress-step.active .wizard-progress-label,
.wizard-progress-step.completed .wizard-progress-label {
  color: var(--ed-blue);
  font-weight: 600;
}

/* Connector line between steps */
.wizard-progress-connector {
  flex: 1;
  height: 3px;
  background-color: #e0e0e0;
  position: relative;
  top: -14px;
  margin: 0 -10px;
  z-index: 0;
}

.wizard-progress-connector .wizard-progress-fill {
  height: 100%;
  background-color: var(--ed-purple);
  width: 0%;
  transition: width 0.4s ease;
}

.wizard-progress-connector.completed .wizard-progress-fill {
  width: 100%;
}

/* Steps */
.wizard-step {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.wizard-step-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ed-blue);
  margin-bottom: 8px;
}

.wizard-step-subtitle {
  font-size: 14px;
  color: var(--ed-gray);
  margin-bottom: 30px;
}

/* Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.wizard-btn-prev {
  background-color: #f0f0f0;
  color: var(--ed-blue);
}

.wizard-btn-prev:hover {
  background-color: #e0e0e0;
}

.wizard-btn-next {
  background-color: var(--ed-purple);
  color: #fff;
}

.wizard-btn-next:hover {
  background-color: #00c472;
  box-shadow: 0 4px 15px rgba(0, 222, 129, 0.3);
}

.wizard-btn-submit {
  background-color: var(--ed-purple);
  color: #fff;
}

.wizard-btn-submit:hover {
  background-color: #00c472;
  box-shadow: 0 4px 15px rgba(0, 222, 129, 0.3);
}

.wizard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form Inputs Enhanced */
.wizard-step input[type="text"],
.wizard-step input[type="email"],
.wizard-step input[type="tel"],
.wizard-step input[type="url"],
.wizard-step select,
.wizard-step textarea {
  width: 100%;
  border: 2px solid #ECECEC;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: var(--font-poppins);
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.wizard-step textarea {
  height: auto;
  padding: 15px 20px;
}

.wizard-step input[type="text"]:focus,
.wizard-step input[type="email"]:focus,
.wizard-step input[type="tel"]:focus,
.wizard-step input[type="url"]:focus,
.wizard-step select:focus,
.wizard-step textarea:focus {
  outline: none;
  border-color: var(--ed-purple);
  box-shadow: 0 0 0 4px rgba(0, 222, 129, 0.15);
  background-color: #fff;
}

.wizard-step input[type="text"]::placeholder,
.wizard-step input[type="email"]::placeholder,
.wizard-step input[type="tel"]::placeholder,
.wizard-step input[type="url"]::placeholder,
.wizard-step textarea::placeholder {
  color: #aaa;
}

.wizard-step label.block {
  display: block;
  font-weight: 600;
  color: var(--ed-blue);
  margin-bottom: 8px;
  font-size: 15px;
}

/* Custom Checkboxes */
.wizard-checkbox-group,
.wizard-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-checkbox-label,
.wizard-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #ECECEC;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--ed-gray);
  background-color: #fafafa;
}

.wizard-checkbox-label:hover,
.wizard-radio-label:hover {
  border-color: var(--ed-purple);
  background-color: rgba(0, 222, 129, 0.05);
}

.wizard-checkbox-label input[type="checkbox"],
.wizard-radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-radio-label input[type="radio"] {
  border-radius: 50%;
}

.wizard-checkbox-label input[type="checkbox"]:checked,
.wizard-radio-label input[type="radio"]:checked {
  background-color: var(--ed-purple);
  border-color: var(--ed-purple);
}

.wizard-checkbox-label input[type="checkbox"]:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #fff;
}

.wizard-radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.wizard-checkbox-label input[type="checkbox"]:checked + span,
.wizard-radio-label input[type="radio"]:checked + span {
  color: var(--ed-blue);
  font-weight: 500;
}

/* Validation error */
.wizard-field-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1) !important;
}

.wizard-error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.wizard-error-message.visible {
  display: block;
}

/* Form card wrapper */
.wizard-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media screen and (max-width: 767px) {
  .wizard-progress-label {
    font-size: 11px;
  }

  .wizard-progress-circle {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .wizard-form-card {
    padding: 30px 20px;
  }

  .wizard-step .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  .wizard-nav {
    flex-direction: column;
    gap: 12px;
  }

  .wizard-nav .wizard-btn {
    width: 100%;
    justify-content: center;
  }

  .wizard-step-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .wizard-progress-label {
    font-size: 10px;
  }

  .wizard-progress-circle {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .wizard-progress-connector {
    top: -10px;
  }

  .wizard-form-card {
    padding: 24px 16px;
  }
}

/*# sourceMappingURL=style.css.map */