/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    padding: 3rem 0;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}

/* Services Page */
.services-page .card {
    margin-bottom: 20px;
}

/* Booking Page */
.booking-page .form-control, .booking-page .form-select {
    padding: 10px;
}

/* Referral Page */
.referral-page .input-group {
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section .col-md-6 {
        margin-bottom: 20px;
    }
    
    .features-section .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Enhanced Styles */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-img {
  max-height: 400px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-xl {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hover-top {
  transition: all 0.3s ease;
}

.hover-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.bg-dark-800 {
  background-color: rgba(255,255,255,0.05);
}

/* Animation for icons */
.fas, .fab {
  transition: transform 0.3s ease;
}

.card:hover .fas, 
.card:hover .fab {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-img {
    margin-top: 2rem;
    max-height: 300px;
  }
}
/* Profile Page Styles */
.profile-page .stat-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}

.profile-page .stat-card .display-4 {
    font-size: 2.5rem;
    font-weight: 300;
}

.profile-page .table {
    margin-bottom: 0;
}

.profile-page .table th {
    border-top: none;
    font-weight: 500;
}

/* Avatar image */
.rounded-circle {
    object-fit: cover;
}