/* --- Base Styles & Custom Navbar --- */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* === Loader Styles Start === */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #010440;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.loader {
    border: 5px solid #222;
    border-top: 5px solid #ffbb00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.2s linear infinite;
}

.loader-text {
    margin-top: 15px;
    font-size: 1rem;
    color: #ffbb00;
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}
/* === Loader Styles End === */


/* --- Fade-in Animation Styles Start --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- Fade-in Animation Styles End --- */



/* WhatsApp Floating Chat Button */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.05);
}

.whatsapp-icon {
    background-color: #25D366;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon img {
    width: 28px;
    height: 28px;
}

.whatsapp-message {
    background-color: white;
    color: #000;
    padding: 8px 12px;
    margin-left: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    max-width: 220px;
    white-space: nowrap;
}

