* {
  /* color: whitesmoke; */
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Updated from .background-video to .background-image */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* ensure it's behind overlay and content */
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.hero-content {
  margin: 30px;
  position: relative;
  z-index: 3;
  color: white;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(20deg, #ff6b9d, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  font-size: 19px;
  margin-bottom: 30px;
}

.btn.outlined {
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn.outlined:hover {
  background: white;
  color: #000;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 15px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn.outlined {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

.section {
  padding: 80px 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  color: #111;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: whitesmoke;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: whitesmoke;
}

.highlight {
  background: linear-gradient(90deg, #7e5bef, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}


/* project line  */

.project-overview-wrap {
      font-family: 'Lato', sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      margin-bottom: 100px;
     margin-top: 100px;
    }

    .overview-heading {
      font-family: 'Montserrat', sans-serif;
      font-size: 32px;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      color: white;
      margin-bottom: 50px;
    }

    .overview-heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
         background: linear-gradient(to right, #00c6ff, #0072ff);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .overview-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
      justify-content: center;
      margin-bottom: 50px;
    }

    .tab-toggle {
      color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 500;
    position: relative;
    padding: 12px 30px;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(39, 87, 176);
    border-image: initial;
    border-radius: 30px;
    transition: 0.3s;
    overflow: hidden;
  
    }

   

    .tab-toggle.active {
      /* background-color: #2b6cb0; */
      color: white;
      border-color: #2b6cb0;

      background: linear-gradient(to right, #00c6ff, #0072ff);
    }

    .tab-panel {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .tab-panel.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .goal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .goal-card {
     border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-clip: padding-box;
      border-left: 4px solid  #0072ff;
      padding: 20px;
    }

    .goal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .goal-card h3 {
      color: whitesmoke;
      margin-top: 0;
      font-size: 18px;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .goal-card h3::before {
      content: '✓';
      display: inline-block;
      width: 24px;
      height: 24px;
      background-color:  #0072ff;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 24px;
      margin-right: 10px;
      font-size: 14px;
    }

    .goal-card p {
      line-height: 1.6;
      color: whitesmoke;
    }

    .audience-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .audience-box {
      /* background: linear-gradient(135deg, #f7fafc 0%, #ebf8ff 100%); */
      padding: 20px;
      border-radius: 8px;
      border-top: 3px solid #2b6cb0;
      transition: all 0.3s ease;
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);

      
    }

    .audience-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(43, 108, 176, 0.1);
    }

    .audience-box h3 {
      color: whitesmoke;
      margin: 9px;
      display: flex;
      align-items: center;
    }
    .audience-box p{
      margin-top: 10px;
      color: whitesmoke;
    }

    .icon-tag {
      width: 24px;
      height: 24px;
      background-color:#00c6ff;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: white;
      font-size: 14px;
    }

    .milestone-track {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .milestone-track::before {
      content: '';
      position: absolute;
      width: 2px;
      background-color: #e2e8f0;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1px;
    }

    .milestone-step {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }

    .milestone-step:nth-child(odd) {
      left: 0;
    }

    .milestone-step:nth-child(even) {
      left: 50%;
    }

    .milestone-dot {
      position: absolute;
      width: 16px;
      height: 16px;
         background: linear-gradient(90deg, #38bdf8, #6366f1);
      border-radius: 50%;
      top: 20px;
    }

    .milestone-step:nth-child(odd) .milestone-dot {
      right: -8px;
    }

    .milestone-step:nth-child(even) .milestone-dot {
      left: -8px;
    }

    .milestone-detail {
      padding: 20px;
      transition: all 0.3s ease;
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      border-radius: 6px;
    }


    .milestone-detail:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(43, 108, 176, 0.1);
    }

    .milestone-detail h3 {
      margin-top: 0;
      color: rgba(245, 245, 245, 0.678);
      margin-bottom:5px ;
    }

    .milestone-detail p{
      color: whitesmoke;
    }
  

   
    @media (max-width: 768px) {
      .milestone-track::before {
        left: 31px;
      }

      .milestone-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }

      .milestone-step:nth-child(even) {
        left: 0;
      }

      .milestone-step:nth-child(odd) .milestone-dot,
      .milestone-step:nth-child(even) .milestone-dot {
        left: 23px;
      }
    }
 
    
    /* further code  */

    .ekansh-portal {
    font-family: 'Lato', sans-serif;
    max-width: 1200px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 100px;
    line-height: 1.6;
    color: whitesmoke;
}

.ekansh-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    color: white;
}

.ekansh-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    margin: 15px auto 0;
    border-radius: 2px;
}

.ekansh-feature-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background-clip: padding-box;
    border-left: 4px solid #0072ff;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(15, 23, 42, 0.6);
}

.ekansh-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ekansh-feature-title {
    color: whitesmoke;
    margin-top: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.ekansh-feature-title::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    font-size: 14px;
}

.ekansh-list {
    padding-left: 20px;
    color: whitesmoke;
}

.ekansh-list li {
    margin-bottom: 8px;
}

.ekansh-highlight {
    background: rgba(56, 189, 248, 0.1);
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #00c6ff;
}



.ekansh-contact {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #00c6ff;
}

.ekansh-contact a {
    color: #00c6ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ekansh-contact a:hover {
    color: #0072ff;
    text-decoration: underline;
}

/* Animation for section appearance */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

