body {
  font-family: "Poppins", sans-serif;
  padding-top: 76px; /* Account for fixed navbar */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  color: #667eea !important;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #667eea !important;
}

/* Cards */
.credit-card,
.media-card,
.contact-info,
.contact-form {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-card:hover,
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Stat Cards */
.stat-card {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

/* Badges */
.badge {
  font-size: 0.9rem;
  padding: 8px 12px;
  font-weight: 500;
}

/* Social Links */
.social-links a {
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Form Styling */
.form-control,
.form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Button Styling */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid white;
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: white;
  color: #667eea;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-image {
    width: 150px;
    height: 150px;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
    width: 100%;
  }

  body {
    padding-top: 56px;
  }
}
