         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Almarai', sans-serif;
        }
        
        :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #ff6b6b;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --ocean-blue: #006994;
            --wave-blue: #0084b5;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            direction: rtl;
        }
        
         /* Top Header Styles */
        .top-header {
            background: var(--secondary);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-info, .social-media {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .contact-item, .social-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-item i, .social-item a {
            color: var(--light);
            transition: var(--transition);
        }
        
        .social-item a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        
        /* Main Header Styles */
        .main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            position: relative;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .nav-menu > li {
            position: relative;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            padding: 12px 15px;
            display: block;
            position: relative;
            transition: var(--transition);
            border-radius: 4px;
        }
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            right: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-menu li a:hover {
            color: var(--primary);
            background: rgba(66, 153, 225, 0.1);
        }
        
        .nav-menu li a:hover:after {
            width: 100%;
        }
        
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown > a::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 5px;
            display: inline-block;
            transition: var(--transition);
        }
        
        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            width: 220px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            padding: 10px 0;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            list-style: none;
        }
        
        .dropdown-menu li a {
            padding: 10px 20px;
            display: block;
            color: var(--dark);
            transition: var(--transition);
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .dropdown-menu li a:hover {
            background: rgba(66, 153, 225, 0.1);
            color: var(--primary);
            padding-right: 25px;
        }
        /* Mobile dropdown positioning fix */
@media (max-width: 991px) {
    .nav-menu {
        position: relative;
        overflow-y: auto;
        max-height: 80vh;
    }
    
    .dropdown {
        position: static !important;
    }
    
    .dropdown-menu {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        max-height: 70vh;
        overflow-y: auto;
        transform: none !important;
        border-radius: 15px 15px 0 0 !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15) !important;
        z-index: 1001;
        padding: 20px;
        background: white;
        display: none !important;
        animation: slideUp 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        animation: slideUp 0.3s ease;
    }
    
    /* Overlay for dropdown */
    .dropdown-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .dropdown.active + .dropdown-overlay {
        display: block;
    }
    
    /* Dropdown close button */
    .dropdown-menu::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
        margin: 0 auto 15px auto;
    }
    
    .dropdown-menu li {
        margin-bottom: 10px;
    }
    
    .dropdown-menu a {
        padding: 12px 15px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: #f5f5f5;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add this to your existing media query for mobile menu */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-menu > li > a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        display: block;
    }
    
    /* Dropdown arrow indicator */
    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        float: left;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
}
        /* Mega Menu Styles */
        .mega-dropdown {
            position: static;
        }
        
        .mega-dropdown > a::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 5px;
            display: inline-block;
            transition: var(--transition);
        }
        
        .mega-dropdown:hover > a::after {
            transform: rotate(180deg);
        }
        
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            display: flex;
            padding: 20px;
            gap: 30px;
        }
        
        .mega-dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mega-menu-column {
            flex: 1;
        }
        
        .mega-menu-column h4 {
            color: var(--primary);
            padding: 10px 0;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
        }
        
        .mega-menu-column ul {
            list-style: none;
        }
        
        .mega-menu-column ul li a {
            padding: 8px 0;
            display: block;
            color: var(--dark);
            transition: var(--transition);
            font-weight: 500;
        }
        
        .mega-menu-column ul li a:hover {
            color: var(--primary);
            padding-right: 10px;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
      /* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
        /* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.product-carousel-item {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.product-carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.product-carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-carousel-arrows {
    opacity: 1;
    pointer-events: all;
}

.product-carousel-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-carousel-arrow:hover {
    background: var(--primary);
    color: white;
}

.product-gallery-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-description {
    color: #777;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    line-height: 1.5;
    max-height: 3em;
    transition: max-height 0.3s ease;
}

.product-description.expanded {
    max-height: 1000px;
}

.product-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), #f8f9fa 80%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.product-description.expanded::after {
    opacity: 0;
}

.details-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #2980b9;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.load-more-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}
        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            opacity: 0;
        }
        
        .feature-card.animated {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: #777;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 40px 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Loading Spinner */
        .spinner {
            width: 40px;
            height: 40px;
            margin: 20px auto;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: none;
        }
        
        .spinner.visible {
            display: block;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .contact-info, .social-media {
                justify-content: center;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 120px;
                right: -100%;
                background: white;
                width: 100%;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                padding: 20px 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid #eee;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .logo-img {
                height: 40px;
            }
        }


                /* Agencies Section */
        .agencies {
            padding: 80px 0;
            background: white;
        }
        
        .agencies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .agency-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .agency-card.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .agency-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .agency-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .agency-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .agency-card:hover .agency-image {
            transform: scale(1.1);
        }
        
        .agency-info {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .agency-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark);
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .agency-info p {
            color: #777;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .agency-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .agency-card:hover .agency-overlay {
            opacity: 1;
        }
        
        .agency-view-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .agency-card:hover .agency-view-btn {
            transform: translateY(0);
        }
        
        /* Agency card animations */
        @keyframes agencyCardAppear {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .agency-card.animated {
            animation: agencyCardAppear 0.6s ease forwards;
        }
        
        /* Stagger animation for agency cards */
        .agencies-grid .agency-card:nth-child(1) { animation-delay: 0.1s; }
        .agencies-grid .agency-card:nth-child(2) { animation-delay: 0.2s; }
        .agencies-grid .agency-card:nth-child(3) { animation-delay: 0.3s; }
        .agencies-grid .agency-card:nth-child(4) { animation-delay: 0.4s; }
        .agencies-grid .agency-card:nth-child(5) { animation-delay: 0.5s; }
        .agencies-grid .agency-card:nth-child(6) { animation-delay: 0.6s; }
        .agencies-grid .agency-card:nth-child(7) { animation-delay: 0.7s; }
        .agencies-grid .agency-card:nth-child(8) { animation-delay: 0.8s; }


                /* Projects Section */
        .projects {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .project-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .project-image-container {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .project-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .project-carousel-inner {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .project-carousel-item {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
        }
        
        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image {
            transform: scale(1.05);
        }
        
        .project-carousel-nav {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .project-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        
        .project-carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .project-carousel-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 15;
        }
        
        .project-card:hover .project-carousel-arrows {
            opacity: 1;
            pointer-events: all;
        }
        
        .project-carousel-arrow {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--dark);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .project-carousel-arrow:hover {
            background: var(--primary);
            color: white;
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            color: white;
            text-align: center;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-overlay h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .project-card:hover .project-overlay h3 {
            transform: translateY(0);
        }
        
        .project-overlay p {
            margin-bottom: 20px;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }
        
        .project-card:hover .project-overlay p {
            transform: translateY(0);
        }
        
        .project-view-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        
        .project-card:hover .project-view-btn {
            transform: translateY(0);
        }
        
        .project-info {
            padding: 20px;
        }
        
        .project-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .project-info p {
            color: #777;
            margin-bottom: 15px;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        
        .project-tag {
            background: var(--primary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Project card animations */
        @keyframes projectCardAppear {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .project-card.animated {
            animation: projectCardAppear 0.6s ease forwards;
        }
        
        /* Stagger animation for project cards */
        .projects-grid .project-card:nth-child(1) { animation-delay: 0.1s; }
        .projects-grid .project-card:nth-child(2) { animation-delay: 0.2s; }
        .projects-grid .project-card:nth-child(3) { animation-delay: 0.3s; }
        .projects-grid .project-card:nth-child(4) { animation-delay: 0.4s; }
        .projects-grid .project-card:nth-child(5) { animation-delay: 0.5s; }
        .projects-grid .project-card:nth-child(6) { animation-delay: 0.6s; }
        .projects-grid .project-card:nth-child(7) { animation-delay: 0.7s; }
        .projects-grid .project-card:nth-child(8) { animation-delay: 0.8s; }
        
        /* Project gallery indicator */
        .project-gallery-indicator {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Responsive adjustments for projects */
        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-image-container {
                height: 200px;
            }
        }


           
        /* Enhanced Certificates Section */
        .certificates {
            padding: 80px 0;
            background: white;
        }
        
        /* Category Selection */
        .category-selection {
            margin-bottom: 50px;
            position: relative;
        }
        
        .categories-scroll-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .categories-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 15px;
            padding: 15px 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) #f1f1f1;
            -ms-overflow-style: none;
        }
        
        .categories-container::-webkit-scrollbar {
            height: 6px;
        }
        
        .categories-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .categories-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        .category-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
            min-width: 160px;
            flex-shrink: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .category-item.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
        }
        
        .category-item h3 {
            font-size: 1rem;
            margin-bottom: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .category-image {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 0 auto 10px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .category-item:hover .category-image {
            transform: scale(1.1);
        }
        
        .scroll-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            z-index: 20;
            transition: all 0.3s ease;
            color: var(--dark);
        }
        
        .scroll-arrow:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .scroll-arrow.left {
            left: 5px;
        }
        
        .scroll-arrow.right {
            right: 5px;
        }
        
        /* Certificates Display */
        .certificates-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .certificate-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .certificate-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .certificate-card:hover {
            transform: translateY(-5px);
        }
        
        .certificate-header {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .certificate-header h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .certificate-header p {
            color: #777;
            font-size: 1.1rem;
        }
        
        /* Certificate Carousel */
        .certificate-carousel {
            position: relative;
            margin: 30px 0;
        }
        
        .carousel-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 20px;
            padding: 10px 0;
            margin: 0 -10px;
        }
        
        .carousel-container::-webkit-scrollbar {
            display: none;
        }
        
        .carousel-item {
            flex: 0 0 auto;
            width: 100%;
            max-width: 400px;
            scroll-snap-align: start;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .carousel-item:hover {
            transform: scale(1.03);
        }
        
        .carousel-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .carousel-dot.active {
            background: var(--primary);
        }
        
        .carousel-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
            padding: 0 20px;
        }
        
        .carousel-arrow {
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            pointer-events: all;
            transition: all 0.3s ease;
            z-index: 10;
            color: var(--dark);
        }
        
        .carousel-arrow:hover {
            background: var(--primary);
            color: white;
        }
        
        .no-certificates {
            text-align: center;
            padding: 40px;
            color: #777;
            font-size: 1.2rem;
        }
        
        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lightbox.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .lightbox.active .lightbox-image {
            transform: scale(1);
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: -40px;
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .lightbox-close:hover {
            background: var(--accent);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            pointer-events: none;
        }
        
        .lightbox-arrow {
            background: var(--dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
            pointer-events: all;
        }
        
        .lightbox-arrow:hover {
            background: var(--primary);
        }
        
        .lightbox-counter {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 15px;
            border-radius: 20px;
        }
        
        /* Load More Button */
        .certificates-load-more {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Certificate card animations */
        @keyframes certificateAppear {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .certificate-card.animated {
            animation: certificateAppear 0.6s ease forwards;
        }
        
        /* Spinner */
        .spinner {
            display: none;
            text-align: center;
            margin: 30px 0;
        }
        
        .spinner.visible {
            display: block;
        }
        
        .spinner::after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive adjustments for certificates */
        @media (max-width: 768px) {
            .categories-scroll-container {
                padding: 0 40px;
            }
            
            .category-item {
                min-width: 140px;
                padding: 12px 15px;
            }
            
            .category-item h3 {
                font-size: 0.9rem;
            }
           
            
            .scroll-arrow {
                width: 35px;
                height: 35px;
            }
            
            .scroll-arrow.left {
                left: 0;
            }
            
            .scroll-arrow.right {
                right: 0;
            }
            
            .carousel-item {
                width: 250px;
            }
            
            .carousel-arrows {
                display: none;
            }
            
            .lightbox-close {
                top: -50px;
                right: 10px;
            }
            
            .lightbox-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .lightbox-counter {
                bottom: -50px;
            }
        }
        
        @media (max-width: 480px) {
            .categories-scroll-container {
                padding: 0 35px;
            }
            
            .category-item {
                min-width: 120px;
                padding: 10px 12px;
            }
            
            .category-image {
                width: 40px;
                height: 40px;
            }
            
            
            .scroll-arrow {
                width: 30px;
                height: 30px;
            }
        }


          /* Footer الجديد مع تحسينات التصميم والرسوم المتحركة */
        footer {
            background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-section {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .footer-section.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .footer-logo {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo img {
            height: 60px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        
        .footer-description {
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50%;
        }
        
        .social-icon:hover::before {
            opacity: 1;
        }
        
        .social-icon i {
            position: relative;
            z-index: 1;
        }
        
        .social-icon:hover {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .footer-heading {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .footer-contact-info {
            list-style: none;
        }
        
        .footer-contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #ccc;
            transition: all 0.3s ease;
        }
        
        .footer-contact-info li:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-contact-info i {
            margin-left: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .footer-contact-info span {
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
        
        .footer-bottom p {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.3s;
        }
        
        .footer-bottom p.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* تأثيرات للعناصر عند الظهور */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* تأثيرات للشبكات الاجتماعية */
        .social-icon:nth-child(1) { transition-delay: 0.1s; }
        .social-icon:nth-child(2) { transition-delay: 0.2s; }
        .social-icon:nth-child(3) { transition-delay: 0.3s; }
        
        /* تأثيرات لعناصر الاتصال */
        .footer-contact-info li:nth-child(1) { transition-delay: 0.1s; }
        .footer-contact-info li:nth-child(2) { transition-delay: 0.2s; }
        .footer-contact-info li:nth-child(3) { transition-delay: 0.3s; }
        .footer-contact-info li:nth-child(4) { transition-delay: 0.4s; }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .footer-heading::after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-contact-info li {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            footer {
                padding: 40px 0 15px;
            }
            
            .footer-logo img {
                height: 50px;
            }
            
            .footer-heading {
                font-size: 1.2rem;
            }
        }



         /* Beautiful Loader Styles */
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s;
        }
        
        #page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 30px;
            animation: pulse 2s infinite ease-in-out;
        }
        
        .loader-content {
            text-align: center;
            color: white;
        }
        
        .loader-spinner {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }
        
        .loader-spinner::before,
        .loader-spinner::after {
            content: '';
            position: absolute;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: rotate 1.8s cubic-bezier(0.65, 0, 0.34, 1) infinite;
        }
        
        .loader-spinner::after {
            border-color: white transparent transparent transparent;
            animation-delay: -0.9s;
        }
        
        .loader-text {
            font-size: 1.2rem;
            margin-top: 20px;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .loader-progress {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--accent);
            border-radius: 4px;
            transition: width 0.4s ease;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.7; }
        }
        
        .loader-waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            overflow: hidden;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
            background-size: 1200px 100px;
            animation: wave 12s linear infinite;
        }
        
        .wave:nth-child(2) {
            animation-delay: -5s;
            animation-duration: 15s;
            opacity: 0.5;
        }
        
        .wave:nth-child(3) {
            animation-delay: -2s;
            animation-duration: 18s;
            opacity: 0.7;
        }
        
        @keyframes wave {
            0% { transform: translateX(0); }
            50% { transform: translateX(-25%); }
            100% { transform: translateX(-50%); }
        }




        
        
        /* About Section Styles */
        .about-company {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f9f9f9 0%, #e6f0f7 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-text:hover {
            transform: translateY(-10px);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .about-text p.highlight {
            background: linear-gradient(90deg, rgba(52, 152, 219, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            padding: 20px;
            border-right: 4px solid var(--accent);
            border-radius: 8px;
            font-weight: 700;
            color: var(--dark);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            padding: 20px;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.3) 0%, rgba(255, 107, 107, 0.3) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .about-image:hover::before {
            opacity: 1;
        }
        
        .founder-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        
        .founder-image {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .founder-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .founder-info {
            flex: 2;
            min-width: 300px;
        }
        
        .founder-info h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .founder-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .founder-info p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .brands-section {
            margin-top: 60px;
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .brand-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .brand-icon {
            width: 60px;
            height: 60px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .brand-card:hover .brand-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .brand-card h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .brand-card p {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Wave Animation */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }
        
        .wave-divider .shape-fill {
            fill: #FFFFFF;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .animated {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        .delay-4 {
            animation-delay: 0.8s;
        }
        
        .delay-5 {
            animation-delay: 1s;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-company {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .about-content, .founder-section {
                flex-direction: column;
            }
            
            .about-text, .about-image, .founder-image, .founder-info {
                min-width: 100%;
            }
            
            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 20px;
            }
        }



         /* تنسيقات قسم الكتالوجات */
        .catalogs {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa 0%, #e6f0f7 100%);
            position: relative;
        }
        
        .catalogs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .catalogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .catalog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .catalog-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .catalog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .catalog-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .catalog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .catalog-card:hover .catalog-image {
            transform: scale(1.1);
        }
        
        .catalog-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .catalog-card:hover .catalog-overlay {
            opacity: 1;
        }
        
        .catalog-view-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .catalog-card:hover .catalog-view-btn {
            transform: translateY(0);
        }
        
        .catalog-info {
            padding: 20px;
        }
        
        .catalog-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark);
            min-height: 60px;
        }
        
        .catalog-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .catalog-download-btn, .catalog-preview-btn {
            flex: 1;
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .catalog-download-btn {
            background: var(--primary);
            color: white;
        }
        
        .catalog-download-btn:hover {
            background: #2980b9;
        }
        
        .catalog-preview-btn {
            background: var(--light);
            color: var(--dark);
        }
        
        .catalog-preview-btn:hover {
            background: #dbe4e8;
        }
        
        .catalog-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        /* نافذة معاينة PDF */
        .pdf-preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .pdf-preview-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }
        
        .pdf-preview-content {
            position: relative;
            width: 90%;
            height: 90%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .pdf-preview-header {
            padding: 15px 20px;
            background: var(--secondary);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .pdf-preview-title {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .pdf-preview-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .pdf-preview-iframe {
            flex: 1;
            width: 100%;
            border: none;
        }
        
        .pdf-preview-footer {
            padding: 10px 20px;
            background: #f1f1f1;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .pdf-download-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .pdf-download-btn:hover {
            background: #2980b9;
        }
        
        /* تأثيرات للعناصر عند الظهور */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .catalog-card.animated {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* تأثيرات متتالية للبطاقات */
        .catalogs-grid .catalog-card:nth-child(1) { animation-delay: 0.1s; }
        .catalogs-grid .catalog-card:nth-child(2) { animation-delay: 0.2s; }
        .catalogs-grid .catalog-card:nth-child(3) { animation-delay: 0.3s; }
        .catalogs-grid .catalog-card:nth-child(4) { animation-delay: 0.4s; }
        .catalogs-grid .catalog-card:nth-child(5) { animation-delay: 0.5s; }
        .catalogs-grid .catalog-card:nth-child(6) { animation-delay: 0.6s; }
        .catalogs-grid .catalog-card:nth-child(7) { animation-delay: 0.7s; }
        .catalogs-grid .catalog-card:nth-child(8) { animation-delay: 0.8s; }
        
        /* تصميم متجاوب */
        @media (max-width: 768px) {
            .catalogs-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .catalog-info h3 {
                font-size: 1.2rem;
                min-height: auto;
            }
            
            .catalog-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .catalogs-grid {
                grid-template-columns: 1fr;
            }
            
            .catalog-image-container {
                height: 180px;
            }
        }



          /* تنسيقات صفحة الاتصال */
        .contact-page {
            padding: 100px 0 80px;
            background: linear-gradient(to bottom, #f8f9fa 0%, #e6f0f7 100%);
            min-height: 100vh;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .contact-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
        }
        
        .contact-card h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .contact-details li:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .contact-details i {
            margin-left: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
            width: 24px;
        }
        
        .contact-details span {
            line-height: 1.6;
            font-size: 1.1rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .contact-form-container {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.3s ease;
        }
        
        .contact-form.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-form:hover {
            transform: translateY(-10px);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e6e6e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: 'Almarai', sans-serif;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1.1rem;
        }
        
        .submit-btn:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .map-container {
            margin-top: 60px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.3s ease;
        }
        
        .map-container.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* تأثيرات للعناصر عند الظهور */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .contact-card.animated {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .contact-form.animated {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .map-container.animated {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* تأثيرات متتالية للبطاقات */
        .contact-card:nth-child(1) { animation-delay: 0.1s; }
        .contact-card:nth-child(2) { animation-delay: 0.2s; }
        .contact-form.animated { animation-delay: 0.3s; }
        .map-container.animated { animation-delay: 0.4s; }
        
        /* تصميم متجاوب */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info, .contact-form-container {
                min-width: 100%;
            }
            
            .contact-card h3 {
                font-size: 1.4rem;
            }
            
            .contact-details span {
                font-size: 1rem;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-page {
                padding: 80px 0 60px;
            }
            
            .contact-card, .contact-form {
                padding: 20px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .map-container {
                height: 250px;
            }
        }




      
        
        /* Spinner */
        .spinner {
            display: none;
            text-align: center;
            padding: 40px 0;
        }
        
        .spinner.visible {
            display: block;
        }
        
        .spinner:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(66, 153, 225, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Load more button */
        .load-more {
            text-align: center;
            margin-top: 50px;
        }
        
        .load-more-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .load-more-btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .load-more-btn.loading {
            opacity: 0.7;
            pointer-events: none;
        }
        
        /* Error message */
        .error-message {
            text-align: center;
            color: #e53e3e;
            padding: 40px 20px;
            grid-column: 1 / -1;
        }
        
        .no-exhibitions {
            text-align: center;
            color: #666;
            padding: 40px 20px;
            grid-column: 1 / -1;
        }
        
        /* Modal for image gallery */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: hidden;
        }
        
        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1010;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
        }
        
        .modal-carousel {
            width: 90%;
            height: 90%;
            position: relative;
        }
        
        .modal-carousel-inner {
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .modal-carousel-item {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-carousel-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .modal-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 1010;
        }
        
        .modal-carousel-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: white;
            font-size: 1.5rem;
        }
        
        .modal-carousel-nav-btn:hover {
            background: rgba(255, 255, 255, 0.7);
            color: var(--dark);
        }
        
        .modal-carousel-controls {
            position: absolute;
            bottom: 20px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            z-index: 1010;
        }
        
        .modal-carousel-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .modal-carousel-control.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .exhibitions-grid {
                grid-template-columns: 1fr;
            }
            
            .exhibition-image-container {
                height: 200px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .modal-carousel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }


        



        /* تطبيق القسم الجديد */
        .app-download {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .app-download::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(66, 153, 225, 0.1) 0%, transparent 70%);
            animation: pulse 8s infinite ease-in-out;
        }
        
        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .app-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .app-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .app-phone {
            max-width: 300px;
            position: relative;
            display: inline-block;
            animation: float 6s infinite ease-in-out;
        }
        
        .app-phone img {
            width: 100%;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
        }
        
        .app-screen {
            position: absolute;
            top: 5.5%;
            left: 7.5%;
            width: 85%;
            height: 89%;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(45deg, #1a365d, #4299e1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .app-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .app-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }
        
        .app-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .app-features {
            margin-bottom: 40px;
        }
        
        .app-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateX(30px);
        }
        
        .app-feature i {
            background: var(--accent);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
        }
        
        .app-download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            background: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .download-btn i {
            font-size: 1.5rem;
            margin-left: 10px;
        }
        
        .download-btn span {
            font-size: 0.8rem;
            display: block;
            line-height: 1.2;
        }
        
        .download-btn strong {
            font-size: 1.1rem;
            display: block;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(5deg); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .app-container {
                flex-direction: column;
                text-align: center;
            }
            
            .app-title::after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .app-feature {
                justify-content: center;
            }
            
            .app-download-buttons {
                justify-content: center;
            }
            
            .app-phone {
                max-width: 250px;
                margin-top: 40px;
            }
        }

        /* Language Switcher Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    position: relative;
}

.language-select {
    background:#2c3e50;
    border: 1px solid #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.language-select:hover {
    background: #2c3e50;
}

.language-select option {
    background: var(--secondary);
    color: white;
}

/* RTL/LTR direction support */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

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

body[dir="ltr"] .dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    margin-right: 0;
}

body[dir="ltr"] .dropdown-menu {
    right: auto;
    left: 0;
}

body[dir="ltr"] .footer-heading::after {
    right: auto;
    left: 0;
}

body[dir="ltr"] .contact-details i,
body[dir="ltr"] .footer-contact-info i {
    margin-left: 0;
    margin-right: 15px;
}

/* Add to your existing CSS */
.form-control.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.1);
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}