/* --- Global --- */
body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    background: #f9fbfd;
    color: #333;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* --- Top Bar --- */
.top-bar {
    background: #0A4D8C;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header h1 {
    color: #0A4D8C;
    margin: 0;
}

nav a {
    margin: 0 10px;
    color: #0A4D8C;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to left, #0A4D8C, #0f6bdc);
    color: white;
}

.hero button {
    background: #00b894;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
}

/* --- Sections --- */
section {
    padding: 60px 5%;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 250px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* --- Forms & Inputs --- */
input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    background: #0A4D8C;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
}

/* --- Buttons --- */
.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
}

.fb-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    background: #1877f2;
    color: white;
    border-radius: 6px;
    font-size: 16px;
}

/* --- Scroll Top --- */
#scrollTop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    background: #0A4D8C;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/* --- Fade Animation --- */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media(max-width:768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}