/* =====================================
RESPONSIVE.CSS
SmartSchool360
===================================== */

.mobile-menu-btn {
display: none;
}

/* =====================================
TABLETS & MOBILE
===================================== */
@media (max-width: 768px) {


.mobile-menu-btn {
    display: block;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 3000;
    background: #1f2937;
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 16px;
}

.sidebar {
    left: -260px;
    top: 0;
    transition: left 0.3s ease;
    z-index: 2500;
}

.sidebar.active {
    left: 0;
}

.content {
    margin-left: 0 !important;
    padding-top: 60px !important;
}

.hero h1 {
    font-size: 42px;
}

.section-title {
    font-size: 34px;
}

.premium-section {
    padding: 35px 22px;
    border-radius: 28px;
}

.stats-box {
    margin-top: -35px;
}


}

/* =====================================
FLOATING WHATSAPP BUTTON
===================================== */

.whatsapp-float {
position: fixed;
bottom: 25px;
right: 25px;


width: 70px;
height: 70px;

background: #25D366;
border-radius: 50%;

display: flex;
align-items: center;
justify-content: center;

color: #ffffff;
text-decoration: none;
font-size: 34px;

z-index: 999999;

box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);

transition: all 0.3s ease;


}

.whatsapp-float:hover {
transform: scale(1.1);
color: #ffffff;
}

.whatsapp-float i {
color: #ffffff;
}

.whatsapp-label {
position: absolute;
right: 85px;
top: 50%;
transform: translateY(-50%);


background: #ffffff;
color: #07152f;

padding: 10px 16px;

border-radius: 12px;

font-size: 14px;
font-weight: 700;

white-space: nowrap;

box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);


}

/* =====================================
SMALL MOBILE
===================================== */

@media (max-width: 576px) {


.whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 18px;
    right: 18px;
    font-size: 28px;
}

.whatsapp-label {
    display: none;
}


}
