/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('images/room1.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

/* Dark overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Navbar */
.navbar {
  background-color: #111;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.nav-link {
  color: #eee !important;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #ff4d00 !important;
}

/* Section Divider */
.section-divider {
  border-top: 2px solid #333;
  margin: 40px 0;
}

/* Trainers Section */
#trainers h2 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

#trainers .card {
  background-color: rgba(17, 17, 17, 0.95);
  border: 1px solid #222;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  color: #fff;
}

#trainers .card:hover {
  transform: translateY(-10px);
}

#trainers .card-img-top {
  height: 250px;
  object-fit: cover;
}

#trainers .card-body {
  padding: 20px;
}

#trainers .card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #ff4d00;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#trainers .card-text {
  color: #ccc;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  font-size: 0.9rem;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  #trainers .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #trainers h2 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Custom Badge Styles */
.badge.bg-expert {
    background-color: #ff9500;
    color: #111;
    font-weight: 600;
  }
  
  .badge.bg-certified {
    background-color: #28a745;
    color: #fff;
    font-weight: 600;
  }
  
  .badge.bg-toprated {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
  }
  
  /* Icon spacing */
  .badge i {
    margin-right: 5px;
  }
  