/*
 * RTL STYLESHEET (style-rtl.css)
 * This file reverses the layout for Right-to-Left languages.
 */

body {
    direction: rtl;
    text-align: right;
}

/* --- Header & Navigation --- */
#main-nav ul li {
    margin-left: 0;
    margin-right: 25px;
}

.logo-link {
    margin-left: 20px;
    margin-right: 0;
}

/* --- About Us Page --- */
.content-row {
    flex-direction: row-reverse;
}

.content-row.reverse {
    flex-direction: row; /* This will be the normal direction in RTL */
}

/* --- Testimonials --- */
.testimonial-card {
    border-left: none;
    border-right: 5px solid var(--primary-color);
}

/* --- Footer --- */
.footer-col p i {
    margin-right: 0;
    margin-left: 10px;
}

/* --- Services List --- */
.detailed-services-list li {
    padding: 15px 35px 15px 0;
}

.detailed-services-list li::before {
    left: auto;
    right: 0;
}

/* --- Fixed Social Icons --- */
.fixed-social-icons {
    right: auto;
    left: 40px;
}

@media (max-width: 768px) {
    #main-nav {
        left: auto;
        right: -100%;
    }
    #main-nav.active {
        left: auto;
        right: 0;
    }
    .fixed-social-icons {
        right: auto;
        left: 20px;
    }
}