body {
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero.png') center/cover no-repeat;
}

/* SERVICE CARDS */

/* HERO */
.services-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/services.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

/* SERVICE CARD */
.service-card {
    border: none;
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}

/* ICON STYLE */
.icon-box {
    font-size: 40px;
    color: #ffc107;
}

/* PROCESS */
.process-step {
    text-align: center;
}
.process-step h5 {
    margin-top: 15px;
}

/* STATS */
.stats {
    background: #0d1b2a;
}

/* CTA */
.cta {
    background: #1b263b;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    color: #fff;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* TRAINING DROPDOWN */

.dropdown-menu{
    border-radius:12px;
    min-width:300px;
    padding:12px;
    margin-top:10px;
}

.dropdown-item{
    padding:12px 15px;
    border-radius:8px;
    transition:0.3s;
    font-weight:500;
}

.dropdown-item:hover{
    background:#ffc107;
    color:#1b263b;
    transform:translateX(5px);
}

.dropdown-divider{
    margin:8px 0;
}