@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

  :root {
      --navy: #000038;
      --purple:  #43092d;
      --light: #f4f4f4;
    }

    body {
      margin: 0;
      color: #333;
      background: #fff;
      scroll-behavior: smooth;
         font-family: 'Montserrat', sans-serif;
    }

    /* 1. LANDING SECTION */
    .hero-glass {
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.glass-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}

.glass-box h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #000038;
}

.glass-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
    color: #f8f8f8;
}

.hero-btn {
  background: var(--purple);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #e25400;
  color: white;
}

    /* 2. ABOUT SECTION */
    .about {
      display: flex;
      flex-wrap: wrap;
      padding: 80px 5%;
      background: #fff;
      align-items: center;
    }

    .about-text {
      flex: 1;
      padding: 20px;
    }

    .about-text h2 {
      font-size: 2.5rem;
      color: #000038;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .about-img {
      flex: 1;
      padding: 20px;
      text-align: center;
    }

    .about-img img {
      width: 100%;
      max-width: 800px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    /* 3. STEPS SECTION */
 .steps {
  background:var(--navy);
  padding: 100px 5%;
  text-align: center;
}

.steps h2 {
  font-size: 2.5rem;
  color:var(--light);
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-left-color:  #e25400;
}

.step-card.active {
  border-left-color: #e25400;
  box-shadow: 0 8px 40px rgba(255, 102, 0, 0.2);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e25400;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.step-icon:hover {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(255, 102, 0, 0);
  }
}

.step-number {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--navy);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 0 0 3px #e25400;
}

.step-title {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: bold;
}

.step-short {
  font-size: 0.95rem;
  color: #666;
  margin-top: 3px;
}

.step-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  padding: 0;
  text-align: left;
  margin-top: 15px;
}

.step-card.active .step-content {
  max-height: 500px;
  opacity: 1;
  padding: 15px 0 0;
}
/*--------------------------------*/
.progress-bar-container {
  width: 50%;
  height: 8px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 40px auto;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: #e25400;
  width: 0%;
  transition: width 0.4s ease;
}
/*------------------------------------------------*/
.unique-walsh {
  background: white;
  padding: 100px 5%;
  text-align: center;
}

.unique-walsh h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.unique-walsh .sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.unique-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.41);
  border-top: 4px solid  #e25400;
}

.unique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.unique-card .icon {
  font-size: 2.5rem;
  color:  #e25400;
  margin-bottom: 20px;
}

.unique-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.unique-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.slim-cta {
  background: var(--navy);
  color: white;
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50vh;
  max-height: 250px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.slim-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.slim-cta h3 {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

.slim-cta h3 i {
  color: #e25400;
  margin-right: 10px;
}

.slim-cta-btn {
  background: var(--purple);
  color: white;
 padding: 15px 32px;
    font-size: 1rem;
    margin-top: 1vw;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.slim-cta-btn:hover {
  background: #e25400;
  color: white;
}


    /* Responsive */
    @media (max-width: 768px) {
      .about {
        flex-direction: column;
      }

      .landing h1 {
        font-size: 2rem;
      }
    }
    @media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}