body{
    background-color: #0A192F;
  color: #F8F8F2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
/* Nav Bar */
#navbarNav{
    margin-top: 20px;
}
.hero {
      margin-top: 80px;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
    }

    .feature {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 1200px;
      width: 100%;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      padding: 40px;
    }

    .feature-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .title {
      font-size: clamp(28px, 5vw, 42px);
  background-color: #F8F8F2;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .subtext {
      background: linear-gradient(135deg, #fff, #B90EDF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .highlight {
      font-weight: 700;
      font-size: clamp(20px, 3vw, 28px);
      color: #FC3792;
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(252, 55, 146, 0.3);
    }

    .cta-btn {
     background-color: #22D3EE;
  color: #0A192F;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  /* font-weight: 600; */
  transition: background-color 0.3s ease;
  text-decoration: none;
      max-width: fit-content;
    }

    .cta-btn:hover {
      background-color: #0EF6CC;
  color: #0A192F;
    }

    
    .feature-img img {
      width: 100%;
      max-width: 100%;
      height: 400px;
      object-fit: contain;
      border-radius: 20px;
      transition: transform 0.3s ease;
    }

    .feature-img img:hover {
      transform: scale(1.05);
    }



    @media (max-width: 768px) {
      .feature {
        padding: 20px;
        gap: 20px;
      }

      .cta-btn {
        font-size: 14px;
        padding: 8px 16px;
      }

      .subtext {
        font-size: 16px;
      }

      .highlight {
        font-size: 18px;
      }
    }

  @media (max-width: 768px) {
  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .feature-text {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .feature-text p,
  .feature-text .cta-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .feature-img img {
    max-width: 100%;
    height: 400px;
  }
}

/* Tech Stack */
.stats-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#section-h {
  text-align: center;
  margin-bottom: 15px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-container {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.logo-container:hover::before {
  left: 100%;
}

.logo-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.logo-container img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.logo-container:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.logo-placeholder {
  width: 80px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .trusted-by {
    padding: 40px 24px;
  }

  .trusted-by h3 {
    font-size: 2rem;
  }

  .trusted-by p {
    font-size: 1.1rem;
  }

  .logo-row {
    gap: 20px;
  }

  .logo-container {
    width: 100px;
    height: 70px;
  }

  .logo-placeholder {
    width: 70px;
    height: 40px;
    font-size: 12px;
  }
}

/* Additional responsive styles for mobile */
@media (max-width: 480px) {
  .logo-row {
    gap: 15px;
  }

  .logo-container {
    width: 80px;
    height: 60px;
  }

  .logo-container img {
    max-width: 60px;
    max-height: 35px;
  }
}

/* why me */
#d-flexx{
 padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-header{
  background-color: #0A192F;
  margin-top: 10px;
  border-bottom: 0.5px solid white;
  border-radius: 30px;

}

.card-header span{
  color: #0EF6CC;
}
.card-header h5{
  padding: 10px;
   background: linear-gradient(135deg, #fff, #B90EDF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

#chessi{
  
  color: #d4af37  !important;
  font-size: 1.5rem;
  -webkit-text-fill-color: initial !important;
  background: none !important;
}

.list-group-item{
  background-color: #0A192F;
  color: 	#f8f9fa;
}
.list-group-item i{
  color: #d4af37;
  margin-right: 5px;
}
.list-group-item span{
  color:#0EF6CC ;
}
#logo-container-i i{
  color: #0EF6CC;
  /* background-color: #B90EDF; */
  font-size: larger;
}
/* portfolio */
.card-text a{
  color: #fff;
  text-decoration: none;
}