/* Modern Space-themed Different Section Styles */
.bg-sec-differents {
  background: url('../images/cosmos-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.bg-overlay-differents {
  background: linear-gradient(to bottom, rgba(8, 15, 40, 0.85), rgba(17, 23, 64, 0.95));
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

/* Floating stars effect */
.bg-overlay-differents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

/* Section heading styles */
.differents-section-subtitle {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 500;
}

.differents-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #ffffff, #a0c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  letter-spacing: 1px;
}

.differents-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4e7cff, #a64cff);
  border-radius: 4px;
}

/* Feature card styles */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  z-index: -1;
}



.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.75rem;
}

.feature-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4e7cff, #a64cff);
  border-radius: 3px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-title::after {
  width: 80px;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1rem;
}

/* Divider section */
.divider-container {
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  flex-grow: 1;
}

.divider-text {
  padding: 0 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}



.center-image-container {
  position: relative;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


.tsh-container a{
  color:white !important;
}
.step-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #4e7cff;
  transform: translateX(5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  color: rgba(78, 124, 255, 0.7);
}

.step-text {
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
}

.website-link {
  background: linear-gradient(90deg, #4e7cff, #a64cff);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(78, 124, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.website-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 124, 255, 0.6);
}

.website-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.website-link:hover::before {
  left: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
  .differents-section-title {
    font-size: 2.5rem;
  }
  
  .feature-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .steps-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .differents-section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
  }
  
  .divider-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .steps-container {
    padding: 1.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .step-text {
    font-size: 1rem;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 1s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
} 