html{
    overflow-x: hidden; /* لمنع التمرير الأفقي */
    margin: 0; /* تأكد من عدم وجود هوامش */
    padding: 0; /* تأكد من عدم وجود حشو زائد */
}
body {
    direction: ltr; /* Support for English text direction */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Arial, sans-serif;
}

body[dir="ltr"] .navbar-nav {
     text-align: left; /* Align text to the left in LTR */
}
.dropdown-menu {
    display: none;
}

/* Slider styles */
#mainSlider {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #000;
    color: #FFF;
    overflow: hidden; /* Ensure that images don't overflow the container */
}

/* Fade transition effect between slides */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

#mainSlider .carousel-item {
    height: 500px;
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
}

#mainSlider .carousel-inner {
    height: 100%;
}

#mainSlider .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    padding: 10px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out;
}

#mainSlider .carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    transition: color 0.3s ease-in-out;
    animation: slideInFromRight 1s ease-in-out;
}

#mainSlider .carousel-caption p {
    font-size: 1.5rem;
    color: #FFF;
    transition: color 0.3s ease-in-out;
    animation: slideInFromLeft 1s ease-in-out;
}

#mainSlider .carousel-caption a {
    padding: 10px 20px;
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

#mainSlider .carousel-caption a:hover, 
.carousel-caption a:hover {
    background-color: #FFD700;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.slider-container {
    width: 100%; /* ضمان أن السلايدر لا يتجاوز عرض الشاشة */
    display: flex;
    overflow-x: scroll; /* للسماح بالتمرير الأفقي ضمن السلايدر فقط */
    scroll-behavior: smooth; /* لضمان سلاسة التمرير بين الشرائح */
}
.slider-container img {
    width: 100%; /* اجعل الصور تملأ السلايدر بالكامل دون تجاوز العرض */
    height: auto; /* للحفاظ على التناسب الطبيعي للصور */
    object-fit: cover; /* لملء حاوية الصورة مع الحفاظ على تناسب الصورة */
}
.slider-container > div {
    min-width: 100%; /* لضمان أن كل شريحة تغطي كامل الشاشة */
    flex-shrink: 0; /* لمنع تصغير حجم الشرائح */
}

/* تأثيرات Hover للنصوص والأزرار */
.carousel-caption h5:hover, .carousel-caption p:hover {
    color: #FFD700;
}

.thumbnails {
    display: flex; /* ترتيب المصغرات أفقياً */
    overflow-x: auto; /* تفعيل التمرير الأفقي فقط عند الحاجة */
    white-space: nowrap; /* منع انتقال المصغرات إلى سطر جديد */
    scroll-behavior: smooth; /* تفعيل التمرير السلس */
    padding: 10px 0; /* إضافة مسافة من الأعلى والأسفل */
    justify-content: center;
    align-items: center;
    -ms-overflow-style: none;  /* لإخفاء شريط التمرير في إنترنت إكسبلورر */
    scrollbar-width: none;  /* لإخفاء شريط التمرير في فايرفوكس */
}
.thumbnails::-webkit-scrollbar {
    display: none;  /* لإخفاء شريط التمرير في المتصفحات المبنية على WebKit */
}

.thumbnails img {
    width: 100px; /* عرض كل صورة مصغرة */
    height: 70px; /* ارتفاع كل صورة مصغرة */
    margin: 0 5px; /* المسافة بين المصغرات */
    cursor: pointer;
    border: 2px solid transparent; /* إزالة الحدود الافتراضية */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.thumbnails img:hover {
    transform: scale(1.2); /* تكبير المصغرة عند التمرير عليها */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* إضافة ظل عند التمرير */
}

.thumbnails img.active {
    border-color: #FFD700; /* تغيير لون الحدود للصورة الفعالة */
}


/* Text animation effects */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    #mainSlider .carousel-caption h5 {
        font-size: 1.5rem; /* تغيير حجم الخط */
        color: #FFD700; /* تغيير اللون */
        font-weight: normal; /* تغيير سمك الخط */
    }
}

        /* Our Story Section */
        #our-story {
            background-color: #fff;
            color: #000;
            position: relative;
            overflow: hidden;
        }

        #our-story h2 {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            color: #000;
            margin-bottom: 50px;
            position: relative;
            letter-spacing: 1.5px;
        }

        #our-story h2::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background-color: #FFD700;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        #our-story .story-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 55px;
            text-align: justify;
        }

        /* Image styling */
        .story-image {
            background-size: cover;
            background-position: center;
            height: 450px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .story-image:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            #our-story h2 {
                font-size: 2rem;
            }

            .story-image {
                height: 350px;
            }

            .story-content p {
                font-size: 1.1rem;
            }
        }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.5);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .btn-primary:hover {
        background-color: #000;
        color: #FFD700;
        transform: scale(1.05);
        transition: all 0.3s ease-in-out;
    }

/* تنسيق قسم الخدمات */
#our-services {
    padding: 0px 0;
    background-color: #f4f4f4;
}

#our-services h2 {
    color: #000;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}
#our-services h2 {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}
#our-services h2::after {
    content: '';
    position: absolute;
    width: 120px; /* طول الخط */
    height: 4px; /* سمك الخط */
    background-color: #FFD700; /* اللون الأصفر */
    bottom: -10px; /* المسافة بين العنوان والخط */
    left: 50%; /* محاذاة الخط في المنتصف */
    transform: translateX(-50%);
}
.service-box {
    background-color: #fff;
    border: 2px solid #FFD700;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
    height: 600px; /* تعيين ارتفاع ثابت للصناديق */
    max-height: 100%; /* تأكد من عدم تجاوز الارتفاع */
    box-sizing: border-box; /* ضمان احتساب الحواف ضمن الحجم */
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-box h4 {
    color: #000;
    font-weight: bold;
}

.service-box p {
    flex-grow: 1; /* إجبار النص على ملء المساحة المتبقية */
    font-size: 1rem;
    color: #333;
    text-align: center;
}

.service-box img {
    width: 100%; /* اجعل الصورة تأخذ العرض الكامل للبطاقة */
    height: 300px; /* اجعل الارتفاع يتناسب تلقائيًا مع العرض */
    max-width: 300px; /* ضبط الحد الأقصى لعرض الصورة */
    margin: 0 auto; /* محاذاة الصورة في المنتصف */
    display: block;
    border-radius: 10px; /* إضافة زوايا مستديرة للصورة */
}


.service-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700; /* اللون الأساسي للزر */
    color: #000; /* لون النص */
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 15px; /* إضافة مسافة فوق الزر */
}

.service-box a:hover {
    background-color: #000; /* تغيير لون الخلفية عند التمرير */
    color: #FFD700; /* تغيير لون النص عند التمرير */
    transform: scale(1.05); /* تكبير الزر قليلاً عند التمرير */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* إضافة ظل عند التمرير */
}
        /* تحسين البطاقة على الأجهزة الصغيرة */
@media (max-width: 576px) {
    /* تحسين عرض الصور داخل البطاقة */
    .service-box img {
        max-width: 100%; /* اجعل الصور تأخذ العرض الكامل للبطاقة */
        height: 300px; /* تأكد من الحفاظ على نسبة العرض إلى الارتفاع */
        margin-bottom: 15px; /* إضافة مسافة بين الصورة والمحتوى النصي */
    }

    /* تحسين تصميم البطاقة بشكل عام */
    .service-box {
        padding: 15px; /* تقليل الحواف الداخلية قليلاً لتوفير مساحة على الشاشة */
        margin-bottom: 20px; /* إضافة مسافة بين البطاقات لضمان توزيع جيد */
        border-radius: 8px; /* زوايا أكثر سلاسة قليلاً */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* تقليل الظل على البطاقات الصغيرة */
    }

    /* تحسين عرض النصوص داخل البطاقة */
    .service-box h4 {
        font-size: 1.2rem; /* تقليل حجم العنوان لتناسب الشاشة الصغيرة */
        margin-bottom: 10px; /* تقليل المسافة بين العنوان والمحتوى النصي */
    }

    .service-box p {
        font-size: 1rem; /* تقليل حجم النص داخل البطاقة */
        line-height: 1.4; /* تحسين قراءة النص */
    }

    /* تحسين تصميم الأزرار */
    .service-box a {
        padding: 8px 16px; /* تقليل حجم الأزرار قليلاً */
        font-size: 0.9rem; /* تقليل حجم النص داخل الأزرار */
        border-radius: 5px; /* تقليل زوايا الأزرار */
        margin-top: 10px; /* تقليل المسافة فوق الأزرار */
    }

    /* تحسين التخطيط في الأعمدة */
    .service-box {
        display: block; /* تأكد من أن البطاقات تتكدس بشكل عمودي على الشاشات الصغيرة */
    }
}

/* تحسين البطاقة على الأجهزة المتوسطة */
@media (min-width: 577px) and (max-width: 768px) {
    .service-box img {
        max-width: 90%; /* اجعل الصور أصغر قليلاً على الأجهزة المتوسطة */
        height: 300px;
    }

    .service-box {
        padding: 20px;
        margin-bottom: 25px;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    .service-box h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-box p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .service-box a {
        padding: 9px 18px;
        font-size: 1rem;
        border-radius: 6px;
        margin-top: 12px;
    }
}
/* Text above the image inside the card */
.service-box .service-title {
    position: relative;
    top: -10px;
    background-color: #FFD700;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

       /* Brochure section styling */
       #brochure-section {
        background-color: #f8f8f8; /* Soft white for elegance */
        padding: 0px 0;
        text-align: center;
        color: #000;
        position: relative;
        z-index: 1;
    }

    /* Section title */
    #brochure-section h2 {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #000; /* Black */
        margin-bottom: 30px;
        letter-spacing: 2px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
        animation: fadeInDown 1s ease-in-out; /* Fade-in effect */
    }

    /* Section paragraph */
    #brochure-section p {
        font-size: 1.4rem;
        margin-bottom: 40px;
        line-height: 1.8;
        max-width: 700px;
        margin: 0 auto 40px;
        color: #333; /* Darker text for readability */
        animation: fadeInUp 1s ease-in-out; /* Fade-in effect */
    }

    /* Download button styling */
    .download-btn {
        padding: 18px 45px;
        background-color: #FFD700;
        color: #000;
        font-size: 1.3rem;
        font-weight: bold;
        text-transform: uppercase;
        border-radius: 50px;
        transition: all 0.4s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 1s ease-in-out 0.2s; /* Slight delay on button appearance */
    }

    .download-btn i {
        margin-right: 10px;
    }

    .download-btn:hover {
        background-color: #000;
        color: #FFD700;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        transform: scale(1.08); /* Slight scale effect */
    }

    /* Optional animated arrow */
    .download-btn .arrow {
        display: inline-block;
        transition: all 0.3s ease;
    }

    .download-btn:hover .arrow {
        transform: translateX(5px);
    }

    /* Optional decorative lines */
    .decorative-lines {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        animation: fadeInUp 1s ease-in-out 0.4s; /* Slight delay */
    }

    .decorative-lines div {
        width: 50px;
        height: 4px;
        background-color: #FFD700;
        margin: 0 5px;
    }

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

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive design */
    @media (max-width: 768px) {
        #brochure-section h2 {
            font-size: 2rem;
        }

        #brochure-section p {
            font-size: 1.2rem;
            max-width: 90%;
        }

        .download-btn {
            padding: 15px 30px;
            font-size: 1.1rem;
        }
        #mainSlider .carousel-caption p {
            font-size: 1.2rem;
            color: #FFF;
            transition: color 0.3s ease-in-out;
            animation: slideInFromLeft 1s ease-in-out;
        }
    }

    .container {
        width: 90%;
        margin: 0 auto;
        padding: 40px 0;
        text-align: center;
    }

    h2 {
        font-size: 2rem;
        color: #000;
        font-weight: 700;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    .locations-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0;
        list-style: none;
    }

    .locations-list li {
        background-color: #f9f9f9;
        padding: 30px;
        border-radius: 15px;
        border: 2px solid #FFD700;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 25px 2px 28px 46px;
    }

    .locations-list li:hover {
        background-color: #FFD700;
        color: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .location-title {
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #000;
    }

    .location-title:hover {
        color: #fff;
    }

    .location-arrow {
        font-size: 1.8rem;
        color: #FFD700;
        transition: all 0.3s ease;
    }

    .locations-list li:hover .location-arrow {
        transform: translateX(10px);
        color: #fff;
    }

    /* استخدام الصورة PNG في :before */
    .locations-list li:before {
        left: 20px; /* تأكد من أن الصورة تبقى بعيداً عن النص */
        content: '';
        position: absolute;
        left: 4px;
        width: 30px;
        height: 40px;
        background-image: url('Images/google_maps_icon.png'); /* تأكد من أن المسار صحيح للصورة */
        background-size: contain; /* احتواء الصورة */
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .locations-list li:hover:before {
        opacity: 1;
    }

    /* Modal Styling */
    .modal {
        display: none;
        position: fixed;
        z-index: 100;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 2px solid #FFD700;
        border-radius: 15px;
        width: 80%;
        max-width: 600px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .modal-header h3 {
        margin: 0;
        font-size: 1.8rem;
        color: #FFD700;
    }

    .modal-body p {
        font-size: 1rem;
        line-height: 1.5;
        color: #333;
    }

    .close-btn {
        color: #FFD700;
        float: right;
        font-size: 1.5rem;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
    section#combined-section {
        direction: rtl;
    }
    
    
    /* Responsive design */
    @media (max-width: 768px) {
        h2 {
            font-size: 2rem;
        }
        .locations-list {
            grid-template-columns: 1fr;
        }
    }
     /* new */
     #combined-section .container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }
    .locations-content h2 {
        position: relative;
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .locations-content h2::after {
        content: '';
        position: absolute;
        width: 120px; /* عرض الخط */
        height: 4px; /* سمك الخط */
        background-color: #FFD700; /* اللون الأصفر */
        bottom: -10px; /* المسافة بين العنوان والخط */
        left: 50%; /* محاذاة الخط في المنتصف */
        transform: translateX(-50%);
    }
    .brochure-content h2 {
        position: relative;
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .brochure-content h2::after {
        content: '';
        position: absolute;
        width: 120px; /* عرض الخط */
        height: 4px; /* سمك الخط */
        background-color: #FFD700; /* اللون الأصفر */
        bottom: -10px; /* المسافة بين العنوان والخط */
        left: 50%; /* محاذاة الخط في المنتصف */
        transform: translateX(-50%);
    }
    
    #combined-section .locations-content,
    #combined-section .brochure-content {
        width: 48%; /* عرض كل جزء بحيث يأخذ نصف المساحة تقريباً */
        flex: 1; /* للسماح لكل قسم بأخذ مساحة متساوية */
    }
    
    @media (max-width: 768px) {
        #combined-section .container {
            flex-direction: column;
            align-items: center;
        }
    
        #combined-section .locations-content,
        #combined-section .brochure-content {
            width: 100%; /* عرض كامل على الشاشات الصغيرة */
            text-align: center;
        }
    }
/* تصغير حجم الموقع */
.location-title {
    font-size: 1rem; /* تصغير حجم الخط */
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    width: 100%; /* عرض كل عنوان بحيث يكون بجانب الآخر */
    display: inline-block;
    margin-bottom: 10px; /* إضافة مسافة صغيرة بين الأسطر */
}

.locations-list {
    display: flex;
    flex-wrap: wrap; /* تفعيل التفاف العناصر عند الحاجة */
    gap: 10px; /* مسافة بين العناصر */
    padding: 0;
    list-style: none;
}

.locations-list li {
    width: 49%; /* عرض كل عنصر ليأخذ نصف العرض */
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.locations-list li:hover {
    background-color: #FFD700;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .locations-list li {
        width: 100%; /* عرض كامل لكل عنصر على الشاشات الصغيرة */
    }
    .separator-line {
       display: none; /* إخفاء الخط الفاصل على الأجهزة الصغيرة */
}
}
.brochure-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #333; /* Darker text for readability */
    animation: fadeInUp 1s ease-in-out; /* Fade-in effect */
}
.separator-line {
    width: 3px; /* عرض أكبر مؤقت */
    height: 400px; /* ارتفاع مؤقت */
    background-color:#FFD700; /* لون واضح للتأكد من الظهور */
    margin: 0 5px;
}
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 21px;
    padding: 15px;
    border-radius: 48%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* WhatsApp Chat Box */
.whatsapp-chat-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 270px;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease-in-out;
    transform-origin: bottom right;
    overflow: hidden;
}

.whatsapp-chat-box.open {
    display: block;
    animation: fadeInUp 0.4s;
}

@keyframes fadeInUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Header */
.whatsapp-chat-header {
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.whatsapp-chat-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Body */
.whatsapp-chat-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
}

.welcome-message {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.response-time {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

/* Company Section */
.whatsapp-company {
    margin-top: 12px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.whatsapp-company:hover {
    background-color: #e9e9e9;
}

.whatsapp-company strong {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
}

.whatsapp-contact-link {
    display: inline-block;
    width: 100%;
    padding: 5px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-contact-link:hover {
    background-color: #1ebe5a;
}