/* About Section Styles */

/* Welcome Section with Unique Design */
.welcome-section {
  position: relative;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 4rem;
}

.welcome-card {
  position: relative;
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fbbf24, #f97316, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.welcome-divider {
  width: 8rem;
  height: 0.25rem;
  background: linear-gradient(to right, #fbbf24, #f97316);
  margin: 1.5rem auto;
  border-radius: 9999px;
}

.welcome-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

/* Content Section */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}

.image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fbbf24, #f97316);
  opacity: 0.25;
  filter: blur(10px);
  z-index: -1;
}

.text-content {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.text-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.text-content p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* Feature Cards */
.features-section {
  text-align: center;
  margin: 4rem 0;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.feature-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.feature-card:hover {
  border-color: #fbbf24;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(251, 191, 36, 0.25);
}

.feature-icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: #fbbf24;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #fbbf24, #f97316);
  color: black;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(to right, #f59e0b, #ea580c);
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(251, 191, 36, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(251, 191, 36, 0.25);
}

.btn-secondary:hover {
  background: #fbbf24;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(251, 191, 36, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .welcome-title {
    font-size: 2rem;
  }
  
  .features-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .welcome-card {
    padding: 1.5rem;
  }
  
  .welcome-title {
    font-size: 1.75rem;
  }
  
  .welcome-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .text-content {
    padding: 1.5rem;
  }
  
  .text-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .features-title {
    font-size: 1.75rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
}