 :root {
            --primary-navy: #1e284a;
            --accent-blue: #2185f0;
            --accent-green: #4dc3eb;
            --accent-purple: #8a2be2;
            --light-gray: #f2f4f7;
            --text-muted: #a0aec0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #ffffff;
            overflow-x: hidden;
            text-align: right;
            line-height: 1.6;
        }

        /* --- الشعار (Logo) --- */
        .logo-container {
            position: relative;
            width: 160px;
            height: 70px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .logo-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
            z-index: 1;
            opacity: 0.1;
            border-radius: 8px;
        }
        .logo-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            z-index: 2;
            pointer-events: none;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
        }

        /* الهيدر - أصغر وأكثر أناقة */
        .site-header {
            background: #fff;
            border-bottom: 1px solid #eef2f7;
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(30, 40, 74, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            padding: 0 5px;
        }

        /* الشعار في اليمين للهيدر */
        .header-logo {
            flex: 0 0 auto;
            margin-left: 10px;
            width: 180px;
            height: 80px;
        }

        /* القائمة في المنتصف - رابط واحد بجانب الآخر */
        .header-nav {
            flex: 1 1 auto;
            display: flex;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-link {
            color: #2d3748 !important;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            background: linear-gradient(135deg, transparent, rgba(33, 133, 240, 0.03));
        }
        .nav-link:hover { 
            color: var(--accent-blue) !important;
            background: linear-gradient(135deg, rgba(33, 133, 240, 0.1), rgba(33, 133, 240, 0.05));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(33, 133, 240, 0.15);
        }
        .nav-link.active {
            color: var(--accent-blue) !important;
            background: linear-gradient(135deg, rgba(33, 133, 240, 0.15), rgba(33, 133, 240, 0.08));
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 18px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1px;
        }
        .nav-link:hover::after {
            width: calc(100% - 36px);
        }

        /* زر إنشاء حساب في اليسار */
        .header-register {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

        .btn-register {
            background: linear-gradient(135deg, var(--primary-navy), #2a3a6e);
            color: white !important;
            border-radius: 25px;
            padding: 10px 35px;
            font-weight: 700;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(30, 40, 74, 0.25);
            position: relative;
            overflow: hidden;
        }
        .btn-register::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        .btn-register:hover {
            background: linear-gradient(135deg, var(--accent-blue), #1a6bc4);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(33, 133, 240, 0.4);
        }
        .btn-register:hover::before {
            left: 100%;
        }

        /* قسم الهيرو */
        .hero-section {
            background: linear-gradient(rgba(30, 40, 74, 0.9), rgba(30, 40, 74, 0.85)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(33, 133, 240, 0.2) 0%, rgba(77, 195, 235, 0.1) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff, var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #e2e8f0;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero {
            padding: 16px 35px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: none;
            cursor: pointer;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            color: white;
            box-shadow: 0 8px 25px rgba(33, 133, 240, 0.4);
        }

        .btn-hero-outline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(33, 133, 240, 0.6);
        }

        /* قسم الخدمات */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-navy);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
            border-radius: 2px;
        }

        .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            border: 1px solid #eef2f7;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent-blue), var(--accent-green));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(33, 133, 240, 0.15);
        }

        .service-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(33, 133, 240, 0.1), rgba(77, 195, 235, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--accent-blue);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            color: white;
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
        }

        .service-description {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: right;
        }

        .service-features li {
            padding: 8px 0;
            color: #475569;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-right: 25px;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li::before {
            content: '▸';
            position: absolute;
            right: 0;
            color: var(--accent-green);
            font-weight: bold;
        }

        /* قسم منصات التواصل */
        .social-media-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-navy), #0f1a36);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .social-media-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
            opacity: 0.1;
        }

        .platform-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .platform-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-10px);
            border-color: var(--accent-green);
        }

        .platform-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(33, 133, 240, 0.2), rgba(77, 195, 235, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
        }

        .platform-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .platform-description {
            color: #cbd5e0;
            line-height: 1.7;
        }

        /* قسم خدماتنا الإبداعية */
        .creative-services-section {
            padding: 100px 0;
            background: white;
        }

        .creative-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 30px;
            background: white;
        }

        .creative-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(33, 133, 240, 0.15);
        }

        .creative-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .creative-image::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }

        .creative-content {
            padding: 25px;
        }

        .creative-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 15px;
        }

        .creative-description {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.7;
        }

        .creative-features {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .creative-feature {
            background: rgba(33, 133, 240, 0.1);
            color: var(--accent-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .btn-creative {
            background: linear-gradient(135deg, var(--primary-navy), #2a3a6e);
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-creative:hover {
            background: linear-gradient(135deg, var(--accent-blue), #1a6bc4);
            transform: translateY(-3px);
        }

        /* قسم الدردشة الذكية */
        .chatbot-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
        }

        .chatbot-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-right: 5px solid var(--accent-blue);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .chatbot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(33, 133, 240, 0.15);
        }

        .chatbot-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
        }

        .chatbot-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
            text-align: center;
        }

        .chatbot-description {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .chatbot-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .chatbot-features li {
            padding: 10px 0;
            color: #64748b;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-right: 25px;
        }

        .chatbot-features li:last-child {
            border-bottom: none;
        }

        .chatbot-features li::before {
            content: '🤖';
            position: absolute;
            right: 0;
        }

        .btn-chatbot {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            color: white;
            border: none;
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-chatbot:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
            transform: translateY(-3px);
        }

        /* --- الفوتر مع خلفية الشعار --- */
        footer {
            background: linear-gradient(135deg, var(--primary-navy), #0f1a36);
            color: white;
            padding: 80px 0 35px;
            position: relative;
            overflow: hidden;
        }

        /* خلفية الشعار للفوتر */
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/logo.svg');
            background-size: 40%;
            background-repeat: no-repeat;
            background-position: center center;
            opacity: 0.05;
            z-index: 0;
            pointer-events: none;
        }

        .footer-logo-box .logo-container {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            width: 200px;
            height: 90px;
        }
        .footer-logo-box .logo-bg {
            opacity: 0.2;
            filter: brightness(0) invert(1);
        }
        .footer-logo-box .logo-top {
            filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
        }
        .footer-text {
            font-size: 15px;
            line-height: 1.9;
            color: #e2e8f0;
            text-align: justify;
            position: relative;
            z-index: 1;
            padding-right: 20px;
            border-right: 3px solid rgba(255,255,255,0.1);
        }

        .footer-nav {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }
        .footer-nav li { 
            margin-bottom: 18px;
            transition: transform 0.3s ease;
        }
        .footer-nav li:hover {
            transform: translateX(-8px);
        }
        .footer-nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 15px;
            border-radius: 25px;
            background: rgba(255,255,255,0.03);
        }
        .footer-nav a::before {
            content: '◀';
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .footer-nav a:hover {
            color: white;
            background: rgba(255,255,255,0.08);
            padding-right: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .footer-nav a:hover::before {
            opacity: 1;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 22px;
            font-size: 15px;
            color: #cbd5e0;
            position: relative;
            z-index: 1;
            padding: 15px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .contact-row:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .contact-row i { 
            color: var(--accent-green);
            width: 25px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        .contact-row:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        .btn-footer-blue {
            background: linear-gradient(135deg, var(--accent-blue), #1a6bc4);
            color: white;
            border: none;
            width: 100%;
            padding: 18px;
            border-radius: 12px;
            margin-bottom: 30px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 6px 20px rgba(33, 133, 240, 0.4);
            overflow: hidden;
        }
        .btn-footer-blue::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        .btn-footer-blue:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 30px rgba(33, 133, 240, 0.6);
            background: linear-gradient(135deg, #1a6bc4, var(--accent-blue));
        }
        .btn-footer-blue:hover::before {
            left: 100%;
        }

        .footer-social-box {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 15px;
            margin-top: 35px;
        }

        .footer-social-box .social-icon-top {
            background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .footer-social-box .social-icon-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        .footer-social-box .social-icon-top:hover {
            background: var(--accent-blue);
            transform: translateY(-5px) scale(1.12);
            border-color: white;
            box-shadow: 0 10px 25px rgba(33, 133, 240, 0.5);
        }
        .footer-social-box .social-icon-top:hover::before {
            left: 100%;
        }

        /* === تحسينات الاستجابة الشاملة === */
        
        /* شريط القائمة للأجهزة الصغيرة */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-navy);
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn:hover {
            color: var(--accent-blue);
            transform: scale(1.1);
        }


        .platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.platform-feature {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


        /* تحسينات الاستجابة */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .header-content {
                flex-wrap: wrap;
                padding: 10px 15px;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 2;
            }
            
            .header-logo {
                order: 1;
                margin-left: 0;
                flex: 1;
            }
            
            .header-nav {
                order: 4;
                width: 100%;
                display: none;
                margin-top: 15px;
            }
            
            .header-nav.active {
                display: block;
                animation: slideDown 0.3s ease;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .nav-links {
                flex-direction: column;
                gap: 10px;
                background: white;
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border: 1px solid #eef2f7;
            }
            
            .nav-link {
                padding: 12px 20px;
                font-size: 15px;
                text-align: center;
                width: 100%;
            }
            
            .header-register {
                order: 3;
            }
            
            .btn-register {
                padding: 8px 25px;
                font-size: 14px;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-section, .social-media-section, .creative-services-section, .chatbot-section {
                padding: 60px 0;
            }
            
            footer::before {
                background-size: 55%;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-hero {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .service-card, .platform-card, .creative-card, .chatbot-card {
                padding: 25px 20px;
            }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }