/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #f8f9fa;
    --border-color: #ddd;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
/* Fade transition for language switch */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: rgba(159, 255, 210, 0.95);
    color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 90px;
    width: auto;
    margin-right: 10px;
}

.brand {
    display: flex;
    flex-direction: column;
}

.company-name-en, .company-name-ar {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.lang-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px 12px;
    margin-left: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

/* Sky Blue Navigation Bar */
header.sky-blue {
    background-color: #87CEEB;
    color: white;
}

header.sky-blue .nav-links a {
    color: white;
}

header.sky-blue .lang-btn {
    color: white;
    border-color: white;
}

header.sky-blue .hamburger span {
    background-color: white;
}

/* Language Selector Styles */
#language-selector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.language-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.language-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lang-option {
    padding: 12px 30px;
    background-color: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.color-palette {
    display: flex;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    animation: float 3s infinite ease-in-out alternate;
}

.color-swatch:nth-child(2) {
    animation-delay: 0.6s;
}

.color-swatch:nth-child(3) {
    animation-delay: 1.2s;
}

.color-swatch:nth-child(4) {
    animation-delay: 1.8s;
}

.color-swatch:nth-child(5) {
    animation-delay: 2.4s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

/* Products Section */
/* Products Section Background */
.products-section {
    background-color: #f0f0f0; /* Grey background */
    padding: 100px 0;
}

/* Category Cards with Black Border */
.category {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    margin: 0 10px;
    border: 2px solid rgb(232, 228, 228); /* Black border */
}

/* Category Images */
.category-image {
    width: 100%;
    height: 250px; /* Increased height for bigger images */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    border-radius: 10px;
}

/* Slider Buttons */
.slider-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .category {
        flex: 0 0 100%;
    }
}
/* Services Section */
/* Services Section */
.services-section {
    background-color: #c4e1fd;
    padding: 100px 0;
}

.service-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to the title */
}

/* Kurdish Text and Logos Container */
.kurdish-text-logos {
    text-align: center;
}

.kurdish-text-logos p {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Logos Container */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
}

.service-logo {
    width: 100px; /* Adjust logo size as needed */
    height: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
}

/* About Section */
.about-section {
    background-color: #f0f0f0;
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature span {
    font-size: 1rem;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    max-width: 600px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
/* Default LTR styles */
body {
    direction: ltr;
    text-align: left;
}

/* RTL styles for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

/* Ensure specific elements align correctly in RTL */
body.rtl .contact-card,
body.rtl .contact-details,
body.rtl .about-text,
body.rtl .about-features,
body.rtl .feature,
body.rtl .form-group input,
body.rtl .form-group textarea {
    text-align: right;
}
/* Email Link Styles */
.email-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo .brand {
    display: flex;
    flex-direction: column;
}

.follow-us {
    text-align: center;
}

.follow-us h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
}
/* Slider Container */
/* Products Section */
.products-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

/* Slider Container */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* Slider Track */
.product-slider {
    width: 80%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Category Cards */
.category {
    flex: 0 0 30%; /* Each slide takes 25% of the container */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 0 10px;
}

/* Category Images */
.category-image {
    width: 100%;
    height: 250px; /* Increased height for bigger images */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    border-radius: 10px;
}

/* Slider Buttons */
.slider-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .category {
        flex: 0 0 100%;
    }
}
/* Category Images */
.category-image {
    display: flex;
    width: 100%;
    height: 250px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-image img {
    width: 400%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    border-radius: 10px;
}
/* Partner Orbit Design */
/* Partner Orbit Design */
.partner-orbit {
    position: absolute;
    top: 50%;
    right: 200px; /* Default position for English (right side) */
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease; /* Smooth transition */
}

/* Move to the left side in RTL mode (Arabic) */
body.rtl .partner-orbit {
    right: auto; /* Reset right position */
    left: 200px; /* Position on the left side */
}

/* Thin Circular Line (Orbit) */
.orbit-line {
    width: 350px; /* Adjust size as needed */
    height: 350px; /* Adjust size as needed */
    border: 2px solid white; /* Thin white line */
    border-radius: 50%;
    position: absolute;
}

/* Circular Motion Container */
.orbit-motion {
    position: relative;
    width: 350px; /* Same size as the orbit */
    height: 350px; /* Same size as the orbit */
    animation: orbitRotation 10s linear infinite;
}

/* Orbit Logo Containers */
.orbit-logo {
    position: absolute;
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%; /* Circular shape */
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Position the First Logo */
.orbit-logo-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); /* Center on the orbit */
    width: 150px;
    height: 150px;
}

/* Position the Second Logo */
.orbit-logo-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%); /* Center on the orbit */
    width: 150px;
    height: 150px;
}

/* Hover Effect for Orbit Logos */
.orbit-logo:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Orbit Logo Images */
.orbit-logo-img {
    width: 80%; /* Fill the container */
    height: 80%; /* Fill the container */
    object-fit: contain; /* Ensure logos fit nicely */
}
.company-name-enft{
    color: white;
}

/* Keyframes for Orbit Rotation */
@keyframes orbitRotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Keyframes for Orbit Rotation (Clockwise) */
@keyframes orbitRotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Keyframes for Orbit Rotation (Counterclockwise) */
@keyframes orbitRotationReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Circular Motion Container */
.orbit-motion {
    position: relative;
    width: 450px; /* Same size as the orbit */
    height: 450px; /* Same size as the orbit */
    animation: orbitRotation 10s linear infinite;
}

/* Apply Counterclockwise Rotation in RTL Mode */
body.rtl .orbit-motion {
    animation: orbitRotationReverse 10s linear infinite;
}
/* Side Menu Styles */
/* Sidebar Navigation */
/* Sidebar Navigation */
/* Sidebar Navigation */
.sideMenu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px; /* Start off-screen */
    width: 250px;
    height: 100vh;
    background-color: rgba(159, 255, 210, 0.95);
    box-shadow: var(--shadow);
    transition: left 0.3s ease-in-out;
    z-index: 1000; /* Ensure sidebar is above other content */
    padding-top: 80px; /* Space for the header */
    overflow-y: auto; /* Prevent content overflow issues */
}

/* Bring sidebar fully into view */
.sideMenu.active {
    left: 0;
}

/* Ensure navigation links are visible */
.sideMenu .nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
    opacity: 1; /* Ensure links are not transparent */
    transition: opacity 0.3s ease-in-out;
}

/* Ensure list items have spacing */
.sideMenu .nav-links li {
    margin: 15px 0;
}

/* Fix potential color visibility issues */
.sideMenu .nav-links a {
    color: black; /* Ensure contrast */
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease-in-out;
}

/* Change color on hover and active state */
.sideMenu .nav-links a:hover,
.sideMenu .nav-links a.active {
    color: var(--secondary-color);
}

/* Ensure Arabic and English text is displayed properly */
#nav-links-en-sidebar,
#nav-links-ar-sidebar {
    display: block;
}

/* Overlay for Sidebar */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Below sidebar but above other content */
}

.overlay.active {
    display: block; /* Show overlay when sidebar is open */
}
.logonavv{
    padding: 60px;
    padding-bottom: 20px;
    margin-top: -50px;
}