<style>
    /* تنسيقات عامة */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* استيراد الخط بشكل صحيح */
    @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;500;700;900&display=swap');
    
    body {
        font-family: 'Tajawal', sans-serif;
        background: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* قسم إطلاق الأسواق */
    .market-launch {
        text-align: right;
        padding: 50px 0;
        position: relative;
    }

    .market-launch h1 {
        font-family: 'Tajawal', sans-serif;
        font-size: 3.5em;
        color: #212121;
        font-weight: 900;
        overflow: hidden;
        white-space: nowrap;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 20%;
        margin-top: 10px;
        transform: translateY(-50%);
        border-left: 6px solid #f8768f;
        width: 0;
        animation: typing-erasing 3s steps(12, end) infinite;
    }

    .market-launch h1::before {
        content: '*';
        color: #e91e63;
        font-size: 50px;
        margin-left: 20px;
    }

    @keyframes typing-erasing {
        0% {
            width: 0;
        }
        50% {
            width: 100%;
        }
        75% {
            width: 100%;
        }
        100% {
            width: 0;
        }
    }

    .market-launch p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1em;
        color: #555;
        margin: 0%;
        margin-top: 30%;
        margin-bottom: 20px;
    }

    .market-launch .contact-btn {
        font-family: 'Tajawal', sans-serif;
        background: #e91e63;
        color: white;
        padding: 12px 35px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 1.2em;
    }

    /* قسم الثقافة */
    .culture-section {
        background: #ffffff;
        padding: 50px 0;
        text-align: center;
    }

    .culture-section h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2em;
        color: #212121;
    }

    .culture-section p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1em;
        color: #555;
        margin: 20px 0;
    }

    /* قسم المدونة */
    .blog-section {
        background: #ffffff;
        color: white;
        padding: 50px 0;
        text-align: center;
    }

    .blog-section h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2em;
        color: white;
    }

    .blog-card {
        font-family: 'Tajawal', sans-serif;
        background: rgba(255,255,255,0.1);
        padding: 20px;
        border-radius: 10px;
        margin: 20px auto;
        max-width: 600px;
    }

    .blog-card h3 {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.5em;
        margin-bottom: 10px;
        color: #212121;
    }

    .blog-card p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1em;
        color: #ddd;
    }

    .blog-card .date {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.9em;
        color: #bbb;
    }

    /* قسم إدارة المنتج */
    .product-management {
        padding: 50px 0;
        text-align: center;
    }

    .product-management h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2em;
        color: #212121;
    }

    .product-management p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1em;
        color: #555;
        margin: 20px 0;
    }

    .product-management .contact-btn {
        font-family: 'Tajawal', sans-serif;
        background: #e91e63;
        color: white;
        padding: 12px 35px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 1.2em;
    }

    /* قسم CEO */
    .ceo-section {
        padding: 50px 0;
        background-color: #fafafa;
        text-align: center;
        border-radius: 25px;
    }

    .ceo-section h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2.5em;
        color: #212121;
    }

    .ceo-section p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.2em;
        color: #555;
        margin: 20px 0;
    }

    /* قسم الخدمات */
    .services-section {
        padding: 50px 0;
        text-align: center;
    }

    .services-section h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2em;
        color: #212121;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .service-card {
        font-family: 'Tajawal', sans-serif;
        background: white;
        padding: 25px;
        border-radius: 25px;
        border: 1px solid #EEEEEE;
        box-shadow: 0 0px 0px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 1px;
    }

    .service-card h3 {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.5em;
        color: #212121;
        margin-bottom: 10px;
    }

    .service-card p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1em;
        color: #555;
    }

    /* قسم الشهادات */
    .testimonial-section {
        padding: 50px 0;
        text-align: center;
    }

    .testimonial-section h2 {
        font-family: 'Tajawal', sans-serif;
        font-size: 2em;
        color: #212121;
    }

    .testimonial-slider {
        position: relative;
        overflow: hidden;
        margin: 40px 0;
        height: 300px;
    }

    .testimonial {
        font-family: 'Tajawal', sans-serif;
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 0px 0px rgba(0,0,0,0.1);
        margin: 40px 0;
        position: absolute;
        width: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .testimonial.active {
        opacity: 1;
    }

    .testimonial q {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.2em;
        color: #555;
        display: block;
        margin-bottom: 20px;
    }

    .testimonial p {
        font-family: 'Tajawal', sans-serif;
        font-size: 1em;
        color: #333;
    }

    .slider-controls {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .slider-controls button {
        font-family: 'Tajawal', sans-serif;
        background: none;
        color: #EEEEEE;
        border: none;
        padding: 15px 15px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5em;
        transition: background 0.3s;
        margin-light: 15px;
    }

    .slider-controls button:hover {
        background: #none;
    }





    

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
}

.contact-section h2 {
    font-size: 2.2em;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-section > p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #e91e63;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e91e63, #f8768f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8em;
}

.contact-method h3 {
    font-size: 1.4em;
    color: #212121;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-method p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-link:hover {
    background: #d81b60;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.emergency-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 600;
    transform: rotate(-15deg);
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
}

.availability {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #e91e63, #f8768f);
    border-radius: 15px;
    color: white;
}

.availability h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.availability p {
    font-size: 1.1em;
    opacity: 0.9;
}

.contact-method:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-method:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-method:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثيرات للهواتف */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .contact-section h2 {
        font-size: 1.8em;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
}





    /* التجاوب مع الأجهزة */
    @media (max-width: 768px) {
        h1 {
            font-size: 2em;
        }

        h2 {
            font-size: 1.5em;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .testimonial {
            flex-direction: column;
            text-align: center;
        }
    }

    /* الفوتر */
    footer {
        background-color: none;
        color: 464646;
        padding: 20px 0;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        color: #464646;
        text-decoration: none;
        margin: 0 10px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    /* إضافة تنسيقات جديدة للفooter */
    .social-icons {
        margin: 20px 0;
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .social-icons a {
        color: #757575;
        font-size: 24px;
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #e91e63;
    }

    .designer-credit {
        margin-top: 15px;
        font-size: 0.9em;
    }

    .designer-credit a {
        color: #9E9E9E;
        text-decoration: none;
    }

    .designer-credit a:hover {
        text-decoration: underline;
    }
    
    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    .image-grid img {
        width: 100%;
        height: 200px; /* ارتفاع ثابت للصور */
        object-fit: cover; /* للحفاظ على نسبة العرض إلى الارتفاع */
        border-radius: 25px;
        opacity: 0.4; /* شفافية بنسبة 60% */
        transition: opacity 0.3s ease, transform 0.3s ease; /* تأثيرات التحريك */
    }

    .image-grid img:hover {
        opacity: 1; /* إزالة الشفافية عند التحريك */
        transform: scale(1.20); /* تكبير الصورة قليلاً */
    }

    .image-grid img.active {
        opacity: 1; /* إزالة الشفافية عند التثبيت */
        transform: scale(1.1); /* تكبير الصورة أكثر */
    }
    
   /* تصميم زر الاتصال */
#call-button {
    position: fixed;
    bottom: 25px;
    left: 25px; /* تغيير الموضع إلى اليسار */
    background-color: #e91e63;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    text-decoration: none;
}

/* تصميم أيقونة الهاتف */
.call-icon {
    width: 25px;
    height: 25px;
}
</style>