    .stats-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.stat-card h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}
.training-section {
    padding: 50px 20px;
    background: #f9f9f9;
}

.training-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
}

.training-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.training-card p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.training-card .btn {
    margin-top: 10px;
}

.trainings .card { transition: transform 0.2s, box-shadow 0.2s; } .trainings .card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .trainings .card-img-top { object-fit: cover; height: 180px; }

.slider{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide{
    display: none;
    width: 100%;
    position: relative;
}

.slide.active{
    display: block;
}

.slider-bg{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* Basic Reset */
* {margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif;}
body {background:#f0f0f0;}

/* Slider Container */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slide.active {opacity: 1; z-index: 1;}

/* Text Overlay */
.slide h1 {
  color: #fff;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 20px;
  text-align: center;
}

.slide p {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  margin-bottom: 30px;
  text-align: center;
  max-width: 700px;
}

/* Buttons */
.slide .btn {
  padding: 12px 30px;
  margin: 5px;
  border: none;
  background: #ff4c4c;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
}

.slide .btn:hover {
  background: #e03a3a;
}

/* Navigation Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {background: #ff4c4c;}

/* Responsive */
@media(max-width:768px){
  .slide h1 {font-size: 2rem;}
  .slide p {font-size: 1rem; max-width: 90%;}
  .slide .btn {font-size: 0.9rem; padding: 10px 20px;}
}
 .slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 15%;
    left: 10%;
    color: #fff;
    max-width: 600px;
}

.slide-overlay h1 {
    font-size: 40px;
    font-weight: bold;
}

.slide-overlay p {
    font-size: 18px;
}

.slide-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    display: inline-block;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.active-dot {
    background: #007bff;
}


/* =============================
   SLIDER NAVIGATION BUTTONS
============================= */

.slider {
    position: relative;
    overflow: hidden;
}

/* Base Button Style */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 55px;
    height: 55px;
    
    border-radius: 50%;
    border: none;
    
    background: rgba(0, 64, 128, 0.75);
    color: #fff;
    
    font-size: 24px;
    font-weight: bold;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    
    backdrop-filter: blur(6px);
}

/* Left Button */
.prev {
    left: 20px;
}

/* Right Button */
.next {
    right: 20px;
}

/* Hover Effect */
.prev:hover,
.next:hover {
    background: #1976d2;
    transform: translateY(-50%) scale(1.1);
}

/* Active Click Effect */
.prev:active,
.next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hide buttons on very small screens */
@media (max-width: 480px) {
    .prev,
    .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Optional: Hide on mobile if swipe enabled */
/*
@media (max-width: 768px) {
    .prev, .next {
        display: none;
    }
}
*/
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

