/* Global Styles */
:root {
    --primary-color: #0d1b2a;
    /* Dark Blue */
    --secondary-color: #1b263b;
    /* Slightly Lighter Blue */
    --accent-color: #e0e1dd;
    /* Light Grey */
    --highlight-color: #778da9;
    /* Muted Blue */
    --text-color: #e0e1dd;
    --bg-color: #0d1b2a;
    --card-bg: #1b263b;
    --font-main: 'Cairo', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(13, 27, 42, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--highlight-color);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo i {
    color: var(--highlight-color);
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-logo-mobile,
.nav-lang-mobile {
    display: none;
}

.nav-links li a {
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--highlight-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    /* Industrial/Shipping container image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 5px solid var(--highlight-color);
    display: inline-block;
    padding-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--text-color);
    transform: translateY(-3px);
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header .line {
    width: 100px;
    height: 5px;
    background-color: var(--highlight-color);
    margin: 0 auto;
}

.section-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--accent-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list li i {
    color: var(--highlight-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--primary-color);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--highlight-color);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--highlight-color);
}

.stat-box p {
    font-size: 1.2rem;
    font-weight: 700;
}

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

.service-box {
    background-color: var(--card-bg);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid var(--highlight-color);
}

.service-box:hover {
    transform: translateY(-10px);
    background-color: var(--highlight-color);
}

.service-box:hover h3,
.service-box:hover p,
.service-box:hover i {
    color: var(--primary-color);
}

.service-box i {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 25px;
}

.service-image {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--highlight-color);
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.95), rgba(13, 27, 42, 0.9));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-category {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    min-height: 250px;
}

.product-category:hover {
    transform: translateY(-8px);
    border-color: var(--highlight-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    border: 2px solid var(--highlight-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2rem;
    color: var(--highlight-color);
}

.category-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.category-content p {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.product-category ul li {
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    padding-right: 18px;
    color: var(--text-color);
}

.product-category ul {
    margin: 0;
    padding: 0;
}

.product-category ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    position: absolute;
    right: 0;
    top: 10px;
}

.product-meat {
    background-image:
        linear-gradient(135deg, rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.4)),
        url('4.jpg');
    background-size: cover;
    background-position: center;
}

.product-livestock {
    background-image:
        linear-gradient(135deg, rgba(27, 38, 59, 0.9), rgba(27, 38, 59, 0.4)),
        url('5.jpg');
    background-size: cover;
    background-position: center;
}

.product-food {
    background-image:
        linear-gradient(135deg, rgba(27, 38, 59, 0.85), rgba(13, 27, 42, 0.45)),
        url('6.jpg');
    background-size: cover;
    background-position: center;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--primary-color);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--highlight-color);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-weight: 900;
}

.lang-switch {
    margin-right: 20px;
    padding: 10px 18px;
    border: 2px solid var(--highlight-color);
    background: transparent;
    color: var(--text-color);
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 5px solid var(--highlight-color);
}

.footer p {
    margin-bottom: 15px;
    font-weight: 700;
}

.socials a {
    color: var(--text-color);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.ltr-text {
    direction: ltr;
    unicode-bidi: bidi-override;
    text-align: left;
    display: inline-block;
    color: var(--accent-color);
}

.ltr-text:hover {
    color: var(--highlight-color);
}

.socials a:hover {
    color: var(--highlight-color);
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .header {
        left: 0;
        right: 0;
    }

    .header .container {
        padding: 0 15px;
        justify-content: space-between;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding-top: 100px;
        width: 100%;
    }

    .section {
        width: 100%;
    }

    .logo {
        gap: 8px;
        font-size: 1.1rem;
    }

    .logo span {
        display: block;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .navbar {
        gap: 0;
        justify-content: flex-end;
        flex: unset;
    }

    .lang-switch {
        display: none;
    }

    .burger {
        display: block;
    }

    .burger div {
        width: 25px;
        height: 3px;
        margin: 5px;
    }

    .nav-links {
        flex: unset;
        position: fixed;
        left: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in;
        padding-top: 30px;
        border-right: 2px solid var(--highlight-color);
        z-index: 1001;
    }

    .nav-logo-mobile,
    .nav-lang-mobile {
        display: block;
    }

    .nav-logo-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--highlight-color);
        width: 80%;
    }

    .nav-logo-mobile img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .nav-logo-mobile span {
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--text-color);
    }

    .nav-lang-mobile {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid var(--highlight-color);
        width: 80%;
        text-align: center;
    }

    .lang-switch-mobile {
        background-color: var(--highlight-color);
        color: var(--primary-color);
        border: none;
        padding: 10px 25px;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 5px;
        cursor: pointer;
        font-family: var(--font-main);
        transition: all 0.3s ease;
    }

    .lang-switch-mobile:hover {
        background-color: var(--text-color);
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-active {
        transform: translateX(0%) !important;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* How We Work Section */
.how-we-work {
    background-color: var(--primary-color);
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-item {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border: 2px solid var(--highlight-color);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background-color: var(--highlight-color);
}

.process-item:hover .process-details h3,
.process-item:hover .process-details p {
    color: var(--primary-color);
}

.process-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    border: 3px solid var(--primary-color);
}

.process-details {
    margin-top: 20px;
}

.process-details i {
    font-size: 3.5rem;
    color: var(--highlight-color);
    margin-bottom: 25px;
}

.process-item:hover .process-details i {
    color: var(--primary-color);
}

.process-details h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-color);
}

.process-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--accent-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    left: auto;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        left: auto;
        font-size: 25px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}