/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #1a2755; /* Deep Navy */
    --secondary-color: #29afd4; /* Sky Blue / Teal */
    --accent-color: #B89C72; /* Gold Accent */
    --accent-hover: #9c825a;
    
    --text-dark: #2d3748;
    --text-muted: #718096;
    --text-light: #e2e8f0;
    --white: #ffffff;
    
    --bg-light: #f8fafc;
    --bg-navy: #151e3f;
    
    /* Fonts */
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Cairo', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-color); }
.text-white { color: var(--white); }

.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--bg-navy); }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header.light .section-title {
    color: var(--white);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.divider.gold {
    background-color: var(--accent-color);
}

.en-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: normal;
}

.block-subtitle {
    display: block;
    margin-top: 5px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .ar {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text .en {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

html[lang="ar"] .logo-text .en {
    display: none;
}

html[lang="en"] .logo-text .ar {
    display: none;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a subtle abstract pattern or gradient since we don't have images */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(26, 39, 85, 0.05) 0%, rgba(255,255,255,0.8) 60%);
    z-index: -1;
}

.geo-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.8;
}

.t-primary {
    top: -10%;
    left: -5%;
    border-width: 0 40vw 40vw 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    transform: rotate(15deg);
}

.t-secondary {
    bottom: -10%;
    right: -5%;
    border-width: 40vw 40vw 0 0;
    border-color: var(--primary-color) transparent transparent transparent;
}

.t-navy {
    bottom: 20%;
    right: 10%;
    border-width: 0 0 15vw 15vw;
    border-color: transparent transparent var(--accent-color) transparent;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
}

.hero-text-box {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-right: 4px solid var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content .lead-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-box .stat-num {
    font-size: 2.5rem;
    color: var(--accent-color);
    line-height: 1;
}

.stat-box .stat-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.about-visual {
    position: relative;
    width: fit-content;
    max-width: 100%;
    justify-self: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.about-profile-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

html[lang="en"] .values-list .value-sub {
    display: none;
}

/* ==========================================================================
   Vision & Values
   ========================================================================== */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.v-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.v-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.v-card.values-card {
    border-top-color: var(--primary-color);
}

.v-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.v-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list {
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.values-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.values-list strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.values-list span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services .container {
    max-width: 1400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.service-box {
    background: var(--white);
    padding: 28px 14px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(41, 175, 212, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.service-box:hover .service-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-title {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.35;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.service-hover-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.service-box:hover .service-hover-bar {
    width: 100%;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.portfolio-table thead th {
    background: var(--bg-navy);
    color: var(--white);
    padding: 14px 16px;
    text-align: right;
    font-size: 0.95rem;
    white-space: nowrap;
}

.portfolio-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
    vertical-align: top;
}

.portfolio-table tbody tr:hover:not(.portfolio-category) {
    background: rgba(41, 175, 212, 0.06);
}

.portfolio-table tbody tr.portfolio-category td {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-bottom: none;
}

.portfolio-table .col-num {
    width: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
}

.portfolio-table tbody tr.portfolio-category .col-num {
    color: transparent;
    background: transparent;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--text-light); /* Placeholder background */
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Fallback style if image is missing */
.gallery-img[alt]:after {
    content: "\f03e  " attr(alt);
    font-family: 'Font Awesome 6 Free', var(--font-body);
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 39, 85, 0.7); /* Navy with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* ==========================================================================
   Clients Section
   ========================================================================== */
.clients-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.client-item {
    background: var(--bg-light);
    width: calc(33.333% - 20px);
    min-width: 200px;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.client-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.client-icon {
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: var(--transition);
    font-size: 2.5rem;
}

.client-item:hover .client-icon {
    color: var(--primary-color);
}

.client-item h5 {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

/* ==========================================================================
   Goals Section
   ========================================================================== */
.goals {
    position: relative;
    overflow: hidden;
}

.goals-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.goal-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.goal-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    z-index: 2;
    flex-shrink: 0;
    margin-left: 30px; /* Arabic RTL */
}

.goal-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 8px;
    flex-grow: 1;
    border-right: 3px solid var(--secondary-color);
    backdrop-filter: blur(5px);
}

.goal-content h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.goal-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.bg-shapes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.02);
}

.goals .container {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img--footer {
    filter: brightness(1.05) contrast(1.02);
}

.footer-about p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-info a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info .fa-whatsapp {
    color: #25d366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   Image Modal / Lightbox
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-box {
        padding: 32px 20px;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .about-grid, .vision-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple hidden for mobile, need JS to toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Navbar Actions (Contact + Lang Toggle)
   ========================================================================== */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   Language Toggle Pill
   ========================================================================== */
.lang-pill {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 2px solid rgba(26, 39, 85, 0.15);
    border-radius: 30px;
    padding: 4px 6px;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.lang-pill:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(184, 156, 114, 0.15);
}

.lang-opt {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.lang-opt.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px rgba(26, 39, 85, 0.3);
}

/* ==========================================================================
   LTR (English) Layout Overrides
   ========================================================================== */
[dir="ltr"] .hero-text-box {
    border-right: none;
    border-left: 4px solid var(--accent-color);
}

[dir="ltr"] .goals-timeline::before {
    right: auto;
    left: 30px;
}

[dir="ltr"] .goal-icon-wrapper {
    margin-left: 0;
    margin-right: 30px;
}

[dir="ltr"] .goal-content {
    border-right: none;
    border-left: 3px solid var(--secondary-color);
}

[dir="ltr"] .portfolio-table thead th,
[dir="ltr"] .portfolio-table tbody td {
    text-align: left;
}

[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

[dir="ltr"] body {
    font-family: 'Inter', sans-serif;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] h5,
[dir="ltr"] h6 {
    font-family: 'Inter', sans-serif;
}

[dir="ltr"] .btn {
    font-family: 'Inter', sans-serif;
}

[dir="ltr"] .nav-links a {
    font-family: 'Inter', sans-serif;
}
