
        :root {
            --primary: #ff6b35;
            --secondary: #004e89;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --success: #28a745;
            --danger: #dc3545;
            --gray: #6c757d;
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --bg-color: #f8f9fa;
            --text-color: #333;
            --card-bg: #ffffff;
            --header-bg: #1a1a1a;
            --footer-bg: #1a1a1a;
            --input-text-color: #333;
            --input-placeholder-color: #6c757d;
        }

        .dark-mode {
            --bg-color: #1a1a1a;
            --text-color: #f8f9fa;
            --card-bg: #2d2d2d;
            --header-bg: #121212;
            --footer-bg: #121212;
            --border: #444;
            --input-text-color: #f8f9fa;
            --input-placeholder-color: #bbb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            scroll-behavior: smooth;
            line-height: 1.6;
            transition: var(--transition);
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }

        /* تحسينات للعناصر القابلة للنقر */
        button,
        a,
        input[type="submit"],
        .product-card,
        .cta-btn,
        .submit-btn {
            min-height: 44px;
            min-width: 44px;
        }

        header {
            background-color: var(--header-bg);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .scrolled {
            padding: 0.8rem 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo h1 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo i {
            color: var(--primary);
            font-size: 1.8rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
        }

        nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0.8rem;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

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

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

        nav a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 0.8rem;
            margin-right: 1rem;
        }

        .nav-icons a {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-icons a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .cart-count {
            background: var(--primary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -5px;
            right: 5px;
        }

        .dark-mode-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark-mode-toggle:hover {
            color: var(--primary);
            transform: rotate(20deg);
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpeg') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            padding: 4rem 1rem;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }

        .hero h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            padding: 0 1rem;
        }

        .cta-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 1rem;
            transition: var(--transition);
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--primary);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            min-width: 180px;
        }

        .cta-btn:hover {
            background-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .cta-btn i {
            transition: var(--transition);
        }

        .cta-btn:hover i {
            transform: translateX(5px);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding: 0 1rem;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--text-color);
            display: inline-block;
            padding-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .products-section {
            padding: 3rem 1rem;
            background-color: var(--bg-color);
        }

        .search-container {
            max-width: 1200px;
            margin: 0 auto 3rem;
            padding: 0 1rem;
        }

        .search-bar {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            max-width: 800px;
            margin: 0 auto;
        }

        .search-bar input,
        .search-bar select {
            width: 100%;
            max-width: 300px;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            border-radius: 50px;
            border: 1px solid var(--border);
            transition: var(--transition);
            background-color: var(--card-bg);
            color: var(--text-color);
            font-size: 16px;
        }

        .search-bar input:focus,
        .search-bar select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 10;
        }

        .product-img {
            width: 100%;
            height: 200px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .product-img img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            min-height: 2.8rem;
        }

        .product-price {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .old-price {
            font-size: 1rem;
            color: var(--gray);
            text-decoration: line-through;
        }

        .product-card button {
            background-color: var(--secondary);
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            margin-top: auto;
        }

        .product-card button:hover {
            background-color: #003a6b;
            transform: translateY(-3px);
        }

        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .load-more {
            display: block;
            margin: 3rem auto 0;
            background-color: var(--card-bg);
            color: var(--secondary);
            padding: 0.8rem 2.5rem;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            min-width: 180px;
        }

        .load-more:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }

        .gallery-section {
            padding: 3rem 1rem;
            background: var(--bg-color);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow);
            background-color: var(--card-bg);
            transition: var(--transition);
            height: 250px;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
        }

        .contact-section {
            padding: 3rem 1rem;
            background-color: var(--bg-color);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-form {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }

        .contact-info {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }

        .contact-info h2 {
            margin-bottom: 1.5rem;
            color: var(--text-color);
            position: relative;
            padding-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .info-icon {
            background: var(--light);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            margin-bottom: 0.3rem;
            color: var(--text-color);
            font-size: 1.1rem;
        }

        .info-content p {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.9;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-size: 0.95rem;
        }

        input,
        textarea,
        select {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Tajawal', sans-serif;
            transition: var(--transition);
            background-color: var(--card-bg);
            color: var(--input-text-color);
            font-size: 16px;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            min-width: 160px;
        }

        .submit-btn:hover {
            background-color: #e55a28;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        footer {
            background-color: var(--footer-bg);
            color: white;
            padding: 3rem 1rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #bbb;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        .login-modal,
        .register-modal,
        .forgot-password-modal {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 1rem;
        }

        .login-modal.active,
        .register-modal.active,
        .forgot-password-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .login-box,
        .register-box,
        .forgot-password-box {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            width: 100%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: var(--transition);
        }

        .login-modal.active .login-box,
        .register-modal.active .register-box,
        .forgot-password-modal.active .forgot-password-box {
            transform: translateY(0);
        }

        .login-box h2,
        .register-box h2,
        .forgot-password-box h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--text-color);
            font-size: 1.5rem;
        }

        .login-box input,
        .register-box input,
        .forgot-password-box input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            margin-bottom: 1.2rem;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            background-color: var(--light);
            color: var(--text-color);
            font-size: 16px;
        }

        .login-box button[type="submit"],
        .register-box button[type="submit"],
        .forgot-password-box button[type="submit"] {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem;
            width: 100%;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 700;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .login-box button[type="submit"]:hover,
        .register-box button[type="submit"]:hover,
        .forgot-password-box button[type="submit"]:hover {
            background-color: #e55a28;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            color: var(--primary);
        }

        .form-footer {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .form-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            z-index: 10000;
            transform: translateX(120%);
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            max-width: 300px;
            font-size: 0.9rem;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background-color: var(--success);
            border-right: 5px solid #218838;
        }

        .notification.error {
            background-color: var(--danger);
            border-right: 5px solid #c82333;
        }

        .notification.info {
            background-color: var(--secondary);
            border-right: 5px solid #003a6b;
        }

        /* تحسينات للتجاوب مع الشاشات الصغيرة */
        @media (max-width: 1200px) {

            .products,
            .gallery {
                max-width: 1000px;
            }
        }

        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.5rem;
            }

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

            .products {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1rem;
            }

            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background-color: var(--header-bg);
                flex-direction: column;
                padding: 2rem 1rem;
                gap: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                transition: right 0.3s ease;
                z-index: 999;
                align-items: flex-start;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav a {
                width: 100%;
                padding: 0.8rem 1rem;
                border-radius: 8px;
                font-size: 1rem;
            }

            nav a:hover {
                background-color: rgba(255, 107, 53, 0.1);
            }

            .nav-icons {
                margin-right: 0;
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 3rem 1rem;
                min-height: 70vh;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .products-section,
            .gallery-section,
            .contact-section {
                padding: 2.5rem 1rem;
            }

            .products {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 1.5rem;
            }

            .product-img {
                height: 180px;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 1.5rem;
            }

            .gallery-item {
                height: 220px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                text-align: right;
            }

            .footer-col:last-child {
                grid-column: 1 / -1;
            }

            .footer-col h3::after {
                right: 0;
            }

            .social-links {
                justify-content: flex-start;
            }
        }

        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.3rem;
            }

            .logo i {
                font-size: 1.5rem;
            }

            .hero {
                min-height: 60vh;
                padding: 2.5rem 1rem;
            }

            .hero h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .cta-btn {
                padding: 0.7rem 1.8rem;
                font-size: 0.95rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .search-bar {
                flex-direction: column;
                align-items: center;
            }

            .search-bar input,
            .search-bar select {
                max-width: 100%;
            }

            .products {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }

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

            .product-card {
                max-width: 100%;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h3::after {
                right: 50%;
                transform: translateX(50%);
            }

            .social-links {
                justify-content: center;
            }

            .footer-links a {
                justify-content: center;
            }

            .login-box,
            .register-box,
            .forgot-password-box {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .products {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .product-img {
                height: 200px;
            }

            .product-info h3 {
                font-size: 1.1rem;
            }

            .current-price {
                font-size: 1.2rem;
            }

            .old-price {
                font-size: 0.9rem;
            }

            .gallery-item {
                height: 200px;
            }

            .contact-form,
            .contact-info {
                padding: 1rem;
            }
        }

        @media (max-width: 360px) {
            .hero h2 {
                font-size: 1.6rem;
            }

            .section-title h2 {
                font-size: 1.4rem;
            }

            .product-info h3 {
                font-size: 1rem;
            }

            .current-price {
                font-size: 1.1rem;
            }

            .logo h1 {
                font-size: 1.2rem;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
