header.header {
  background-color: #007bff !important;
  color: #fff !important;
}

header.header a {
  color: #fff !important;
  text-decoration: none;
}

header.header a:hover {
  color: #ffd700 !important;
}

header.header .container-xl {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Make offcanvas height auto (fits content) */
.offcanvas-end {
    height: auto !important;    /* only as tall as content */
    max-height: 90vh;           /* optional: don’t exceed 90% of viewport */
}

/* Add spacing inside menu */
.offcanvas-body {
    padding: 1.5rem;
}

/* Bigger list items for mobile */
.offcanvas-body ul li a {
    font-size: 1.25rem; /* increase font size */
}
/* ---------------------------------------------- */
/* <!-- Custom CSS for slide animations --> */

/* Remove any gap under header */
.carousel-section {
  margin-top: 0;
  padding: 0;
}

/* Make carousel full width and height */
.carousel-section .carousel,
.carousel-section .carousel-inner,
.carousel-section .carousel-item img {
  width: 100vw;
  height: 90vh; /* fixed height for uniform look */
  object-fit: cover;
}

/* Remove carousel controls completely */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  display: none;
}

.course-card {
  position: relative;
  background: transparent !important; /* fully transparent background */
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.course-card .card-icon {
  font-size: 28px;
  color: #fc6800;
}

/* explicitly color your text */
.course-card .card-content h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111110 !important; /* gold/yellow text */
}

.course-card .card-content span {
  font-size: 14px;
  color: #111110 !important; /* cyan text */
  opacity: 1;
}

/* Floating WhatsApp Button - Left Side */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  left: 20px;   /* 👈 changed from right:20px to left:20px */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}



