body {
    margin: 0;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    background-color: #161616;
    overflow-x: hidden;
}


.banner {
    position: relative;
    background: url('banner.jpg') no-repeat center center/cover;

    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;

    padding-top: 270px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    margin-top: -121px;
    position: relative;
    z-index: 1;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 0;
}

.banner h1 {
    font-size: 2.5em;
    z-index: 1;
    position: relative;
}

.banner .highlight {
    color: #D6AA79;
}

section {
    padding: 2em;
    text-align: right;
    color: #fff;
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
}


    
h2 {
    text-align: right;
    margin: 20px 0;
    color: #D6AA79;
    font-size: 30px;
    margin-bottom: 1.5em;
}



.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.form {
    margin: 0 auto;
    text-align: right;
    padding-bottom: 10px;
}

.form label {
    display: block;
    margin-bottom: 0.5em;
}
.form input, .form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: #fff;
    outline: none;
    text-align: right;
    font-size: 18px;
}

.form input:focus, .form textarea:focus {
    border-bottom: 2px solid #D6AA79;
}

.form textarea {
    height: 220px;
    resize: vertical;
}








.form button {
    background: #D6AA79;
    color: #000;
    border: none;
    padding: 0.7em 1.5em;
    cursor: pointer;
    display: block;
    margin: 2em auto;
    width: fit-content;
    text-align: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1.2em;
}

.form button:hover {
    background: #fff;
}
.form select {
    width: 103%; /* اجعل العرض يملأ الحاوية بالكامل */
    padding: 0.5em; /* نفس الحشوة للحقول الأخرى */
    margin-bottom: 1em; /* نفس المسافة السفلية للحقول الأخرى */
    border: none; /* إزالة الحدود الافتراضية */
    border-bottom: 2px solid #ddd; /* نفس الخط السفلي */
    background-color: #161616; /* اجعل الخلفية شفافة مثل الحقول الأخرى */
    font-family: 'IBM Plex Sans Arabic', sans-serif; /* نفس الخط */
    color: #fff; /* نفس لون النص */
    outline: none; /* إزالة التركيز الافتراضي */
    text-align: right; /* نفس محاذاة النص */
    font-size: 18px; /* نفس حجم النص */
    box-sizing: border-box; /* لضمان أن الحشوة تدخل ضمن الحساب */
}

.form select:focus {
    border-bottom: 2px solid #D6AA79; /* لون التركيز */
}
@media (max-width: 768px) {
    .swiper-container {
        height: 200px;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    section {
        padding: 1.5em;
    }
}
@media (max-width: 768px) {
    header nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding-left: 60px;
    }


    .tabs.active {
        display: none;
    }

    .form div {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}


@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}
header {
    display: flex;
    justify-content: space-between; /* يوزع العناصر بين طرفي الهيدر */
    align-items: center; /* يحاذي العناصر عموديًا */
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    width: 100%; /* يضمن امتداد الهيدر على عرض الصفحة */
    z-index: 1000;
}
@media (min-width: 768px) {
    .logo {

    }

    }
    .menu-toggle {
        display: none;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5em;
    font-weight: bold;
    color: #D6AA79;
}

nav {
    display: flex;

}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D6AA79;
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mobile-menu a {
    padding: 0.5em 1em;
    border-bottom: 1px solid #444;
    color: #fff;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #D6AA79;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}
.form-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* يسمح بالتغيير في النسخ الصغيرة */
}

.form-left,
.form-right {
    width: 48%;
}

@media (max-width: 767px) {
    .form-left {
        width: 100%;
    }

    .form-right {
        width: 100%;
        order: 1; /* يجعل الرسالة تحت البيانات الأخرى في الموبايل */
    }
}
p {
    text-align: center;
    font-size: 18px;
}

#responseMessage {
    display: none;
    color: #D6AA79;
    margin-top: 1em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.5em;
    z-index: 1000;
}
footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    }

    .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    }

    .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    }



    footer h3 {
    margin-bottom: 10px;
    }

    footer a {
    color: #fff;
    text-decoration: none;
    }

    footer a:hover {
    text-decoration: underline;
    }

    .footer-section a {
        margin: 0 10px; /* إضافة مسافة بين الأيقونات */
        font-size: 24px; /* تغيير حجم الأيقونات */
        color: #fff; /* تغيير اللون حسب الحاجة */
        transition: color 0.3s ease; /* تأثير عند المرور على الأيقونة */
    }
    
    .footer-section a:hover {
        color: #D6AA79; /* تغيير اللون عند المرور على الأيقونة */
    }
    
    .footer-section .social-icons {
        display: flex;
        justify-content: center; /* محاذاة الأيقونات إلى المنتصف */
        align-items: center; /* محاذاة الأيقونات عمودياً */
    }
    .footer-section .logo {
        text-align: center; /* لمحاذاة النص في الوسط */
    }
    
    .footer-section p {
        text-align: center; /* لمحاذاة النص في الوسط */
        margin-top: 10px;   /* إضافة مسافة بين الكلمة "VU" والنص */
        font-size: 16px;    /* تحديد حجم النص */
        color: #fff;        /* اختيار لون النص */
    }
        /* التصميم الافتراضي للفوتر */
    .footer-container {
        display: flex; /* ترتيب الأعمدة بجانب بعضها */
        justify-content: space-between; /* توزيع الأعمدة بالتساوي */
        flex-wrap: wrap; /* السماح بالتفاف الأعمدة إذا لزم الأمر */
        gap: 20px; /* مسافة بين الأعمدة */
        padding-right: 115px;
        padding-left: 115px;
    }

    /* تعديل الفوتر لشاشات الموبايل */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column; /* ترتيب الأعمدة عمودياً */
            align-items: center; /* محاذاة العناصر في الوسط */
            padding-right: 0px;
            padding-left: 0px;
        }

        .footer-section {
            margin-bottom: 20px; /* إضافة مسافة بين كل قسم */
            text-align: center; /* محاذاة النصوص في الوسط */
        }
    }
    
    
    /* تنسيق زر واتساب */
    .whatsapp-icon {
        position: fixed;
        left: 20px; /* مسافة أصغر لتناسب الشاشات الصغيرة */
        bottom: 10px; /* مسافة أصغر لتناسب الشاشات الصغيرة */
        z-index: 1000; /* ضمان ظهور الزر فوق المحتوى */
        font-size: 50px; /* تغيير حجم الأيقونة */
        color: #D6AA79 !important;    }
    
    /* إذا كانت الأيقونة تحتوي على خلفية ملونة أو تأثيرات أخرى */
    .whatsapp-icon i {
        color: #D6AA79 !important; /* لتغيير لون الأيقونة إذا كانت من Font Awesome */
    }

    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border: 2px solid #D6AA79;
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
        background-color: #D6AA79;
    }
    
    .cta-button::before,
    .cta-button::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 0;
        background-color: #000;
        transition: all 0.3s ease;
        color: white;
    }
    
    .cta-button::before {
        top: 0;
        left: 0;
        right: 0;
    }
    
    .cta-button::after {
        bottom: 0;
        right: 0;
        left: 0;
    }
    
    .cta-button:hover {
        color: #000;
    }
    
    .cta-button:hover::before {
        width: 100%;
        right: auto;
    }
    
    .cta-button:hover::after {
        width: 100%;
        left: auto;
    }
    .faq-section {
        max-width: 1140px;
        margin: auto;
    }
    

    
    .faq {

    }
    
    .faq-item {
        border-bottom: 1px solid #ddd;
    }
    
    .question {
        display: flex;
        justify-content: space-between;
        padding: 15px 10px;
        font-weight: bold;
        cursor: pointer;
        font-size: 18px;
    }
    
    .answer {
        display: none;
        padding: 0 10px 15px;
        color: #fff;
        font-size: 16px;
    }
    
    .description {
        margin-top: 20px;
        color: #fff;
        font-size: 14px;
    }
    .works-button-container {
        text-align: center;
        margin-top: 20px;
    }
    .service-button-container {
        margin-top: 20px;
    }    
    .works-button-container .cta-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .service-button-container .cta-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
        
    .works-button-container .cta-button:hover {
        transform: scale(1.05);
    }
.container {

  max-width: 1140px;
  margin: 0 auto;

}



.benefits-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.content-column {
  flex: 1;
  max-width: 40%;

}

.content-column p {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-column h2 {
  font-size: 28px;
  margin: 10px 0 20px;
  font-weight: bold;
}

.content-column .btn {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.content-column .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  transform: scale(1.1);
  transition: transform 0.3s;
}

.content-column .btn:hover::after {
  transform: scale(1);
}

/* Services Column Styling */
.services-column {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item img {
  max-width: 50px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.service-item p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
    align-items: center;
  }

  .content-column,
  .services-column {
    max-width: 100%;
    flex: none;
  }

  .services-column {
    grid-template-columns: 1fr;
  }
}




/* new by bassel */

.about_area_five {
    background: #161616;
    padding: 120px 0 120px;
    max-width: 1140px;;
    width: auto;
    margin: auto;
}

.about_area_five .about_thumb img {
    width: 100%;
    margin-left: -50px;
}

.about_area_five .single_about_box {
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.about_area_five .about_description p {
    font-size: 15px;
    line-height: 26px;
    color: #999999;
    font-weight: 400;
    margin: 0 0 25px;
    text-align: right;
}

.about_area_five .about_icon_list ul li {
    display: block;
    font-size: 15px;
    line-height: 26px;
    color: #999999;
    font-weight: 400;
    margin: 0 0 12px;
    text-align: right;
}

.about_area_five .about_icon_list ul li i {
    display: inline-block;
    font-size: 18px;
    color: #D6AB78;
    margin-right: 5px;
}

.about_area_five .about_button {
    margin-top: 35px;
    text-align: right;
}

.about_area_five .about_button a {
    display: inline-block;
    font-size: 16px;
    background: #D6AA79;
    padding: 11px 29px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
}

.about_area_five .about_button a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

.about_area_five .counter_box {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    background: url(../images/about/about-5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    padding: 38px 28px;
}

.about_area_five .counter-text h1 {
    font-size: 45px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px;
}

.about_area_five .counter-text p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0;
}

.about_area_five .about_button a:hover{
    color: #161616 ;
}

.about_area_five .about_button a:hover::after{
    transform: scale(1);
}

.about_area_five.upper {
    background: inherit;
}

.about_area_five.upper .counter_box {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    background: url(../images/about/about-6.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    padding: 38px 28px;
}

.about_area_five.upper .about_button a:hover{
    color: #fff;
}

.about_area_five.upper .about_button a::after {
    background: #161616;
}
.about_area_five .single_about_box {
    position: relative;
    z-index: 1;
}

.align-items-center {
	align-items: center!important;
}



.row {

	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));

}
img,svg {
	vertical-align: middle;
}
@media (min-width:992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
    .col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}
    
}
.section_title_five .sub_title h4 {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 0;
    text-align: right;
}
.section_title_five .main_title h1 {
    font-size: 42px;
    line-height: 55px;
    color: #ffffff;
    font-weight: 600;
    margin: 15px 0 20px;
    text-align: right;
}
@media (max-width: 768px) {
    .about_area_five {
      padding: 1.5em;
    }
    .about_area_five .single_about_box {
        position: relative;
        z-index: 1;
        padding-top: 20px;
    }
  }

  .service_area_five {

    padding:1.5em ;
    direction: rtl;
    max-width: 1140px;
    width: auto;
    margin: auto;
}

.service_area_five .service-top-button {
    position: relative;
    top: -90px;
}

.service_area_five .service-top-button a {
    display: inline-block;
    font-size: 16px;
    background: #D6AA79;
    padding: 11px 22px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.service_area_five .service-top-button a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}

.service_area_five .single_service_box {
    background: #161616;
    padding: 40px 27px 35px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.service_area_five .single_service_box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #D6AA79;
    opacity: 0.1;
    transform: scale(0);
    transition: .5s;
}

.service_area_five .single_service_box .service_title h3 {
    font-size: 22px;
    line-height: 35px;
    color: #ffffff;
    font-weight: 600;
    margin: 25px 0 9px;
    text-align: right;
}

.service_area_five .single_service_box .service_title p {
    font-size: 15px;
    line-height: 26px;
    color: #999999;
    font-weight: 400;
    margin: 0 0 0;
    text-align: right;
}

.service_area_five .single_service_box .service_number {
    position: absolute;
    top: 45px;
    right: 30px;
}

.service_area_five .single_service_box .service_number h1 {
    font-size: 45px;
    line-height: 26px;
    font-weight: 600;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    color: transparent;
    opacity: 0.1;
    margin: 0 0 0;
    transition: .5s;
}

.service_area_five .single_service_box .service_shap {
    position: absolute;
    top: 24%;
    left: 0;
    right: 0;
    text-align: center;
}

.service_area_five .single_service_box:hover::before{
    transform: scale(1);
    opacity: 0.1;
}

.service_area_five .single_service_box:hover .service_number h1{
    -webkit-text-stroke-color: #D6AA79;
    -webkit-text-stroke-width: 2px;
    opacity: 1;
}

.service_area_five .service-top-button a:hover{
    color: #161616 ;
}

.service_area_five .service-top-button a:hover::after{
    transform: scale(1);
}

.service_area_five.upper {
    background: url(../images/service/service-bg-6.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service_area_five.upper .single_service_box {
    background: #fff;
}

.service_area_five.upper .single_service_box .service_title h3 {
    color: #161616;
}

.service_area_five.upper .single_service_box:hover::before {
    transform: scale(1);
    opacity: 0.2;
}

.service_area_five.upper .single_service_box .service_title p {
    color: #161616;
}

.service_area_five.upper .single_service_box .service_number h1 {
    -webkit-text-stroke-color: #161616;
    -webkit-text-stroke-width: 1px;
    opacity: 0.1;
}

.service_area_five.upper .single_service_box:hover .service_number h1 {
    opacity: 1;
    -webkit-text-stroke-color: #D6AA78;
    -webkit-text-stroke-width: 1px;
}
.contact-button .btn {
    background-color: #D6AA78;
    color: #000;
    padding: 10px 20px;

    text-decoration: none;
    font-size: 16px;

    transition: all 0.3s ease;
}

.contact-button .btn:hover {
    background-color: #fff;
    transform: scale(1);
}


/* تنسيق روابط التنقل */
.navigation a {
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;

    transition: color 0.3s;
}

.navigation a:hover {
    color: #D6AA78;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 340px;
}

.head-btn a {
    display: inline-block;
    font-size: 16px;
    background: #D6AA79;
    padding: 11px 27px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
  }
  .head-btn a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}
.head-btn a:hover{
    color: #161616 ;
}

.head-btn a:hover::after{
    transform: scale(1);
}

.head-btn1 a {
    display: inline-block;
    font-size: 16px;
    background: #D6AA79;
    padding: 11px 27px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-decoration: none;
  }
  .head-btn1 a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}
.head-btn1 a:hover{
    color: #161616 ;
}

.head-btn1 a:hover::after{
    transform: scale(1);
}


.gallery-header {
    text-align: center;
    margin: 50px 0;
}

.gallery-header h1 {
    color: #D6AA79;
    font-size: 2.5rem;
}

.gallery-header p {
    font-size: 1.2rem;
}

.filter-buttons {
    text-align: center; /* توسيط الأزرار أفقيًا */
    padding: 10px; /* مسافة حول الأزرار */
}
.filter-btn {
    margin: 5px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.9rem; /* تصغير حجم الخط */
    padding: 8px 16px; /* تصغير الحواف الداخلية */
    color: #000;
    border: 1px solid #D6AA79;
    background-color: #fff;
    border-radius: 10px; /* تقليل استدارة الزوايا */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: #D6AA79;
    color: #fff;
    box-shadow: 0 6px 10px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.filter-btn:hover {
    color: #fff;
    background-color: #D6AA79;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* استجابة لشاشات الموبايل */
@media (max-width: 768px) {
    .filter-buttons {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* تقليل عرض الأعمدة */
        gap: 5px; /* تقليل المسافات بين الأزرار */
        padding-right: 20px;
    }

    .filter-btn {
        font-size: 0.8rem; /* تصغير النص */
        height: 35px; /* تقليل ارتفاع الأزرار */
    }
}
.portfolio_area_three .section_title {
    text-align: right;
    color: #fff;
    padding: 1.5em;
}

/* Portfolio Nav */
.portfolio_area_three .portfolio_nav {
    margin-bottom: 40px;
}

.portfolio_area_three .portfolio_menu ul {
    text-align: center;
    list-style: none;
}

.portfolio_area_three .portfolio_nav ul li {
    background: #161616;
    font-size: 15px;
    transition: all 0.5s ease 0s;
    cursor: pointer;.portfolio_area_three
    padding: 6px 25px;
    font-weight: 500;
    position: relative;
    margin: 0 3px;
    margin-bottom: 7px;
    display: inline-block;
    border-radius: 5px;
}

.portfolio_area_three .portfolio_menu ul li a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: .5s;
}

.portfolio_area_three .portfolio_menu ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 24px;
    height: 2px;
    width: 0%;
    background: #fff;
    transition: .5s;
}

.portfolio_nav ul li:hover,
.portfolio_nav ul li.current_menu_item {
    color: #fff;
    background: #D9AB7A;
}

.portfolio_area_three .case-study-single-box {
    position: relative;
    z-index: 1;
    transition: .5s;
    margin-bottom: 30px;
}

.portfolio_area_three .case-study-thumb2 img {
    width: 100%;
}

.portfolio_area_three .case-study-content {
    position: absolute;
    background: #161616;
    width: 100%;
    padding: 20px 30px 30px;
    bottom: 15%;
    left: 0%;
    transition: .5s;
    opacity: 0;
}

.portfolio_area_three .portfolio_shape {
    position: absolute;
    right: 22px;
    bottom: 14px;
}

.portfolio_area_three .portfolio_shape img {
    width: 100%;
}

.portfolio_area_three .case-study-content h3 {
    font-size: 22px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 600;
}

.portfolio_area_three .gallery_button a {
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #d8ab7a;
    font-weight: 400;
    text-transform: uppercase;
}

.portfolio_area_three .case-study-content h4 {
    font-size: 16px;
    line-height: 36px;
    color: #d8ab7a;
    font-weight: 500;
    margin: 0 0 0;
    position: relative;
    z-index: 1;
    left: 53px;
}

.portfolio_area_three .case-study-content h4::before {
    position: absolute;
    content: "";
    top: 18px;
    left: -52px;
    height: 2px;
    width: 45px;
    background: #D6AA79;
}

.case-study-single-box:hover .case-study-content {
    left: 0%;
    opacity: 1;
    bottom: 55%;
}

.portfolio_area_three.upper {
    background: inherit;
}

.portfolio_area_three.upper .sections_titles {
    text-align: center;
}

.portfolio_area_three.upper .portfolio_nav ul li {
    background: #F8F8F8;
    color: #161616;
}

.portfolio_area_three.upper .portfolio_nav ul li:hover, .portfolio_nav ul li.current_menu_item {
    color: #fff;
    background: #D9AB7A;
}
@media (max-width: 768px) {
    .navigation {
        display: none; /* إخفاء القائمة افتراضيًا */
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 10px; /* مسافة إضافية بين الشعار والقائمة */

    }

    .navigation.active {
        display: flex; /* عرض القائمة عند النقر */
    }

    .menu-toggle {
        display: block; /* عرض زر القائمة على الشاشات الصغيرة */
    }

    .head-btn1 {
        display: none; /* يمكن إخفاء زر "تواصل معنا" إذا كان في القائمة */
    }
    .header-container {

        gap: 250px; /* إضافة مسافة بين العناصر في الهيدر */
    }
}

