/* style.css - Updated for sleek modern feel: added gradients, more white space, smoother transitions, modern typography adjustments */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap'); /* Added lighter weights for modern feel */

body {
  font-family: 'Inter', sans-serif;
  color: #2D3748; /* Softer dark gray for text */
  background-color: #F7FAFC; /* Light neutral background */
  line-height: 1.7; /* Improved readability */
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-bg {
  background: linear-gradient(135deg, #001F3F, #004080); /* Gradient for depth */
  color: #FFFFFF;
}

.secondary-bg {
  background-color: #39CCCC; /* Teal */
}

.accent-bg {
  background-color: #FF851B; /* Soft Orange */
}

.neutral-bg {
  background-color: #EDF2F7; /* Softer light gray */
}

.text-primary {
  color: #001F3F;
}

.text-secondary {
  color: #39CCCC;
}

.text-accent {
  color: #FF851B;
}

.btn-primary {
  background: linear-gradient(135deg, #FF851B, #FF6A00);
  border: none;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 133, 27, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #FF851B;
  color: #FF851B;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #FF851B;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.card {
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px; /* Softer corners */
  transition: all 0.3s ease;
  padding: 24px; /* More padding for airiness */
  background: #FFFFFF;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-padding {
  padding: 80px 0; /* More vertical space for modern feel */
}

.hero {
  padding: 150px 0; /* Taller hero for impact */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Subtle overlay */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.footer {
  background: linear-gradient(135deg, #001F3F, #00264D);
  color: #FFFFFF;
  padding: 60px 0;
}

.footer a {
  color: #A0B0C0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #FFFFFF;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95) !important; /* Semi-transparent for modern overlay */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.list-group-item {
  border: none;
  padding: 12px 0;
  font-size: 1.1rem;
}