/* Responsive Breakpoints */
/* Default 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: 450px; /* Default size */
    height: 450px; /* Default size */
    border: 2px solid white; /* Thin white line */
    border-radius: 50%;
    position: absolute;
}

/* 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;
}

/* Orbit Logo Containers */
.orbit-logo {
    position: absolute;
    width: 80px; /* Default size */
    height: 80px; /* Default size */
    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; /* Default size */
    height: 150px; /* Default size */
}

/* Position the Second Logo */
.orbit-logo-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%); /* Center on the orbit */
    width: 150px; /* Default size */
    height: 150px; /* Default size */
}

/* 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 */
}

/* Keyframes for Orbit Rotation */
@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);
    }
}

/* Apply Counterclockwise Rotation in RTL Mode */
body.rtl .orbit-motion {
    animation: orbitRotationReverse 10s linear infinite;
}

/* Responsive Adjustments */

/* For screens up to 1300px */
@media (max-width: 1300px) {
    .orbit-line {
        width: 350px; /* Smaller orbit */
        height: 350px; /* Smaller orbit */
    }

    .orbit-motion {
        width: 350px; /* Smaller motion container */
        height: 350px; /* Smaller motion container */
    }

    .orbit-logo {
        width: 60px; /* Smaller logos */
        height: 60px; /* Smaller logos */
    }

    .orbit-logo-1, .orbit-logo-2 {
        width: 120px; /* Smaller logos */
        height: 120px; /* Smaller logos */
    }
}

/* For screens up to 1100px */
@media (max-width: 1100px) {
    *{
    
        font-size: 12px;

}
    .orbit-line {
        width: 250px; /* Even smaller orbit */
        height: 250px; /* Even smaller orbit */
    }

    .orbit-motion {
        width: 250px; /* Even smaller motion container */
        height: 250px; /* Even smaller motion container */
    }

    .orbit-logo {
        width: 50px; /* Even smaller logos */
        height: 50px; /* Even smaller logos */
    }

    .orbit-logo-1, .orbit-logo-2 {
        width: 100px; /* Even smaller logos */
        height: 100px; /* Even smaller logos */
    }
}

/* For mobile devices (up to 768px) */
@media (max-width: 768px) {
    .partner-orbit {
        position: static; /* Remove absolute positioning */
        transform: none; /* Reset transform */
        display: flex;
        flex-direction: column; /* Stack logos vertically */
        align-items: center;
        gap: 20px; /* Space between logos */
        margin-top: 40px; /* Add margin for spacing */
    }

    .orbit-line, .orbit-motion {
        display: none; /* Hide the orbit and motion */
    }

    .orbit-logo {
        position: static; /* Remove absolute positioning */
        transform: none; /* Reset transform */
        width: 80px; /* Default size for mobile */
        height: 80px; /* Default size for mobile */
    }

    .orbit-logo-1, .orbit-logo-2 {
        width: 100px; /* Default size for mobile */
        height: 100px; /* Default size for mobile */
    }
}
@media (max-width:950px) {
    .orbit-line, .orbit-motion {
        display: none; /* Hide the orbit and motion */
    }
    
}
@media (max-width: 1024px) {
    /* iPad and smaller devices */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .category {
        flex: 0 0 45%; /* Adjust category width for tablets */
    }

    .partner-orbit {
        right: 100px; /* Adjust partner orbit position */
    }
}

@media (max-width: 800px) {
    /* Tablets and smaller devices */
    .hero-content h1 {
        font-size: 2rem;
    }
*{
    
                font-size: 10px;
        
}
    .hero-content p {
        font-size: 0.9rem;
    }

    .category {
        flex: 0 0 100%; /* Full width for mobile */
    }

    .partner-orbit {
        display: none; /* Hide partner orbit on smaller screens */
    }

    .hamburger {
        display: flex; /* Show hamburger menu */
    }

    .nav-links {
        display: none; /* Hide desktop navigation */
    }

    /* Sidebar Navigation */
    .sideMenu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -250px; /* Hide sidebar 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;
        padding-top: 80px; /* Space for the header */
    }

    .sideMenu.active {
        left: 0; /* Bring sidebar into view */
    }
    
    .overlay.active {
        display: block; /* Show overlay */
    }

    .sideMenu .nav-links {
        flex-direction: column;
        padding: 20px;
    }

    .sideMenu .nav-links li {
        margin: 15px 0;
    }

    .sideMenu .nav-links a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        padding: 10px 20px;
        display: block;
        transition: var(--transition);
    }

    .sideMenu .nav-links a:hover, .sideMenu .nav-links a.active {
        color: var(--secondary-color);
    }

    /* 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 */
    }
}

@media (max-width: 480px) {
    /* Mobile devices */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }

    .color-palette {
        bottom: 20px; /* Adjust color palette position */
        right: 20px;
    }

    .color-swatch {
        width: 40px; /* Smaller color swatches */
        height: 40px;
    }
}