/*======= Colors =======*/
:root {
    --orange: #ff4a17;
    --dark-orange: #e03e0c;
    --light-orange: #fd8560;
    --pale-orange: #f9ddd4;
    --muted: #e5e5e5;
    --test: rgba()
}

 body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-orange-light {
    background-color: var(--light-orange) !important;
}

.bg-orange-pale{
  background-color: var(--pale-orange) !important;
}


.text-orange {
    color: var(--orange) !important;
}

.text-orange-light {
    color: var(--light-orange) !important;
}

.btn-orange {
    background-color: var(--orange);
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: var(--dark-orange);
    color: #fff;
}

.border-orange{
  border-color: var(--orange) !important;
}

@media (min-width: 1200px) {
    .devi-dropdown{
        width: 500px;
        background: rgb(0,0,0) !important;
        left: -200px !important;
    }
}

/*===================
     Loader CSS 
 ===================*/
 #loader {
    position: fixed;
    z-index: 10001;
    width: 100vw;
    height: 100vh;
    top:0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  
  #loader .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--orange);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin: 40vh auto;
    
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


/*======= Divider =======*/
.diamond-divider::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 9%;
    width: 38%;
    border-top: 1px solid #292222;
    opacity: 0.5;
    transform: translateY(-50%);
}
.diamond-divider::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 53%;
    width: 38%;
    border-top: 1px solid #292222;
    opacity: 0.5;
    transform: translateY(-50%);
}

/* Icon container */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 74, 23, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Icons */
.icon-box i {
  font-size: 22px;
  color: var(--orange);
}

/* Item spacing */
.why-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* Icon circle */
.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: rgba(255, 74, 23, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 28px;
  color: var(--orange);
}


.priority-section {
  color: #fff;
}

.priority-title {
  letter-spacing: 2px;
  font-weight: 600;
}

.priority-card {
  background: #fff;
  color: #333;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  height: 100%;
}

.priority-icon {
  width: 200px;
  margin-bottom: 20px;
}

.priority-card h5 {
  font-weight: 600;
}

.priority-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.priority-steps {
  font-size: 14px;
  opacity: 0.9;
}

.priority-btn {
  background: #fff;
  color: #333;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.priority-btn:hover {
  background: #0f0704;
  color: #fff;
}

.apply-section{
    background: url('/assets/img/multiple-doodle-dogs.jpg') no-repeat center center /cover;
    position: relative;
}
.apply-section::after{
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:1;
}

.apply-section div{
    position: relative;
    z-index: 2;
}

   

.timeline-wrapper {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: translateY(-50%);
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background: var(--orange);
    width: 0;
    transform: translateY(-50%);
    transition: width 0.4s ease;
}

.step {
    position: relative;
    z-index: 2;
    width: 16.66%;
}

.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--muted);
    margin: auto;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    border-color: var(--orange);
    background: var(--orange);
}

.step.completed .step-circle {
    border-color: var(--orange);
    background: var(--orange);
}

.step-number {
    font-weight: 700;
    margin-top: 15px;
    color: var(--orange);
}

.step-label {
    font-size: 0.95rem;
    color: #555;
}

.controls button {
    margin: 5px;
}

.accordion-button:not(.collapsed) {
  color: var(--orange);
  background-color: rgba(255, 74, 23, 0.05);
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-button:focus {
  box-shadow: none;
}


.process-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 74, 23, 0.1);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.process-card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}


.trainer-card {
  text-decoration: none;
  color: inherit;
}

.trainer-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.trainer-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trainer-card:hover img {
  transform: scale(1.06);
}

.trainer-card .card {
  transition: all 0.3s ease;
}

.trainer-card:hover .card {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.trainer-card h6 {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .trainer-img img {
    height: 200px;
  }
}




