/* Index Page Specific Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 0.888rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
  font-size: 0.888rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card h3 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card .list-group-item {
  border: none;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.888rem;
  color: #666;
}

.feature-card .list-group-item i {
  margin-right: 0.75rem;
  font-size: 0.888rem;
}

/* Professional Image Section */
.professional-image {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.professional-image:hover {
  transform: scale(1.02);
}

/* Call to Action Buttons */
.cta-buttons {
  margin-top: 3rem;
}

.cta-buttons .btn {
  margin: 0 1rem;
  padding: 1rem 2.5rem;
  font-size: 0.888rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,123,255,0.5);
}

.cta-buttons .btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

/* Animation Enhancements */
.animate__fadeInDown {
  animation-delay: 0.2s;
}

.animate__fadeInUp {
  animation-delay: 0.4s;
}

.animate__fadeInLeft {
  animation-delay: 0.6s;
}

.animate__fadeInRight {
  animation-delay: 0.8s;
}

.animate__pulse {
  animation-iteration-count: infinite;
  animation-duration: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 0.888rem;
  }
  
  .hero-section .lead {
    font-size: 0.888rem;
  }
  
  .cta-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.888rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* Background and Layout */
.bg-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.container {
  max-width: 1200px;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* Text Enhancements */
.text-primary {
  color: #007bff !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-muted {
  color: #6c757d !important;
}

/* List Group Enhancements */
.list-group {
  border-radius: 15px;
  overflow: hidden;
}

.list-group-item {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.888rem;
  transition: background-color 0.3s ease;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

/* Icon Colors */
.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

/* Divider */
hr.my-4 {
  border-color: rgba(0,0,0,0.1);
  margin: 2rem 0;
} 