body {
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;  /* Important for RTL! */
    background-color: #1a1a1a;
    /* Dark background for contrast */
    color: #f0f0f0;
    /* Light text color */
}

/* ---- NAVBAR ---- */
.navbar {
    background-color: #000;
    /* Black navbar */
}

.navbar-brand,
.navbar-nav .nav-link {
    color: #ffd700 !important;
    /* Gold color for text */
}

.navbar-brand:hover,
.navbar-nav .nav-link:hover {
    color: #e6c200 !important;
    /* Lighter gold on hover */
}

/* ---- JUMBOTRON ---- */
.jumbotron {
    background-color: #333;
    /* Dark Jumbotron */
    color: #ffd700;
    /* Gold Jumbotron text */
    border-bottom: 2px solid #ffd700;
    /* Gold border */
}

/* ---- BUTTONS ---- */
.btn-primary {
    background-color: #ffd700;
    /* Gold button */
    border-color: #ffd700;
    color: #000;
    /* Black text */
}

.btn-primary:hover {
    background-color: #e6c200;
    /* Lighter gold on hover */
    border-color: #e6c200;
    color: #000;
}

/* ---- SECTIONS ---- */
section {
    padding: 20px 0;
    /* Add some padding */
}

section h2 {
    color: #ffd700;
    /* Gold headings */
    border-bottom: 1px solid #ffd700;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

section p {
    color: #ddd;
    /* Slightly lighter text */
}

/* ---- TABLE ---- */
.table {
    color: #ddd;
}

.table thead th {
    background-color: #333;
    color: #ffd700;
    border-color: #555;
}

.table tbody td {
    border-color: #555;
}

/* ---- ACCORDION ---- */
.card {
    background-color: #333;
    border: 1px solid #555;
}

.card-header {
    background-color: #444;
}

.card-header .btn-link {
    color: #ffd700;
    text-decoration: none;
}

.card-body {
    color: #ddd;
}

/* ---- FOOTER ---- */
footer {
    background-color: #000;
    /* Black Footer */
    color: #ffd700;
    /* Gold Footer text */
}

footer a {
    color: #e6c200;
    /* Lighter gold for link */
}

footer a:hover {
    color: #ffd700;
    /* Gold on hover */
}

/* Whatsapp Button Style */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Changed from left to right */
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    z-index: 1000; /* Ensure it's on top */
}

.whatsapp-button:hover {
    background-color: #128C7E;
    /* Darker Green */
    color: white;
}

.whatsapp-button i {
    margin-left: 5px; /* Changed from right to left */
}

/* RTL Adjustments */
.navbar-nav {
    margin-right: auto; /* Push menu items to the left */
    margin-left: 0;
}

.ml-auto {
    margin-left: unset !important;
    margin-right: auto !important;
}

.mr-2, .mx-2 {
    margin-right: unset !important;
    margin-left: .5rem !important;
}

/* Image placement adjustments */
.col-md-6:first-child {
    order: 2;  /* Swaps order of the first two columns */
}

.col-md-6:last-child {
    order: 1;
}

/* Table RTL */
.table thead th {
    text-align: right;
}

.table tbody td {
    text-align: right;
}