:root {
    /* Brand Colors */
    --primary-color: #cc3916;
    --primary-dark: #a12b10;
    --primary-light: #e65633;

    --secondary-color: #5c1f00;
    --secondary-light: #852d00;

    --tertiary-color: #d3d3d3;
    --tertiary-dark: #b0b0b0;

    /* Backgrounds & Text */
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;

    /* UI Elements */
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

[dir="rtl"] h2::after {
    right: 0;
}

[dir="ltr"] h2::after {
    left: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

[dir="rtl"] .section-title h2::after {
    right: 50%;
    transform: translateX(50%);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-align: justify;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-light);
}

.text-white p {
    color: #f0f0f0;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.justify-center {
    justify-content: center !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(204, 57, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 57, 22, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

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

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

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

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

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

[dir="rtl"] .nav-link::after {
    right: 0;
    left: auto;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    background: transparent;
    border: 1px solid var(--tertiary-color);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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


/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(92, 31, 0, 0.9) 0%, rgba(204, 57, 22, 0.8) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--tertiary-color);
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 25%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: var(--radius-lg);
}

[dir="rtl"] .about-img::before {
    right: -20px;
    left: 20px;
}

[dir="ltr"] .about-img::before {
    left: -20px;
    right: 20px;
}

.about-text h2 {
    color: var(--primary-color);
}

.about-text h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
}

/* Services Section (Home Page / Common) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: var(--transition);
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--text-light);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--text-light);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    transition: var(--transition);
    margin: 0;
    text-align: center;
}

/* Services Page (Horizontal Layout) */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card-horizontal {
    display: flex;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--primary-color);
}

/* Mobile Responsiveness for Horizontal Service Cards */
@media (max-width: 768px) {
    .service-card-horizontal {
        flex-direction: column;
    }

    .service-card-image {
        flex: 0 0 250px;
        width: 100%;
    }

    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
}

.service-card-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
    transition: var(--transition);
}

.service-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--tertiary-color);
    transition: var(--transition);
}

[dir="rtl"] .service-card-content h3::after {
    right: 0;
}

[dir="ltr"] .service-card-content h3::after {
    left: 0;
}

.service-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    transition: var(--transition);
}

/* Hover Effects */
.service-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-horizontal:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-horizontal:hover h3 {
    color: var(--secondary-color);
}

.service-card-horizontal:hover h3::after {
    background-color: var(--primary-color);
    width: 60px;
}

/* Vision & Targets */
.vision-targets {
    background-color: var(--tertiary-color);
}

.vt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.vision-card,
.targets-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}

.targets-list {
    list-style: none;
}

.targets-list li {
    position: relative;
    padding: 0 30px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.targets-list li::before {
    content: '✓';
    position: absolute;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

[dir="rtl"] .targets-list li::before {
    right: 0;
}

[dir="ltr"] .targets-list li::before {
    left: 0;
}

/* Clients Section */
/* Clients Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    /* Mask for fade out edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 100px;
    animation: scroll-ltr 40s linear infinite;
    align-items: center;
}

[dir="rtl"] .marquee-content {
    animation-name: scroll-rtl;
}

.marquee-item {
    flex-shrink: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.marquee-item img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

/* Equipment Gallery Specific Overrides */
#equipment-gallery .marquee-item img {
    height: 120px;
    max-width: 300px;
    filter: none;
    opacity: 1;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#equipment-gallery .marquee-item {
    padding: 0 25px;
}

#equipment-gallery .marquee-content {
    padding: 30px 0;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* Page Headers (Sub-pages) */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/subpage_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--tertiary-color);
}

/* Policy Page Styles */
.policy-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-right: 5px solid var(--primary-color);
    transition: var(--transition);
}

[dir="ltr"] .policy-card {
    border-right: none;
    border-left: 5px solid var(--primary-color);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

[dir="ltr"] .policy-list li {
    padding-right: 0;
    padding-left: 25px;
}

.policy-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

[dir="ltr"] .policy-list li::before {
    right: auto;
    left: 0;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.italic {
    font-style: italic;
}

.text-primary {
    color: var(--primary-color);
}

.info-details p:last-child {
    margin-bottom: 0;
}

/* Contact Section & Footer */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

@media (min-width: 992px) {
    .contact-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--tertiary-color);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.contact-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-box p,
.contact-box a {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: rgba(92, 31, 0, 0.08);
    /* Thinned Secondary Color 2 */
    padding: 80px 0 0;
    color: #000000;
    /* Black base text */
    border-top: 5px solid var(--primary-color);
}

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

.footer-about p {
    margin-top: 15px;
    color: #000000;
    text-align: justify;
}

.footer-logo-img {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--primary-color) !important;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links ul li a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-dark);
    padding-right: 5px;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
    margin-bottom: 15px;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: #000000;
    margin: 0;
    font-size: 0.95rem;
}

/* Image Utilities */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider for Services - 2 Column Layout */
.services-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-bottom: 50px;
    background-color: #fdfdfd;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.slide-container {
    height: 100%;
    display: flex;
    padding-top: 80px; /* Offset for header height */
    align-items: center;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.slide-text {
    z-index: 10;
}

.slide-text h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.slide-text p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .slide-image img {
    transform: scale(1.08) rotate(1deg);
}

.hero-slide-brand {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.hero-slide-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/subpage_hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.hero-slide-brand .hero-title,
.hero-slide-brand .hero-subtitle {
    color: var(--text-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-slide-brand .slide-content {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    z-index: 20 !important;
    transition: var(--transition);
    pointer-events: auto !important;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.3rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.services-hero .swiper-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 0;
    width: 100%;
    z-index: 20 !important;
    display: flex;
    justify-content: center;
    pointer-events: auto !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .services-hero {
        height: auto;
        padding: 100px 0 120px; /* Increased bottom padding for external pagination */
    }
    .slide-container {
        padding-top: 0;
    }
    .slide-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px; /* Space before pagination */
    }
    .slide-image {
        order: -1; /* Move image above text */
        width: 100%;
    }
    .slide-image img {
        width: 100%;
        max-height: 400px;
        object-fit: cover; /* Fill the width better */
        border-radius: 15px;
    }
    .slide-text h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    .services-hero .swiper-pagination {
        bottom: 40px !important;
    }
}

/* Equipment Table */
.equipment-section {
    padding-top: 0;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    min-width: 600px;
}

.equipment-table th,
.equipment-table td {
    padding: 15px 25px;
    text-align: right;
    border-bottom: 1px solid var(--tertiary-color);
}

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

.equipment-table th {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.equipment-table tr:last-child td {
    border-bottom: none;
}

.equipment-table tr:nth-child(even) {
    background-color: rgba(92, 31, 0, 0.02);
}

.equipment-table tr:hover {
    background-color: rgba(204, 57, 22, 0.05);
}

.eq-unit-cell {
    font-weight: 700;
    color: var(--primary-color);
    width: 150px;
    text-align: center !important;
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-grid,
    .vt-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .about-img::before {
        display: none;
    }

    .contact-map {
        min-height: 300px;
    }

    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        z-index: 1000;
        display: block;
        /* Ensure it's not hidden by display: none */
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .nav-link::after {
        display: none;
    }

    .lang-switch .lang-text {
        display: inline;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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