﻿/*==========================================================
                    GLOBAL
==========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo',sans-serif;
    background: var(--bg);
    color: var(--black);
}

/* Bootstrap's reboot hardcodes text-align:left on body, which is not RTL-aware.
   Elements laid out via flexbox (sidebar, header rows) are unaffected since they
   follow `direction` instead, but plain block content (headings, standalone
   buttons/links) inherits this and drifts left even when dir="rtl". */
html[dir="rtl"] body {
    text-align: right;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*====================================
        WhatsApp Floating Button
====================================*/

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

    .whatsapp-float:hover {
        transform: translateY(-4px);
        color: #fff;
    }
