/* Custom Variables for Clean Top */
:root {
  --primary-blue: #4C6EF5;
  --primary-blue-hover: #3d5dd4;
  --dark-gray: #212529;
  --light-gray: #F8F9FA;
  --white: #ffffff;
}

/* Body Styles */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Custom Button Styles */
.btn-primary {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover) !important;
  border-color: var(--primary-blue-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-blue) !important;
  color: var(--primary-blue) !important;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: white !important;
}

.btn-outline-light {
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--dark-gray) !important;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px);
}

/* Image Hover Effects */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
  padding: 100px 0;
}

/* Navigation Links */
.nav-link {
  color: var(--dark-gray);
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

/* Text Colors */
.text-primary {
  color: var(--primary-blue) !important;
}

/* Icons */
.bi {
  color: var(--primary-blue);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-section {
    min-height: 700px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 60px 0;
  }
}
