/*
Theme Name: Al-Amal Academy 
Author: Abdulrhim 
Description:  قالب تم تصميمه بواسطة م عبدالرحيم .
Version: 2.0
*/

:root {
    --teal-primary: #0d9488;
    --teal-secondary: #0f766e;
    --gold-accent: #d4af37;
    --background-light: #f9fafb;
    --text-dark: #1f2937;
    --text-light: #ffffff;
}
body {
    font-family: 'Amiri', 'Inter', sans-serif;
    background: var(--background-light);
}
.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.whatsapp-float {
    position: fixed;
    width: 64px; height: 64px;
    bottom: 32px; right: 32px;
    background-color: #25d366;
    color: var(--text-light);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-primary {
    background: linear-gradient(90deg, var(--teal-primary), var(--teal-secondary));
    color: var(--text-light);
    font-weight: 800;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
}
#mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: none; /* Changed from transform/opacity to simple display */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#mobile-menu.active {
    display: flex;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--teal-primary);
}