html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Custom styles for ShareVega homepage */

/* Hero Section */
.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.min-vh-75 {
  min-height: 75vh;
}

/* Animation classes */
.animate-slide-in {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-delay {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.animate-slide-in-delay-2 {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out 0.6s both;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Card hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Feature icons */
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category cards */
.category-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: #007bff;
  transform: translateY(-5px);
}

.category-icon {
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

/* Course cards */
.course-card {
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Testimonial cards */
.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

/* Special badges and callouts */
.badge {
  font-size: 0.75em;
}

/* Program type cards special styling */
.card-header {
  border-bottom: none;
}

/* Background gradients */
.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
}

/* Loading animations for better UX */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

/* Custom button styles */
.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: 600;
}

.btn-warning:hover {
  background-color: #ffca2c;
  border-color: #ffc720;
  color: #000;
}

/* Spacing utilities */
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* Text utilities */
.fw-bold {
  font-weight: 700 !important;
}

/* Border utilities */
.border-0 {
  border: 0 !important;
}

/* Shadow utilities */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Course level badges */
.badge.bg-warning {
  color: #000 !important;
}

/* Success metrics styling */
.text-center h3 {
  margin-bottom: 0.25rem;
}

.text-center small {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Special announcement banner */
.bg-warning {
  background-color: #ffc107 !important;
}

.bg-warning h5 {
  color: #000;
  margin-bottom: 0;
}

/* Call to action section */
.bg-gradient-primary h2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Placement guarantee highlight */
.text-warning {
  color: #ffc107 !important;
}

/* Enhanced list styling */
.list-unstyled li {
  padding: 0.25rem 0;
}

.fa-check-circle,
.fa-check {
  color: #28a745;
}

/* Certification cards */
.bg-warning.text-dark {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* Responsive grid adjustments */
@media (max-width: 576px) {
  .row.text-center .col-4 {
    margin-bottom: 1rem;
  }
  
  .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-lg {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}