@charset "UTF-8";







/* ===================================
   تنسيق صفحة My Account - راقي جداً
   =================================== */

/* متغيرات الألوان */
:root {
    --main: #C9B59C;
    --sec: #C9B59C;
    --main-dark: #B09A7E;
    --main-light: #E5D9C8;
}






:root {
    --main: #C9B59C;
    --sec: #C9B59C;
}

/* Pagination Wrapper */
.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 20px;
}

/* WP PageNavi Container */
.pagination-wrapper .wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* All Pagination Items */
.pagination-wrapper .wp-pagenavi a,
.pagination-wrapper .wp-pagenavi span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 181, 156, 0.45);
    background: #fff;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.pagination-wrapper .wp-pagenavi a:hover {
    background: var(--main);
    color: #fff;
    border-color: var(--main);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(201, 181, 156, 0.45);
}

/* Current Page */
.pagination-wrapper .wp-pagenavi span.current {
    background: var(--main);
    color: #fff;
    border-color: var(--main);
    box-shadow: 0 14px 32px rgba(201, 181, 156, 0.55);
    transform: scale(1.08);
}

/* Next / Previous Buttons */
.pagination-wrapper .wp-pagenavi a.nextpostslink,
.pagination-wrapper .wp-pagenavi a.previouspostslink {
    width: 52px;
    height: 52px;
    font-size: 24px;
    font-weight: 700;
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Next / Previous Hover */
.pagination-wrapper .wp-pagenavi a.nextpostslink:hover,
.pagination-wrapper .wp-pagenavi a.previouspostslink:hover {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

/* Remove default plugin borders if exist */
.wp-pagenavi {
    border: none !important;
}

.wp-pagenavi a,
.wp-pagenavi span {
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile */
@media (max-width: 575px) {
    .pagination-wrapper {
        margin: 35px 0 15px;
    }

    .pagination-wrapper .wp-pagenavi {
        gap: 8px;
    }

    .pagination-wrapper .wp-pagenavi a,
    .pagination-wrapper .wp-pagenavi span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pagination-wrapper .wp-pagenavi a.nextpostslink,
    .pagination-wrapper .wp-pagenavi a.previouspostslink {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }
}























/* الكونتينر الرئيسي */
.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* القائمة الجانبية - Navigation */
.woocommerce-MyAccount-navigation {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-dark) 100%);
    border-radius: 20px;
    padding: 30px 0;
    box-shadow: 0 10px 40px rgba(201, 181, 156, 0.3);
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 8px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.woocommerce-MyAccount-navigation ul li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

.woocommerce-MyAccount-navigation ul li:hover a:before {
    width: 100%;
}

.woocommerce-MyAccount-navigation ul li:hover a {
    color: #fff;
    transform: translateX(5px);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #fff;
    color: var(--main);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-navigation ul li.is-active:hover a {
    transform: translateX(0);
}

/* منطقة المحتوى */
.woocommerce-MyAccount-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

/* العناوين */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--main);
    display: inline-block;
}

/* النماذج والحقول */
.woocommerce-MyAccount-content .woocommerce-form-row {
    margin-bottom: 25px;
}

.woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    outline: none;
    border-color: var(--main);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 181, 156, 0.15);
    transform: translateY(-2px);
}

/* الأزرار */
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content .button,
.woocommerce-button {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-dark) 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 181, 156, 0.4);
    display: inline-block;
    text-decoration: none;
}

.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 181, 156, 0.5);
    background: linear-gradient(135deg, var(--main-dark) 0%, var(--main) 100%);
}

/* جدول الطلبات */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-orders-table thead {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-dark) 100%);
}

.woocommerce-orders-table thead th {
    color: #fff;
    padding: 18px 20px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-orders-table tbody tr {
    background: #fff;
    transition: all 0.3s ease;
}

.woocommerce-orders-table tbody tr:nth-child(even) {
    background: #f7fafc;
}

.woocommerce-orders-table tbody tr:hover {
    background: var(--main-light);
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.woocommerce-orders-table tbody td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 14px;
}

.woocommerce-orders-table tbody td.order-status {
    font-weight: 600;
}

/* حالات الطلبات - ألوان */
.woocommerce-orders-table .order-status mark {
    background: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.woocommerce-orders-table .order-status mark.status-completed {
    background: #10b981;
    color: #fff;
}

.woocommerce-orders-table .order-status mark.status-processing {
    background: #f59e0b;
    color: #fff;
}

.woocommerce-orders-table .order-status mark.status-pending {
    background: #6b7280;
    color: #fff;
}

.woocommerce-orders-table .order-status mark.status-cancelled {
    background: #ef4444;
    color: #fff;
}

/* رسائل التنبيه */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce-message {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.woocommerce-info {
    background: var(--main-light);
    border-color: var(--main);
    color: #5a4a38;
}

.woocommerce-error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

/* Dashboard - لوحة التحكم */
.woocommerce-MyAccount-content > p:first-child {
    background: linear-gradient(135deg, rgba(201, 181, 156, 0.15) 0%, rgba(176, 154, 126, 0.15) 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid var(--main);
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
}

/* Fieldset للباسورد */
.woocommerce-EditAccountForm fieldset {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed #e2e8f0;
    margin: 30px 0;
}

.woocommerce-EditAccountForm fieldset legend {
    background: var(--main);
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* ===================================
   Responsive - الموبايل
   =================================== */

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        padding: 20px 15px;
    }
    
    .woocommerce-MyAccount-navigation {
        border-radius: 15px;
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .woocommerce-MyAccount-navigation ul li {
        margin: 6px 10px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .woocommerce-MyAccount-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .woocommerce-MyAccount-content h2,
    .woocommerce-MyAccount-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .woocommerce-MyAccount-content input,
    .woocommerce-MyAccount-content select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .woocommerce-MyAccount-content button,
    .woocommerce-MyAccount-content .button {
        width: 100%;
        padding: 14px 25px;
        font-size: 14px;
    }
    
    /* جدول الطلبات - Responsive */
    .woocommerce-orders-table {
        font-size: 13px;
    }
    
    .woocommerce-orders-table thead th,
    .woocommerce-orders-table tbody td {
        padding: 12px 10px;
    }
    
    /* إخفاء بعض الأعمدة في الموبايل */
    .woocommerce-orders-table .order-date,
    .woocommerce-orders-table .order-total {
        display: none;
    }
    
    .woocommerce-EditAccountForm fieldset {
        padding: 20px 15px;
        margin: 20px 0;
    }
}

/* تنسيق إضافي لتحسين المظهر */
.woocommerce-MyAccount-content .woocommerce-form-login,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    max-width: 600px;
}

/* تحسين Spacing */
.woocommerce-MyAccount-content > *:last-child {
    margin-bottom: 0;
}

/* تنسيق Links */
.woocommerce-MyAccount-content a:not(.button) {
    color: var(--main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content a:not(.button):hover {
    color: var(--main-dark);
    text-decoration: underline;
}

/* Animation للتحميل */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woocommerce-MyAccount-content {
    animation: fadeIn 0.5s ease;
}























/*Start Search*/
.searchh {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.995);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 0;
  padding: 40px 20px;
}
/* إخفاء الاسم الأول والأخير واسم العرض والبريد الإلكتروني */
.woocommerce-EditAccountForm p.woocommerce-form-row:not(.form-row-phone):not([class*="password"]) {
    display: none !important;
}

/* طريقة بديلة أكثر دقة */
.woocommerce-EditAccountForm .woocommerce-form-row--first,
.woocommerce-EditAccountForm .woocommerce-form-row--last,
.woocommerce-EditAccountForm .form-row:has(#account_display_name),
.woocommerce-EditAccountForm .form-row:has(#account_email) {
    display: none !important;
}

/* التأكد من ظهور رقم التليفون */
.woocommerce-EditAccountForm .form-row:has(#billing_phone),
.woocommerce-EditAccountForm p:has([name="billing_phone"]) {
    display: block !important;
}

/* التأكد من ظهور حقول الباسورد */
.woocommerce-EditAccountForm fieldset,
.woocommerce-EditAccountForm .form-row:has(#password_current),
.woocommerce-EditAccountForm .form-row:has(#password_1),
.woocommerce-EditAccountForm .form-row:has(#password_2) {
    display: block !important;
}

tamara-widget {
    
margin-bottom: 20px;
    display: flex;
}
body.rtl .wc-block-components-radio-control .wc-block-components-radio-control__input{
    left: 16px !important;
    right: unset !important;
}
.searchh.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 99999;
}
.searchh .search-cont {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* active state */
/* container */
/* form */
#searchform {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* input */
#search-input {
  flex: 1;
  padding: 18px 56px 18px;
  /* leave space for icon */
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}
#search-input::placeholder {
  color: #666;
  text-transform: none;
}

/* placeholder */
/* submit button (icon inside input area on the right) */
#search-submit {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  color: var(--sec);
}

/* close button */
.searchh .search-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--main);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* End Search*/
/*start nav*/
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%;
  }
  .nav-list {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    justify-content: center;
  }
  .nav-list > .link {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 5px;
    background-color: transparent;
  }
  .has_sub_menu {
    margin: 0 !important;
  }
  .has_sub_menu ~ i {
    width: 15px;
    display: inline-block;
    text-align: center;
    color: #000;
    transition: linear 0.4s;
  }
  .sub-list i {
    color: #000;
    transition: all linear 0.3s !important;
  }
  .sub-list i:hover {
    color: var(--main);
    transition: all linear 0.3s !important;
  }
  .nav-list > .link > a {
    display: block;
    color: #000;
    position: relative;
    background: transparent;
    padding: 8px 3px;
    font-size: 11px;
    border-radius: 25px;
    font-weight: 700;
    margin: 0 0px;
    font-family: Changa-Bold;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    /*&:after {
      content: '';
      position: absolute;
      right: auto;
      top: 1px;
      width: 0%;
      height: 3px;
      background-color: var(--main);
      left: 0;
      z-index: -1;
      transition: .8s;
      transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }*/
    /* &:before {
       content: "";
       position: absolute;
       right: auto;
       bottom: -113%;
       width: 0%;
       height: 1px;
       background-color: var(--sec);
       left: 0;
       z-index: -1;
       transition: 0.8s;
       transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
     }*/
  }
  .nav-list > .link:hover a, .nav-list > .link.active a {
    color: var(--main) !important;
    transition: linear 0.5s;
    background: transparent;
    /*
         &:after {
           right: 0;
           left: auto;
           width: 100%;
           transition: .8s;
           transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
         }*/
  }
  .nav-list > .link:hover a:before, .nav-list > .link.active a:before {
    right: 0;
    left: auto;
    width: 100%;
    transition: 0.8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .sub-list {
    background-color: #FFF;
    padding: 5px 15px;
    padding-inline-end: 22px;
    list-style: none;
    overflow-x: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    min-width: max-content;
    opacity: 0;
    z-index: 4;
    visibility: hidden;
    display: block !important;
    transition: all linear 0.3s !important;
    transform-origin: top;
    transform: scaleY(0);
  }
  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
  }
  .sub-list li a {
    display: block;
    width: 100%;
    position: relative;
    color: #000 !important;
    transition: all linear 0.3s !important;
    padding: 5px 0 !important;
  }
  .sub-list li a:before {
    content: "-";
    color: #000;
    margin: 0 5px;
    transition: all linear 0.3s !important;
  }
  .sub-list li a:hover .sub-list li a:before {
    transition: all linear 0.3s !important;
    color: var(--main);
  }
  .sub-list li a.has_sub_menu {
    display: inline-block;
  }
  .sub-list li:last-child > a {
    margin-bottom: 0;
  }
  .sub-list .sub-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s linear;
  }
  .sub-list .sub-link:hover {
    background-color: var(--sec);
  }
  .sub-list .sub-link:last-child {
    border-bottom: 0;
  }
  .nav-list .link:hover > .sub-list {
    transition: all linear 0.3s !important;
    top: 100%;
    visibility: visible;
    overflow: unset;
    opacity: 1;
    transform: scaleY(1);
  }
  .sub-list .sub-list {
    top: 0;
    right: 100%;
    transform: rotateX(180deg);
    transition: all linear 0.3s !important;
  }
  .nav-list .link .sub-list .sub-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-list .link .sub-list .sub-link:hover > .sub-list {
    display: block;
  }
  .nav-list .link .sub-list .link:hover > .sub-list {
    transition: all linear 0.3s !important;
    right: 105%;
    visibility: visible;
    transform: rotateX(0deg);
    top: 0 !important;
    display: block;
  }
  .nav-btn, .mobile-nav-list {
    display: none;
  }
  /**/
  .nav-list > .link {
    text-transform: capitalize;
  }
  .has_sub_menu {
    margin-right: 5px;
  }
  .sub-list {
    right: 0;
  }
  .sub-list li a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list {
    left: 100%;
  }
}
@media (max-width: 992px) {
  .nav-list {
    display: none;
  }
  .main-nav {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--main);
    border-radius: 20px;
    margin: 0px;
    margin-inline-end: 5px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: linear 0.4s;
  }
  .nav-btn:hover {
    transition: linear 0.4s;
    background-color: var(--main);
    color: #FFF;
  }
  .mobile-nav-list {
    display: block;
    position: fixed;
    top: 0;
    overflow: scroll;
    z-index: 5;
    text-align: center;
    height: 100%;
    width: 300px;
    padding: 60px 0;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: all 0.5s linear;
  }
  .mobile-nav-list .logo {
    padding: 0 30px;
  }
  .mobile-nav-list .date {
    display: flex;
    margin-top: 15px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
  }
  .mobile-nav-list .lang {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: linear 0.2s;
    font-size: 20px;
    gap: 10px;
    position: relative;
    color: #000;
  }
  .mobile-nav-list .l-head {
    justify-content: center;
  }
  .mobile-nav-list::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .mobile-nav-list::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 50px;
  }
  .mobile-nav-list::-webkit-scrollbar {
    width: 0.5em;
  }
  .mobile-nav-list .request {
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    background-color: var(--main);
    font-size: 16px;
  }
  .mobile-nav-list .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mobile-nav-list .phone .img-phone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .phone .img-phone img {
    max-width: 20px;
    max-height: 20px;
  }
  .mobile-nav-list .phone p, .mobile-nav-list .phone a {
    font-size: 20px;
    font-family: din-bold;
    color: #000;
  }
  .mobile-nav-list .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*.fa-tiktok{
      color: #111111;
      filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

    }
    .fa-linkedin-in{
      color: #0e76a8;
    }
    .fa-snapchat{
      background-color: #FFFC00;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-facebook, .fa-facebook-square {
      color: #3b5998
    }
    .fa-twitter, .fa-twitter-square {
      color: #00aced
    }
    .fa-google-plus, .fa-google-plus-square {
      color: #dd4b39
    }
    .fa-youtube, .fa-youtube-play, .fa-youtube-square {
      color: #bb0000
    }
    .fa-tumblr, .fa-tumblr-square {
      color: #32506d
    }
    .fa-vine {
      color: #00bf8f
    }
    .fa-flickr {
      color: #ff0084
    }
    .fa-vimeo-square {
      color: #aad450
    }
    .fa-pinterest, .fa-pinterest-square {
      color: #cb2027
    }
    .fa-linkedin, .fa-linkedin-in-square {
      color: #007bb6
    }
    .fa-instagram {
      background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-spotify {
      color: #1ED760;
    }*/
  }
  .mobile-nav-list .social a {
    background-color: transparent;
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main);
    transition: all linear 0.3s !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .mobile-nav-list .social a:hover {
    border: 1px solid var(--sec);
    background-color: var(--sec);
    color: #FFF;
    transition: all linear 0.3s !important;
  }
  .mobile-nav-list .social i {
    font-size: 16px;
  }
  .mobile-nav-list .main-phone {
    display: flex;
    gap: 10px;
    margin-inline-end: 20px;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav-list .main-phone span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .main-phone span img {
    width: 16px;
    height: 22px;
  }
  .mobile-nav-list .main-phone a {
    font-size: 18px;
    color: #000;
  }
  .mobile-nav-list .link {
    font-size: 16px;
    padding: 10px 30px;
    position: relative;
  }
  .mobile-nav-list .link a {
    color: #000;
    display: block;
    text-align: center;
    font-weight: bold;
    width: 100%;
  }
  footer .sec-foot {
    margin-top: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    display: inline-block;
    width: calc(100% - 40px);
  }
  .mobile-nav-list .link a:hover {
    color: var(--main);
    transition: all linear 0.3s !important;
  }
  .mobile-nav-list .link.active a {
    color: var(--main);
    transition: all linear 0.3s !important;
  }
  .mobile-nav-list .link i {
    color: #fff;
    background-color: var(--main);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform-origin: center;
    transition: all 0.3s linear;
  }
  .mobile-nav-list .link i.open {
    transform: rotate(180deg);
  }
  .sub-list {
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
  }
  .sub-list a {
    display: block;
    position: relative;
  }
  .sub-list .sub-link {
    border: 0;
    padding: 5px 20px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    white-space: nowrap;
  }
  .sub-list .sub-list a {
    display: block;
    position: relative;
  }
  .trans-none {
    transform: none !important;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-in-out;
  }
  /**/
  .mobile-nav-list {
    right: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list a {
    padding-right: 15px;
  }
  .nav-overlay {
    left: 0;
    transform: translateX(-100%);
  }
}
/*end nav*/
@font-face {
  font-family: Changa-Bold;
  font-display: swap;
  src: url(../fonts/Alexandria-Bold.ttf);
}
@font-face {
  font-family: Changa-Regular;
  font-display: swap;
  src: url(../fonts/Alexandria-Regular.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none;
}

img, iframe {
  max-width: 100%;
}

.wrap {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.loading img {
  max-width: 250px;
  padding: 20px;
}
#billing-fields , #contact-fields{
    display:none !important;
}
:root {
  --main: #C9B59C;
  --sec: #C9B59C;
}

body {
  font-family: Changa-Regular;
  overflow-x: hidden;
}

html[dir=rtl] body {
  text-align: right;
}

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}

/* End Scroll */
.e-row {
  padding: 0;
  margin: 0;
}

.main-hover {
  padding: 3px 9px;
  max-width: 180px;
  min-width: 130px;
  height: 40px;
  color: #FFF;
  z-index: 2;
  background: linear-gradient(105deg, var(--color-orange-51, #F3A412) 0%, var(--color-orange-60, #F5B53D) 100%);
  border-radius: 8px;
  box-shadow: 0 8px 32px -8px rgba(243, 164, 18, 0.4);
  position: relative;
  text-transform: capitalize;
  display: inline-flex;
  font-family: Changa-Bold;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
  transition: all linear 0.3s !important;
}
.main-hover:before {
  content: "\f177";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #FFF;
  z-index: 0;
  top: 50%;
  display: flex;
  width: 30px;
  height: 30px;
  transform: translatey(-50%);
  font-size: 13px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: all linear 0.3s !important;
}
.main-hover:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 8px;
  transition: all linear 0.3s !important;
}
.main-hover:hover {
  background-color: var(--main);
  color: #FFF;
  border: 0px solid transparent;
}
.main-hover:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
  background-color: var(--sec);
}

.main-header {
  color: #000;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-header span:nth-of-type(1) {
  border-radius: 50px;
  background: #F0F0F0;
  padding: 1px 15px;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  position: relative;
}
.main-header span:nth-of-type(1):before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--main);
}

h1, h2, h3, h4, h5 {
  font-family: Changa-Bold;
}

/*header*/
header {
  position: relative;
  width: 100%;
  z-index: 2;
}
header .top-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
header .top-head .top-top {
  background-color: var(--sec);
  border-radius: 0 0 19px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 13px;
  padding: 7px 25px;
}
header .top-head .top-top .value {
  gap: 3px;
}
header .top-head .top-top .value a:not(:nth-last-of-type(1)):after {
  content: "-";
  color: #FFF;
  font-size: 13px;
  margin-inline-start: 3px;
}
header .top-head .top-top a {
  color: #FFF;
  font-size: 13px;
}
header .top-head .top-top i {
  color: #282828;
  font-size: 16px;
}
header .top-head .top-top .fir-con i {
  color: #3A3A3A;
}
header .top-head .top-top div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .top-head .main-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  gap: 15px;
}
header .logo img {
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 90px;
}
header .menu-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /*.search-btn {
    background: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #FFF;
    transition: linear .2s;
    text-align: center;
    position: relative;

    &:before {
      content: '';
      width: 100%;
      position: absolute;
      height: 100%;
      border-radius: 50%;
      background: var(--main);
      opacity: 0;
      z-index: 1;
      top: 0;
      right: 0;
      pointer-events: none;
      transition: all linear .3s !important;
    }

    &:after {
      content: '';
      width: 100%;
      position: absolute;
      height: 100%;
      border: 20px solid transparent;
      z-index: 2;
      top: 0;
      pointer-events: none;
      right: 0;
      border-radius: 50%;
      transition: all linear .3s !important;
    }

    img {
      z-index: 3;
    }

    &:hover {
      color: #FFF;
      border: 1px solid transparent;
      transition: linear .2s;

      &:before {
        opacity: 1;
      }

      &:after {
        border: 0px solid rgba(white, .5);
      }

    }
  }*/
}
header .menu-icons .icon-menu {
  width: 45px;
  height: 45px;
  background-color: #EEE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  transition: all linear 0.3s !important;
  position: relative;
  border-radius: 50%;
}
header .menu-icons .icon-menu svg {
  transition: all linear 0.3s !important;
}
header .menu-icons .icon-menu:hover {
  background-color: var(--sec);
  color: #FFF;
}
header .menu-icons .icon-menu .mini-cart-items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--main);
  color: #FFF;
  font-size: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
header .menu-icons .btn-group .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: max-content;
  height: 50px;
  background-color: transparent;
  border: 0;
  gap: 8px;
  color: #FFF;
  font-size: 22px;
}
header .menu-icons .btn-group .dropdown-toggle i {
  color: #FFF;
}
header .menu-icons .btn-group .dropdown-toggle:before {
  display: none;
}
header .menu-icons .btn-group .dropdown-menu {
  width: max-content;
  min-width: auto;
  background-color: var(--main);
}
header .menu-icons .btn-group .dropdown-menu a {
  color: #FFF;
  background-color: transparent;
}
header .menu-icons .btn-group .dropdown-menu a:hover {
  background-color: transparent;
}
header .menu-icons .request {
  height: 40px;
  display: flex;
  width: 130px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  border-radius: 8px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  font-size: 20px;
  gap: 10px;
  position: relative;
  color: #000;
  /*&:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0;
    z-index: -2;
    top: 0;
    right: 0;
    transition: all linear .3s !important;
  }

  &:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border: 20px solid transparent;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all linear .3s !important;
  }*/
}
header .menu-icons .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .menu-icons .lang:hover {
  color: var(--sec);
  transition: linear 0.2s;
}
header .menu-icons .lang:hover:before {
  opacity: 1;
}
header .menu-icons .lang:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /*.fa-tiktok{
    color: #111111;
    filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

  }
  .fa-linkedin-in{
    color: #0e76a8;
  }
  .fa-snapchat{
    background-color: #FFFC00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-facebook, .fa-facebook-square {
    color: #3b5998
  }
  .fa-twitter, .fa-twitter-square {
    color: #00aced
  }
  .fa-google-plus, .fa-google-plus-square {
    color: #dd4b39
  }
  .fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #bb0000
  }
  .fa-tumblr, .fa-tumblr-square {
    color: #32506d
  }
  .fa-vine {
    color: #00bf8f
  }
  .fa-flickr {
    color: #ff0084
  }
  .fa-vimeo-square {
    color: #aad450
  }
  .fa-pinterest, .fa-pinterest-square {
    color: #cb2027
  }
  .fa-linkedin, .fa-linkedin-in-square {
    color: #007bb6
  }
  .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-spotify {
    color: #1ED760;
  }*/
}
header .social a {
  background-color: transparent;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main);
  transition: all linear 0.3s !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header .social a:hover {
  border: 1px solid var(--sec);
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s !important;
}
header .social i {
  font-size: 16px;
}

@font-face {
  font-family: tajawal;
  font-display: swap;
  src: url(../fonts/tajawal.ttf);
}
.fixed-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fixed-social i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 20px;
  transition: all linear 0.3s !important;
  background-color: var(--sec);
}
.fixed-social i:hover {
  background-color: var(--main);
}

/*header*/
/*slider*/
/* ================= Main Layout ================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(239, 224, 203, 0.65);
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../img/hero.png");
  background-repeat: no-repeat;
  width: 536px;
  height: 100%;
  z-index: -1;
}
.hero-section .owl-dots {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.hero-section .owl-dots span {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  height: 5px;
  width: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.hero-section .owl-dots .owl-dot.active span {
  width: 29px;
  background: #FFF;
}
.hero-section .hero-item .row {
  align-items: flex-end;
}
.hero-section .hero-item .r-hero {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding-inline-start: 5%;
  padding-inline-end: 2%;
  padding-bottom: 15%;
}
.hero-section .hero-item .r-hero span {
  border-radius: 50px;
  background: var(--main);
  padding: 1px 15px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  position: relative;
}
.hero-section .hero-item .r-hero span:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #EEE9E3;
}
.hero-section .hero-item .r-hero p {
  color: #000;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 44px; /* 191.304% */
}
.hero-section .hero-item .r-hero a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 214.286% */
}
.hero-section .hero-item .hero-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

/* ================= Main Slider ================= */
.main-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-azure-2190, rgba(10, 61, 98, 0.9)) 0%, var(--color-azure-3770, rgba(60, 99, 130, 0.7)) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ================= Slide Content (Text + Buttons) ================= */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.slide-main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
}

.slide-title {
  font-size: 60px;
  color: var(--main);
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slide-title .highlight {
  color: #ff9800;
  font-weight: 700;
}

.slide-subtitle {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 35px;
  line-height: 1.5;
  text-align: center;
}

.slide-button-group {
  display: flex;
  gap: 30px;
  pointer-events: all;
  justify-content: center;
}
.slide-button-group a:nth-of-type(1) {
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  display: flex;
  min-width: 200px;
  height: 60px;
  gap: 8px;
  border-radius: 8px;
  border: var(--stroke-weight-2, 2px) solid var(--color-white-30, rgba(255, 255, 255, 0.3));
  background: var(--color-white-10, rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(2px);
  color: #FFF;
  font-size: 16px;
  transition: all linear 0.3s !important;
}
.slide-button-group a:nth-of-type(2) {
  display: flex;
  min-width: 200px;
  height: 60px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: linear-gradient(105deg, var(--color-orange-51, #F3A412) 0%, var(--color-orange-60, #F5B53D) 100%);
  box-shadow: 0 8px 32px -8px rgba(243, 164, 18, 0.4);
  color: #FFF;
  font-size: 16px;
  transition: all linear 0.3s !important;
}
.slide-button-group a:hover {
  box-shadow: 0 8px 24px 1px rgba(9, 62, 98, 0.25);
  transform: scale(1.08);
}

.slide-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease !important;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-icon {
  font-size: 14px;
}

.slide-btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}
.slide-btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.slide-btn-secondary {
  background-color: #ff9800;
  color: #ffffff;
}
.slide-btn-secondary:hover {
  background-color: #f57c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* ================= Thumbnail Slider Wrapper ================= */
.carousel-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 4;
  padding: 0;
}
.carousel-wrapper .thumb-inner {
  padding: 0 0px;
}

/* inner container to center thumbnails */
/* ================= Thumbnails ================= */
.thumb-item {
  position: relative;
  height: 150px;
  margin: 0 6px;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease !important;
  border: 0px solid transparent;
  opacity: 0.8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease !important;
  pointer-events: none;
}

/* hover state */
.thumb-item:hover {
  transform: translateY(-4px);
}
.thumb-item:hover img {
  transform: scale(1.06);
}

/* active thumbnail */
#thumbSlider .owl-item.active-thumb .thumb-item {
  opacity: 1;
}
#thumbSlider .owl-item.active-thumb .thumb-overlay {
  background: linear-gradient(to top, rgba(255, 152, 0, 0), rgba(0, 0, 0, 0));
}
#thumbSlider .owl-nav button.owl-prev, #thumbSlider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 34px;
  transition: all 0.25s ease;
  margin: 0;
  padding: 0;
}
#thumbSlider .owl-nav button.owl-prev:hover, #thumbSlider .owl-nav button.owl-next:hover {
  background: #ff9800 !important;
  box-shadow: 0 0 14px rgba(255, 152, 0, 0.9);
}
#thumbSlider .owl-nav button.owl-prev {
  left: 0;
}
#thumbSlider .owl-nav button.owl-next {
  right: 0;
}

/* ================= Owl Nav Buttons ================= */
/* only style nav for thumbnails, hide for main slider via JS/HTML */
/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 42px;
  }
  .thumb-item {
    height: 95px;
  }
}
@media (max-width: 768px) {
  .slide-title {
    font-size: 32px;
  }
  .slide-subtitle {
    font-size: 12px;
  }
  .slide-button-group {
    flex-direction: column;
    max-width: 220px;
  }
  .thumb-item {
    height: 85px;
  }
  #thumbSlider .owl-nav button {
    display: none !important;
  }
  .carousel-wrapper .thumb-inner {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .slide-title {
    font-size: 24px;
  }
  .thumb-item {
    height: 75px;
  }
}
/*slider*/
/*product_cat*/
.product_cat {
  padding: 40px 0;
  background: rgba(249, 249, 249, 0.65);
}

.main-cat {
  border-radius: 15px;
  background: #FFF;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  transition: all linear 0.3s !important;
  gap: 20px;
}
.main-cat .img-cat {
  width: 100%;
  height: 484px;
  border-radius: 15px;
  overflow: hidden;
}
.main-cat .img-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all linear 0.3s !important;
}
.main-cat .l-cat {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  justify-content: space-evenly;
  transition: all linear 0.3s !important;
}
.main-cat .l-cat .icon-cat {
  width: 110px;
  height: 110px;
  transition: all linear 0.3s !important;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--main);
}
.main-cat .l-cat .icon-cat img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.main-cat .l-cat h2 {
  color: #000;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main-cat .l-cat p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px; /* 168.75% */
}
.main-cat .l-cat a {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg) !important;
  transition: all linear 0.3s !important;
  border: 1px solid rgba(0, 0, 0, 0.16);
}
.main-cat:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
.main-cat:hover .img-cat img {
  transform: scale(1.08) !important;
}
.main-cat:hover a {
  transform: rotate(0deg) !important;
}

/* ============================================
   Testimonials Section - Main Styles
   ============================================ */
.testimonials-section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
  color: #fff;
  font-weight: 700;
}

/* ============================================
   Testimonials Wrapper
   ============================================ */
.testimonials-wrapper {
  position: relative;
  margin: 0 auto;
}

/* ============================================
   Floating Images Container - Static
   ============================================ */
.floating-images-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.client-image {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0) rotate(180deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  pointer-events: auto;
}

.client-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* ============================================
   Image Positions
   ============================================ */
.client-image.top-left {
  top: 0;
  left: 0;
}

.client-image.top-right {
  top: 0;
  right: 0;
}

.client-image.left {
  top: 50%;
  left: -50px;
  transform: translateY(-50%) scale(0) rotate(180deg);
}

.client-image.right {
  top: 50%;
  right: -50px;
  transform: translateY(-50%) scale(0) rotate(180deg);
}

.client-image.bottom-left {
  bottom: 0;
  left: 0;
}

.client-image.bottom-right {
  bottom: 0;
  right: 0;
}

/* ============================================
   Show Animation
   ============================================ */
.client-image.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.client-image.left.show,
.client-image.right.show {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

/* ============================================
   Continuous Floating Animations
   ============================================ */
@keyframes floating {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}
@keyframes floatingMiddle {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(-20px);
  }
}
.client-image.show {
  animation: floating 4s ease-in-out infinite;
}

.client-image.left.show {
  animation: floatingMiddle 3s ease-in-out infinite;
}

.client-image.right.show {
  animation: floatingMiddle 3.5s ease-in-out infinite;
}

/* ============================================
   Hover Effects - CSS Only
   ============================================ */
/*
.client-image:hover {
  transform: scale(1.2) rotate(5deg) !important;
  z-index: 100;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border-color: #fff;
  animation-play-state: paused;
}

.client-image.left:hover,
.client-image.right:hover {
  transform: translateY(-50%) scale(1.2) rotate(5deg) !important;
}

!* Optional: Blur effect on other images *!
.floating-images-container:hover .client-image:not(:hover) {
  filter: brightness(0.7);
  transform: scale(0.95);
}

.floating-images-container:hover .client-image.left:not(:hover) {
  transform: translateY(-50%) scale(0.95);
}

.floating-images-container:hover .client-image.right:not(:hover) {
  transform: translateY(-50%) scale(0.95);
}*/
/* ============================================
   Animation Delays
   ============================================ */
.client-image[data-index="0"] {
  transition-delay: 0.1s;
  animation-delay: 0s;
}

.client-image[data-index="1"] {
  transition-delay: 0.2s;
  animation-delay: 0.3s;
}

.client-image[data-index="2"] {
  transition-delay: 0.3s;
  animation-delay: 0.6s;
}

.client-image[data-index="3"] {
  transition-delay: 0.4s;
  animation-delay: 0.9s;
}

.client-image[data-index="4"] {
  transition-delay: 0.5s;
  animation-delay: 1.2s;
}

.client-image[data-index="5"] {
  transition-delay: 0.6s;
  animation-delay: 1.5s;
}

/* ============================================
   Testimonial Slider Container
   ============================================ */
#testimonials-slider {
  position: relative;
  width: 70%;
  margin: auto;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* ============================================
   Testimonial Content Box
   ============================================ */
.testimonial-content {
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  color: #667eea;
  margin-bottom: 25px;
  opacity: 0.7;
}

.quote-icon svg {
  width: 50px;
  height: auto;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 35px;
  font-weight: 700;
}

.client-name {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.client-title {
  font-size: 16px;
  color: #000;
  margin: 0;
}

/* ============================================
   Owl Carousel Custom Dots
   ============================================ */
.testimonials-section .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-section .owl-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.11) !important;
  margin: 0 8px !important;
  transition: all 0.4s ease;
  display: inline-block;
}

.testimonials-section .owl-dot.active {
  width: 25px !important;
  border-radius: 500px;
  background: #000 !important;
}

.testimonials-section .owl-dot:hover {
  background: #000 !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
  .client-image {
    width: 85px;
    height: 85px;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .client-image {
    width: 70px;
    height: 70px;
  }
  .client-image.left {
    left: -35px;
  }
  .client-image.right {
    right: -35px;
  }
  .testimonial-text {
    font-size: 17px;
  }
  .client-name {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .testimonials-wrapper {
    min-height: 500px;
  }
  .client-image {
    width: 55px;
    height: 55px;
  }
  .client-image.left {
    left: -20px;
  }
  .client-image.right {
    right: -20px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }
  .quote-icon svg {
    width: 40px;
  }
}
/* Features */
@keyframes keyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes iconPulse {
  0%, 100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
}
.features-section {
  padding: 40px 0 80px;
  overflow: hidden;
  background-color: #F6F7F8;
}
.features-section .row:first-of-type {
  margin-bottom: 50px;
}
.features-section .main-num {
  display: flex;
  padding: 16px;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background-color: #FFF;
  box-shadow: 0 8px 24px -8px rgba(9, 62, 98, 0.12);
  flex-shrink: 0;
  transition: all linear 0.3s !important;
}
.features-section .main-num .main-num-icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #0A3D62;
}
.features-section .main-num .main-num-icon img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  transition: all linear 0.3s !important;
  object-fit: contain;
}
.features-section .main-num .cont-num span {
  color: #2B3D4F;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.features-section .main-num .cont-num p {
  margin: 0;
  color: #5E7387;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.features-section .main-num:hover {
  box-shadow: 0 8px 24px 1px rgba(9, 62, 98, 0.25);
}
.features-section .main-num:hover img {
  transform: scale(1.08) !important;
}
.features-section .feature-content .subtitle {
  display: inline-flex;
  padding: 4px 14px;
  justify-content: center;
  align-items: center;
  background-color: rgba(243, 164, 18, 0.1);
  color: #F3A412;
  border-radius: 9999px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.features-section .feature-content h1, .features-section .feature-content h2 {
  color: #2B3D4F;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  /* 221.429% */
}
.features-section .feature-content p {
  color: #5E7387;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.features-section .feature-graph {
  position: relative;
  text-align: center;
  display: table;
  margin: 0 auto;
}
.features-section .feature-graph .img-a {
  position: absolute;
  right: -16px;
  top: -23.82px;
  display: flex;
  width: 65px;
  height: 65px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: all linear 0.3s !important;
  animation: keyFloat 3s ease-in-out infinite;
  background: var(--main);
  z-index: 2;
  box-shadow: 0 8px 32px -8px rgba(243, 164, 18, 0.4);
}
.features-section .feature-graph .img-a:before {
  content: "";
  background-image: url(../img/SVG.png);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
}
.features-section .feature-graph .img-b {
  position: absolute;
  left: -16px;
  transition: all linear 0.3s !important;
  bottom: -29.9px;
  display: flex;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: iconPulse 2s ease-in-out infinite;
  border-radius: 12px;
  background: var(--sec);
  box-shadow: 0 8px 24px -8px rgba(9, 62, 98, 0.12);
}
.features-section .feature-graph .img-b:before {
  content: "";
  background-image: url(../img/SVG1.png);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}
.features-section .feature-graph .img-whoo {
  position: relative;
  display: table;
  margin: 0 auto;
}
.features-section .feature-graph .img-whoo img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  position: relative;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.features-section .feature-graph .img-whoo:before {
  content: "";
  transform: rotate(5deg);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  pointer-events: none;
  border-radius: 24px;
  opacity: var(--opacity-10, 0.1);
  background: linear-gradient(135deg, #093E62 0%, #3B6581 50%, #0C5383 100%);
}
.features-section .feature-graph .img-whoo:after {
  content: "";
  transform: rotate(-4.124deg);
  position: absolute;
  width: 100%;
  pointer-events: none;
  height: 100%;
  left: 0px;
  bottom: 0px;
  border-radius: 24px;
  background: rgba(243, 164, 18, 0.2);
}
.features-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.features-section .feature-item .feature-icon {
  flex-shrink: 0;
  width: 120px;
}
.features-section .feature-item .feature-icon img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}
.features-section .feature-item .feature-text h3 {
  color: var(--main);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 100% */
}
.features-section .feature-item .feature-text p {
  color: #6E6E6E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}

@media (max-width: 991.98px) {
  .features-section .feature-content {
    text-align: center;
  }
  .features-section .feature-graph {
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .features-section .row:last-of-type > div:first-child {
    margin-bottom: 2rem;
  }
}
/*ceo*/
.ceo {
  padding: 40px 0;
}
.ceo p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px;
  /* 205.556% */
}
.ceo img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  margin: 20px 0;
}
.ceo h4 {
  color: var(--main);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 114.286% */
}

/*ceo*/
/*team*/
.team {
  padding: 40px 0;
}
.team .team-member {
  border-radius: 20px;
  background: #EBFAFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.team .team-member .top-team {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.team .team-member .top-team .team-img {
  width: 60px;
  height: 60px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .top-team .team-img img {
  max-width: 60px;
  max-height: 60px;
}
.team .team-member .top-team h5 {
  color: var(--main);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 114.286% */
}
.team .team-member .top-team p {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 200% */
}
.team .team-member a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px;
  /* 177.778% */
}
.team .team-member a i {
  font-size: 18px;
  color: var(--main);
}

/*team*/
/*service*/
.service {
  padding: 50px 0;
}
.service .owl-dots {
  display: flex;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.service .owl-dots span {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  width: 5px;
  height: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.service .owl-dots .owl-dot.active span {
  height: 29px;
  background: #FFF;
}
.service .owl-nav {
  display: flex;
  position: absolute;
  top: -94px;
  right: 0%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: center;
}
.service .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.service .owl-nav i:hover {
  color: var(--main);
  background: #FFF;
}
.service .to-cont {
  display: flex;
  padding: 16px 32px;
  min-width: 190px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(107deg, var(--color-orange-51, #F3A412) 0%, var(--color-orange-60, #F5B53D) 100%);
  box-shadow: 0 8px 32px -8px rgba(243, 164, 18, 0.4);
  color: #FFF;
}
.service .to-cont:hover {
  color: #FFF;
}

.col-serv:nth-of-type(6n + 1) .service-item .img-serv {
  background: #E2EAFA;
}

.col-serv:nth-of-type(6n + 2) .service-item .img-serv {
  background: #E6ECEF;
}

.col-serv:nth-of-type(6n + 3) .service-item .img-serv {
  background: #FEF6E7;
}

.col-serv:nth-of-type(6n + 4) .service-item .img-serv {
  background: #EBF0F2;
}

.col-serv:nth-of-type(6n + 5) .service-item .img-serv {
  background: #E9F9EF;
}

.col-serv:nth-of-type(6n + 6) .service-item .img-serv {
  background: #F6EEFE;
}

.service-item {
  width: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s !important;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  padding: 20px 25px;
}
.service-item .img-serv {
  border-radius: 12px;
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all linear 0.3s !important;
}
.service-item .img-serv img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  margin-bottom: 0px;
}
.service-item h3 {
  color: #2B3D4F;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
  transition: all linear 0.3s !important;
}
.service-item p {
  color: #5E7387;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all linear 0.3s !important;
  line-height: 26px; /* 162.5% */
}
.service-item:hover {
  background: #F5F6FA;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}
.service-item:hover .img-serv {
  transform: scale(1.08);
}

/*service*/
/*project*/
.project {
  padding: 60px 0;
  background: #F6F7F8;
}

.projects-slider-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  padding: 80px 0;
}

.projectsSwiper {
  width: 100%;
  height: 450px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.projectsSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  width: 450px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.swiper-slide.swiper-slide-active {
  width: 600px !important;
  height: 380px;
}
.swiper-slide.swiper-slide-active .slide-card {
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);*/
}
.swiper-slide.swiper-slide-active .slider-overlay {
  opacity: 1;
  visibility: visible;
}
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
  filter: brightness(0.6);
}
.swiper-slide:not(.swiper-slide-active):hover {
  opacity: 0.8;
  cursor: pointer;
}

.slide-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.overlay-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.overlay-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.slide-btn {
  padding: 10px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease !important;
}
.slide-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 1400px) {
  .projectsSwiper .swiper-slide {
    width: 400px;
    height: 320px;
  }
  .projectsSwiper .swiper-slide.swiper-slide-active {
    width: 550px !important;
    height: 380px;
  }
}
@media (max-width: 1024px) {
  .projectsSwiper {
    height: 400px;
  }
  .projectsSwiper .swiper-slide {
    width: 300px;
    height: 280px;
  }
  .projectsSwiper .swiper-slide.swiper-slide-active {
    width: 380px !important;
    height: 310px;
  }
  .overlay-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .projects-slider-wrapper {
    padding: 50px 0 80px;
  }
  .projectsSwiper {
    height: 380px;
  }
  .projectsSwiper .swiper-slide {
    width: 250px;
    height: 300px;
  }
  .projectsSwiper .swiper-slide.swiper-slide-active {
    width: 280px !important;
    height: 320px;
  }
  .overlay-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .overlay-content h3 {
    font-size: 18px;
  }
  .slide-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .projectsSwiper {
    height: 350px;
  }
  .projectsSwiper .swiper-slide {
    width: 220px;
    height: 280px;
  }
  .projectsSwiper .swiper-slide.swiper-slide-active {
    width: 250px !important;
    height: 300px;
  }
  .slider-overlay {
    padding: 20px;
  }
  .overlay-content h3 {
    font-size: 16px;
  }
}
.single_service .swiper-slide {
  width: 100%;
}
.single_service .swiper-slide:hover {
  opacity: 1;
  filter: unset;
}
.single_service .swiper-slide:hover .slider-overlay {
  opacity: 1;
  visibility: visible;
}

.marine-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease !important;
  display: flex;
  flex-direction: column;
  padding: 4px;
  height: 100%;
}
.marine-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* ============ Image ============ */
.card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

/* ============ Text ============ */
.card-body-custom {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card-title-custom {
  font-size: 18px;
  color: #000;
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
}
.card-title-custom:hover {
  color: #000;
}

.card-text-custom {
  font-size: 15px;
  color: #000;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 22px;
}

/* ============ Info Box (price + date) ============ */
.info-box {
  width: 100%;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  margin-bottom: 22px;
  position: relative;
}
.info-box:before {
  content: "";
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.13);
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1px 10px;
  height: 100%;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 14px;
}

.info-value {
  font-size: 13px;
  color: #000;
}

/* ============ Button ============ */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 26px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #e3ecf9;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease !important;
  align-self: flex-start;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #87b4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(135, 180, 245, 0.6);
  transition: all 0.3s ease !important;
}

.btn-read-more:hover {
  background-color: #f4f8ff;
  border-color: #87b4f5;
  color: #111111;
  text-decoration: none;
}
.btn-read-more:hover .btn-icon {
  background-color: #5b8fe0;
  transform: translateX(3px);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .card-image {
    height: 210px;
  }
  .card-body-custom {
    padding: 22px 18px 22px;
  }
  .card-title-custom {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .card-image {
    height: 200px;
  }
  .card-title-custom {
    font-size: 17px;
  }
  .card-text-custom {
    font-size: 13px;
  }
}
/*project*/
/*products*/
.products {
  padding: 40px 0;
}

.item-pro {
  width: 100%;
  height: 380px;
  display: block;
  position: relative;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
}
.item-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s linear;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.item-pro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-pro:hover {
  box-shadow: 2px 0 15px 0 rgba(0, 0, 0, 0.56);
}
.item-pro:hover:before {
  height: 100%;
}

/*client*/
.client {
  padding: 40px 0 30px;
  background: #F6F7F8;
}
.client .main-header {
  margin-bottom: 0;
}
.client .owl-item {
  padding: 20px 0;
}

.cli-item {
  display: flex;
  width: 100%;
  height: 145px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #FFF;
  transition: all linear 0.3s !important;
  box-shadow: 0 8px 24px -8px rgba(9, 62, 98, 0.12);
}
.cli-item .cli-img {
  display: flex;
  width: 64px;
  height: 64px;
  transition: all linear 0.3s !important;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: rgba(9, 62, 98, 0.05);
}
.cli-item .cli-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto;
  object-fit: contain;
}
.cli-item h3 {
  color: #5E7387;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.cli-item:hover {
  box-shadow: 0 8px 24px -1px rgba(9, 62, 98, 0.35);
}
.cli-item:hover .cli-img {
  box-shadow: 0 8px 24px -1px rgba(9, 62, 98, 0.35);
}

/*gallery*/
.gallery {
  padding: 40px 0;
  background: #FCFCFC;
}
.gallery .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
  right: 0%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  pointer-events: none;
  justify-content: space-between;
}
.gallery .owl-nav i {
  width: 40px;
  height: 40px;
  pointer-events: auto;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.gallery .owl-nav i:hover {
  color: var(--main);
  background: #FFF;
}

/* الغلاف العام */
.slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* ارتفاع السلايدر */
/* غمّق كل العناصر لما الماوس يدخل على السلايدر */
/* العنصر اللي عليه الماوس يكبر لــ 400px ويرجع لونه الطبيعي */
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
/* محتوى الـ slide */
.item-gall {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.item-gall .in-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  opacity: 0;
  background-color: #FFF;
  border-radius: 50%;
  transition: 0.8s;
  color: var(--main);
  display: flex;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.item-gall .in-item:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 88px;
  height: 88px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.item-gall .in-item:hover {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: var(--main);
  color: #FFF;
}
.item-gall .in-item:hover:before {
  transition: 0.8s;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: var(--main);
}
.item-gall:hover .in-item {
  opacity: 1;
}
.item-gall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*gallery*/
/* Why Us*/
.why-us {
  padding: 40px 0;
  background-color: #F6F9F6;
}
.why-us .why-us-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-us .why-us-image-wrapper img {
  max-height: 650px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.why-us .timeline-wrapper {
  position: relative;
  padding-right: 0px;
}
.why-us .timeline-wrapper::before {
  content: "";
  position: absolute;
  right: 27px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  height: 79%;
  background-color: #FFF;
  border: 1px dashed var(--main);
}
.why-us .timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.why-us .timeline-item:not(:last-child) {
  margin-bottom: 2.5rem;
}
.why-us .timeline-item .timeline-number {
  width: 58px;
  height: 58px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--main);
  border: 1px dashed;
  z-index: 2;
}
.why-us .timeline-item .timeline-content {
  flex: 1;
}
.why-us .timeline-item .timeline-content h5 {
  color: var(--main);
  margin-bottom: 0.5rem;
}
.why-us .timeline-item .timeline-content p {
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .why-us .why-us-image-wrapper {
    margin-bottom: 4rem;
  }
  .why-us .timeline-wrapper {
    padding-right: 30px;
  }
}
/* FAQ Section */
.faq-section .section-title {
  font-size: 48px;
}

.accordion .card {
  border-radius: 15px !important;
  margin-bottom: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 0 !important;
}
.accordion .card:last-child {
  margin-bottom: 0;
}
.accordion .card-header {
  background-color: #FFF;
  border-bottom: 0;
  padding: 0;
}
.accordion .card-header .btn-link {
  width: 100%;
  padding: 30px 30px;
  font-weight: bold;
  color: var(--main);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
  text-align: start !important;
}
.accordion .card-header .btn-link[aria-expanded=true] {
  background-color: #FFF;
  color: var(--main);
}
.accordion .card-header .btn-link:focus {
  box-shadow: none;
}
.accordion .card-body {
  padding: 0px 30px 30px;
  color: #6E6E6E;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .faq-content, .accordion .card-header .btn-link {
    text-align: center !important;
  }
}
/* News Section */
.news{
    padding: 50px 0;
}
.to-news{
    display: table;
    align-items: center;
    margin: 30px auto 0;
    padding: 8px 20px;
    background: var(--main);
    color: #FFF;
    border-radius: 25px;
    transition: all linear .3s;
}
.to-news:hover{
    background-color: var(--sec);
    color: #FFF;
}
.news-section {
  background-color: #FAF7F8;
}
.news-section .section-title {
  font-size: 2.8rem;
}

.news-card {
  background-color: transparent;
  border: 2px solid #C1E1C1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all linear 0.3s !important;
  padding: 30px;
}
.news-card .news-card-image {
  overflow: hidden;
  border-radius: 16px;
  transition: all linear 0.3s !important;
  margin-bottom: 20px;
}
.news-card .news-card-image img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: all linear 0.3s !important;
}
.news-card .news-card-body {
  flex-grow: 1;
}
.news-card .news-card-title {
  margin-bottom: 0.75rem;
}
.news-card .news-card-title a {
  color: #000;
  text-decoration: none;
  transition: all linear 0.3s !important;
}
.news-card .news-card-excerpt p {
  color: #6E6E6E;
  font-size: 0.9rem;
  line-height: 1.6;
}
.news-card .read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all linear 0.3s !important;
}
.news-card .read-more-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #C1E1C1;
  color: #2E7D32;
  border-radius: 50%;
  transition: all linear 0.3s !important;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}
.news-card:hover .news-card-image {
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .news-card {
    margin-bottom: 2rem;
  }
}
/* Contact Section */
.wpcf7 br {
  display: none;
}

.contact-section {
  padding: 40px 0;
}
.contact-section .r-con {
  max-width: 100%;
  margin: 0 auto;
}
.contact-section .r-con .nav-tabs {
  border: none;
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
  justify-content: flex-start;
}
.contact-section .r-con .nav-tabs .nav-link {
  background-color: transparent;
  border: none;
  color: #999;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  /*border-bottom: 3px solid transparent;*/
  transition: all 0.3s ease !important;
}
.contact-section .r-con .nav-tabs .nav-link:hover {
  color: var(--main);
  /*border-bottom-color: #f39c12;*/
}
.contact-section .r-con .nav-tabs .nav-link.active {
  color: var(--main);
  background-color: transparent;
  /* border-bottom: 3px solid #f39c12;*/
}
.contact-section .r-con .tab-content {
  padding: 20px 0;
}
.contact-section .con-con {
  background: var(--sec);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  direction: rtl;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-section .con-con:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.contact-section .con-con .fir {
  background: var(--main);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-section .con-con .fir i {
  font-size: 26px;
  color: #fff;
}
.contact-section .con-con .sec {
  flex: 1;
  text-align: right;
}
.contact-section .con-con .sec h5 {
  color: var(--main);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.contact-section .con-con .sec p,
.contact-section .con-con .sec a {
  color: #fff;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
}
.contact-section .con-con .sec a {
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.contact-section .con-con .sec a:last-child {
  margin-bottom: 0;
}
.contact-section .con-con .sec a:hover {
  color: #f39c12;
  text-decoration: none;
}
.contact-section .l-con {
  padding: 30px;
  border-radius: 16px;
  background: #F5F5F5;
  box-shadow: 0 0 24px 4px #DBDBDB;
  /* علامة الحقول المطلوبة باللون الأحمر */
}
.contact-section .l-con .wpcf7 label {
  display: flex;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2B3D4F;
  justify-content: space-between;
}
.contact-section .l-con .wpcf7 .form-control {
  direction: inherit;
  padding: 12px 15px;
  background-color: #F6F7F8;
  border: 1px solid #DAE0E7;
  border-radius: 6px;
}
.contact-section .l-con .wpcf7 textarea.form-control {
  height: 110px;
  resize: vertical;
}
.contact-section .l-con .wpcf7 .btn-primary {
  background-color: var(--sec);
  border-color: var(--sec);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all linear 0.3s !important;
}
.contact-section .l-con .wpcf7 .btn-primary:hover {
  background-color: var(--main);
  border-color: var(--main);
}
.contact-section .l-con .wpcf7 .form-group {
  margin-bottom: 20px;
}
.contact-section .l-con .wpcf7 label .required {
  color: #FF0000;
}

@media (max-width: 991px) {
  .r-con {
    padding: 0 15px;
  }
  .r-con .nav-tabs .nav-link {
    font-size: 16px;
    padding: 8px 15px;
  }
  .con-con {
    padding: 15px;
    gap: 15px;
  }
  .con-con .fir {
    width: 50px;
    height: 50px;
  }
  .con-con .fir i {
    font-size: 22px;
  }
  .con-con .sec h5 {
    font-size: 14px;
  }
  .con-con .sec p,
  .con-con .sec a {
    font-size: 13px;
  }
}
/*online_service*/
.online-card {
  height: 165px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s !important;
}
.online-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-card .in-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #E4F7F9;
  padding: 20px 15px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  transition: all linear 0.3s !important;
}
.online-card .in-item h5 {
  transition: all linear 0.3s !important;
  color: var(--main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.online-card .in-item p {
  margin-bottom: 0;
  transition: all linear 0.3s !important;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.online-card .in-item a {
  margin-inline-start: auto;
  transition: all linear 0.3s !important;
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.online-card:hover .in-item {
  background-color: transparent;
}
.online-card:hover .in-item p, .online-card:hover .in-item a {
  color: #FFF;
}

/*online_service*/
/*branche*/
.branche {
  padding: 30px 20px;
  background-image: url("../img/bran.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-color: #DEF6FF;
}
.branche .nav-tabs {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.branche .nav-tabs a {
  width: max-content;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #527893;
  border: 0;
  background-color: transparent;
  font-family: Changa-Bold;
  transition: all linear 0.3s !important;
  position: relative;
  padding: 0;
}
.branche .nav-tabs a:after {
  content: "";
  position: absolute;
  height: 5px;
  border-radius: 25px;
  background-color: var(--main);
  bottom: 0;
  width: 0;
  transition: all linear 0.3s !important;
}
.branche .nav-tabs a:hover, .branche .nav-tabs a.active {
  color: var(--main);
  background-color: transparent;
}
.branche .nav-tabs a:hover:after, .branche .nav-tabs a.active:after {
  width: 70px;
}
.branche .main-branche {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.branche .main-branche p, .branche .main-branche a {
  color: #000;
  margin-bottom: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  /* 300% */
}
.branche .main-branche p i, .branche .main-branche a i {
  color: var(--main);
}

/*branche*/
/* ============================================
   Custom Products Section
   ============================================ */
.custom-products-section {
  padding: 60px 0;
  background: #f8f9fa;
}

/* ============================================
   Products Grid Layout
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Product Card
   ============================================ */
.product-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  padding: 5px 7px;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ============================================
   Product Image
   ============================================ */
.product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.product-image {
  width: 100%;
    height: 250px !important;
    max-width: 100%;
    object-fit: cover !important;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

/* ============================================
   Product Info
   ============================================ */
.product-info {
  padding: 20px 15px;
}

.product-title {
font-size: 13px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: inherit;
}

.product-description {
  font-size: 14px;
  color: #000;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-description{
    display:none !important;
}
/* ============================================
   Product Footer (Price + Cart)
   ============================================ */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.money-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.product-price .woocommerce-Price-amount {
  font-size: 18px;
  color: #000;
}

.product-price .woocommerce-Price-currencySymbol {
  font-size: 14px;
  margin-right: 3px;
}

/* ============================================
   Add to Cart Button
   ============================================ */
.add-to-cart-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #EEE;
  border: 1px solid #EEE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease !important;
  color: var(--main);
}

.add-to-cart-btn:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #fff;
  transform: scale(1.1) !important;
}

.add-to-cart-btn svg {
  width: 20px;
  height: 20px;
}

.add-to-cart-btn:active {
  transform: scale(0.95) !important;
}

/* Loading state */
.add-to-cart-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}

.add-to-cart-btn.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Success state */
.add-to-cart-btn.added {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff;
}

/* ============================================
   No Products Message
   ============================================ */
.no-products {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #95a5a6;
  grid-column: 1/-1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .product-title {
    font-size: 16px;
    min-height: 45px;
  }
  .product-description {
    font-size: 13px;
  }
  .product-price {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-info {
    padding: 18px;
  }
}
/* ============================================
   RTL Support
   ============================================ */
/* ============================================
   Mini Cart Animation
   ============================================ */
/* انيميشن عند التحديث */
.mini-cart-items.cart-updated {
  animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
    background: #27ae60;
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Optional: Shake animation */
@keyframes cartShake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.mini-cart-items.cart-shake {
  animation: cartShake 0.5s ease;
}

/* ============================================
   Cart Notification
   ============================================ */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #27ae60;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease !important;
  font-size: 14px;
  font-weight: 600;
}

.cart-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-notification.error {
  background: #e74c3c;
}

@media (max-width: 768px) {
  .cart-notification {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
/*newss-card*/
.newss-card .news-card-link .news-image-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  transition: all linear 0.3s !important;
}
.newss-card .news-card-link .news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newss-card .news-card-link .news-content {
  padding: 20px 0;
}
.newss-card .news-card-link .news-content h3 {
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 176.471% */
}
.newss-card .news-card-link .news-content p {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  transition: all linear 0.3s !important;
  line-height: 27px; /* 207.692% */
}
.newss-card .news-card-link .news-content .read-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 230.769% */
}
.newss-card .news-card-link:hover .news-image-wrapper {
  height: 250px;
}
.newss-card .news-card-link:hover .news-content p {
  max-height: 300px;
  opacity: 1;
}
html[lang="en-US"] .newss-card .news-card-link .news-content .read-more svg{
    transform: scalex(-1);
}
/*footer*/
.button-s {
  display: flex;
  justify-content: flex-end;
}
.button-s button {
  border-radius: 10px;
}

.d-flex .social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}
.d-flex .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  border-radius: 10px;
  transition: all linear 0.3s !important;
}
.d-flex .social a:hover {
  color: var(--main);
}
.d-flex .new-cont {
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}
.d-flex .new-cont i {
  font-size: 22px;
  color: var(--sec);
}
.d-flex .new-cont h5 {
  font-size: 16px;
  color: var(--sec);
  text-align: start;
  margin-bottom: 10px;
}
.d-flex .new-cont a, .d-flex .new-cont p {
  font-size: 16px;
  color: #000;
  text-align: start;
  display: block;
  margin-bottom: 0px;
}
.d-flex .new-cont .r-phone {
  direction: ltr;
}

footer {
  padding: 40px 0px 0px;
  position: relative;
  background-color: #8A7B69;
  background-image: url("../img/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
}
footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 32, 58, 0.9);
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .to-offer {
  width: min(450px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 15px;
}
footer .to-offer h3 {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
footer .to-offer p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
footer .to-offer a {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #FFF;
  font-size: 16px;
  background: linear-gradient(108deg, var(--color-orange-51, #F3A412) 0%, var(--color-orange-60, #F5B53D) 100%);
  box-shadow: 0 8px 32px -8px rgba(243, 164, 18, 0.4);
}
footer .to-offer a:hover {
  color: #FFF;
}
footer .top-foot {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .top-foot .left-foot {
  display: flex;
  align-items: center;
}
footer .top-foot .right-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .top-foot .right-foot div {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .top-foot .right-foot div i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  color: #FFF;
  border-radius: 10px;
  font-size: 24px;
}
footer .top-foot .right-foot div a {
  color: #FFF;
  font-size: 16px;
}
footer .top-foot .right-foot div .value {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 6px;
}
footer .new-cont {
  margin-bottom: 20px;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .new-cont i {
  font-size: 22px;
  color: var(--sec);
}
footer .new-cont h5 {
  font-size: 16px;
  color: var(--sec);
  text-align: start;
  margin-bottom: 10px;
}
footer .new-cont a, footer .new-cont p {
  font-size: 16px;
  color: #FFF;
  text-align: start;
  display: block;
  margin-bottom: 0px;
}
footer .new-cont .r-phone {
  direction: ltr;
}
footer .footer-logo {
  margin-inline-end: 0px;
}
footer .footer-logo img {
  max-height: 75px;
  max-width: 340px;
}
footer .subscr {
  border-radius: 180px;
  background: #FFF;
  padding: 10px 20px;
  margin-bottom: 30px;
}
footer .subscr p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
  text-align: end;
}
footer .who-footer h4 {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
}
footer .who-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}
footer .who-footer p p {
  margin-bottom: 0;
}
footer .who-footer .in-who-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .who-footer .in-who-foot img {
  max-width: 65px;
  max-height: 65px;
}
footer .ig_es_subscription_form {
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
footer .ig_es_subscription_form .es-field-wrap {
  margin-bottom: 0;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter label, footer form.es_subscription_form.wysiwyg-form .new-newsletter br {
  display: none;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  position: relative;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter input[type=email] {
  width: 100%;
  height: 60px;
  padding: 5px 10px;
  border-radius: 500px !important;
  border: 1px solid rgba(6, 6, 6, 0.26) !important;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter input[type=submit] {
  margin-top: 0px !important;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter .main-but {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--main);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter .main-but:before {
  content: url("../img/send.png");
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29px;
  height: 29px;
  pointer-events: none;
  display: block;
  transform: translate(-50%, -50%);
}
footer .location iframe {
  display: block;
  height: 230px;
  border-radius: 10px;
}
footer .social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFF;
  border-radius: 10px;
  transition: all linear 0.3s !important;
}
footer .social a:hover {
  color: var(--main);
}
footer .bord {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
footer h2 {
  font-size: 18px;
  color: #FFF;
  margin-bottom: 30px;
  position: relative;
}
footer h2:before {
  content: url("../img/tit.png");
  position: absolute;
  top: 51%;
  height: 30px;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
footer .pay-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
footer .pay-foot img {
  max-width: 85px;
  max-height: 60px;
  object-fit: contain;
}
footer .col-lg-3 {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
}
footer .col-lg-3:nth-last-of-type(1) {
  border-inline-end: 0px solid rgba(255, 255, 255, 0.1);
}
footer .mid-foot ul {
  width: 100%;
  margin: 0;
  list-style-type: none;
  column-count: 2;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
footer .mid-foot ul li {
  list-style: none;
  text-align: start;
  display: block;
  margin-bottom: 20px;
}
footer .mid-foot ul li a {
  color: #FFF;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:before {
  content: "-";
  font-weight: bold;
  color: #FFF;
  font-size: 20px;
  margin: 0 5px;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:hover {
  color: #FFF;
}
footer .mid-foot ul li a:hover:before {
  color: #FFF;
}

.wpcf7 {
  direction: inherit;
}

footer .us-foot input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  padding: 10px;
  color: #FFF;
}
footer .us-foot input::placeholder {
  color: #FFF;
}
footer .us-foot textarea {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  padding: 10px;
  color: #FFF;
}
footer .us-foot textarea::placeholder {
  color: #FFF;
}
footer .end-foot {
  background-color: transparent;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
footer .end-foot .in-end {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .end-foot .in-end p {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}
footer .end-foot .in-end p a {
  color: #FFF;
  transition: all linear 0.3s !important;
  text-decoration: underline !important;
}
footer .end-foot .in-end p a:hover {
  color: #FFF;
}

/*footer*/
/*breadcrumb*/
.breadcrumb-area {
  padding: 30px 0;
}
.breadcrumb-area .bread-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.breadcrumb-area .bread-row h4 {
  color: #FFF;
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
}
.breadcrumb-area .bread-row .breadcrumb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 28px;
  gap: 10px;
}
.breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-family: Changa-Bold;
  margin-bottom: 0;
  line-height: 100px;
}

.in-head {
  position: relative;
  background-color: transparent;
  background-image: url(../img/head.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.in-head .top-head {
  background-color: #FFF;
}

/*breadcrumb*/
/*single*/
.single-pages .main-header, .single_service .main-header {
  font-size: 48px;
  text-align: center;
}

.map-proj {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: 1px solid #CCC;
  overflow: hidden;
}
.map-proj iframe {
  width: 100%;
  height: 100%;
}

.map-con {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  border: 1px solid #CCC;
  overflow: hidden;
}
.map-con iframe {
  width: 100%;
  height: 100%;
}

.certificates {
  width: 100%;
  height: 250px;
  border-radius: 7px;
  overflow: hidden;
}
.certificates img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-pages .bootom-side p {
  color: #000;
  text-align: justify;
}
.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}
.single-pages .bootom-side.apply p {
  color: #000;
}
.single-pages .top-side {
  padding: 20px 0;
  text-align: center;
}
.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px;
}

.single_service, .single-pages {
  padding: 40px 0;
}

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center;
}
.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px;
}
.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear 0.4s;
}
.single_service .right_side_whous a:hover {
  transition: linear 0.4s;
  background: var(--sec);
}

.partner {
  padding: 50px 0;
}
.partner .owl-dots {
  display: flex;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.partner .owl-dots span {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.partner .owl-dots .owl-dot.active span {
  height: 29px;
  background: rgba(0, 0, 0, 0.87);
}

.part-item {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FFF;
  box-shadow: 0 0 18px 10px rgba(0, 0, 0, 0.01);
  transition: all linear 0.3s !important;
  grid-column: span 1;
  grid-row: span 1;
  padding: 10px 5px;
}
.part-item img {
  width: auto !important;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.part-item:hover {
  transition: all linear 0.3s !important;
}

.single-pages .wpcf7-form label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #161616;
  position: relative;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-pages .wpcf7-form label span {
  color: red;
}
.single-pages .wpcf7-form .btn-primary {
  background-color: var(--sec);
  border-color: var(--sec);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all linear 0.3s !important;
}
.single-pages .wpcf7-form .btn-primary:hover {
  background-color: var(--main);
  border-color: var(--main);
}
.single-pages .wpcf7-form .form-row {
  display: flex;
  gap: 1rem;
}
.single-pages .wpcf7-form .form-group {
  margin-bottom: 0.5rem;
  width: 100%;
}
.single-pages .wpcf7-form .wpcf7-form-control {
  background-color: #fff;
  border: 1px solid #d1f3e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
}
.single-pages .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15);
}
.single-pages .wpcf7-form textarea.wpcf7-textarea {
  height: 150px;
  resize: vertical;
}
.single-pages .wpcf7-form .form-submit-wrapper {
  text-align: left;
}

@media (max-width: 767.98px) {
  .single-pages .wpcf7-form .form-row {
    flex-direction: column;
  }
}
.main-img-proj {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.sec-img-proj {
  width: 100%;
  height: 144px;
  border-radius: 10px;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.po-relative {
  position: relative;
  height: 100%;
  display: block;
}
.po-relative::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.last-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.thr-tit {
  color: var(--sec);
}

/*single*/
html[dir=rtl] .project .d-flex a i {
  transform: scale(-1);
}
html[dir=rtl] .service .owl-nav {
  right: unset;
  left: 0;
}
html[dir=rtl] .branche .nav-tabs a:after {
  right: 0;
}
html[dir=rtl] .dropdown-toggle::after {
  display: none !important;
}
html[dir=rtl] .dropdown-toggle::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
html[dir=rtl] .fixed-social {
  right: 40px;
}
html[dir=rtl] .wpcf7 input[type=url], html[dir=rtl] .wpcf7 input[type=email], html[dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}
html[dir=rtl] .main-hover:before {
  left: 0;
}
html[lang=en-US] #search-submit {
  left: unset;
  right: 0;
}
html[lang=en-US] header .menu-icons .request {
  min-width: max-content;
  padding: 5px;
}
html[lang=en-US] .branche .nav-tabs a:after {
  left: 0;
}
html[lang=en-US] .slide-button-group a svg {
  transform: scale(-1);
}
html[lang=en-US] .single-pages .wpcf7-form .wpcf7-form-control {
  direction: ltr;
}
html[lang=en-US] .main-cat .l-cat a {
  transform: scaleX(-1) rotate(45deg) !important;
}
html[lang=en-US] .main-cat:hover a {
  transform: scaleX(-1) rotate(0deg) !important;
}
html[lang=en-US] .main-hover:before {
  right: 0px;
  transform: scaleX(-1) translateY(-50%);
}
html[lang=en-US] .why-us .timeline-wrapper::before {
  right: unset;
  left: 27px;
}
html[lang=en-US] .fixed-social {
  left: 40px;
}
html[lang=en-US] .testimonials-section .owl-dots {
  bottom: 0;
}
html[lang=en-US] .form-control {
  text-align: left;
}
html[lang=en-US] .nav-list > .link > a {
  font-size: 11px;
  padding: 8px 0px;
}
html[lang=en-US] footer form.es_subscription_form.wysiwyg-form .new-newsletter .in-new-newsletter .main-but {
  right: 10px;
  left: unset;
  transform: translateY(-50%) rotate(90deg);
}
html[lang=en-US] .online-card .in-item {
  padding: 10px 15px;
}

@media (max-width: 991px) {
  html[lang=en-US] .why-us .timeline-wrapper::before {
    right: unset;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-list > .link > a {
    padding: 13px 5px;
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
    
    
    .whatsapp-text{
        display:none;
    }
    .woocommerce ul.order_details { 
    column-count: 1;
    margin-bottom: 0;
}
    
    .woocommerce ul.order_details li {
    float: unset;
    margin-bottom: 20px;
        
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  header .top-head .top-top .fir-con {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }
  .testimonials-section .owl-dots {
    display: none;
  }
  .d-flex.align-items-center.justify-content-between.gap-1.flex-wrap.mb-4 {
    flex-direction: column;
  }
  .main-cat {
    padding: 10px 5px;
  }
  .main-cat .img-cat {
    height: 250px;
  }
  .main-cat .l-cat {
    margin-top: 10px;
  }
  .main-cat .l-cat .icon-cat {
    width: 70px;
    height: 70px;
  }
  .main-cat .l-cat .icon-cat img {
    width: 100%;
    height: 100%;
  }
  .slide-button-group a {
    min-width: 140px !important;
    height: 40px !important;
    font-size: 16px !important;
    padding: 6px 2px !important;
  }
  .slide-title {
    line-height: 24px;
    text-align: center;
  }
  .slide-subtitle {
    padding: 0 7px;
    margin: 0 0 5px;
  }
  .slide-button-group {
    gap: 10px;
  }
  .features-section .main-num {
    margin-bottom: 20px;
  }
  header .menu-icons .request {
    display: none;
  }
  .features-section .feature-graph {
    width: 80%;
  }
  .features-section .feature-graph .img-a {
    width: 55px;
    height: 55px;
  }
  .features-section .feature-graph .img-b {
    width: 45px;
    height: 45px;
  }
  .contact-section .l-con {
    padding: 20px 10px;
  }
  footer .top-foot {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }
  footer .top-foot .right-foot {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }
  .hero-section .owl-dots {
    top: 67%;
  }
  .info-box {
    width: 100% !important;
  }
  .project, .gallery {
    padding: 35px 0;
  }
  .partner {
    padding: 35px 0 50px;
  }
  header .top-head .top-top {
    padding: 7px 10px;
  }
  header .menu-icons .new-lang {
    display: none;
  }
  .main-header {
    font-size: 32px;
    padding: 0 10px;
  }
  .main-header span:nth-of-type(2) {
    font-size: 16px;
  }
  .accordion-owl .owl-item {
    height: 400px;
  }
  .accordion-owl .owl-item:hover {
    height: 400px;
  }
  .hero-section .row {
    flex-direction: column-reverse;
  }
  .hero-section .row .r-hero {
    margin-top: 15px;
  }
  footer .subscr {
    border-radius: 20px;
    padding: 10px 5px;
  }
  footer .footer-logo, footer .subscr p {
    text-align: center;
  }
  footer .subscr .col-lg-4 {
    margin-bottom: 15px;
  }
  header .top-head .main-top-header {
    flex-direction: column;
  }
  footer h2 {
    margin-top: 20px;
  }
  .single_service, .single-pages {
    padding: 40px 0 !important;
  }
  .why-us .timeline-wrapper::before {
    right: 57px;
  }
  .main-slider .item .in-item h2 {
    line-height: 55px;
    font-size: 38px;
  }
  .hero .main-slider .item h2 {
    font-size: 28px;
    line-height: 40px;
  }
  header .logo img {
    max-width: 140px;
  }
  .main-hover {
    width: 150px;
    height: 40px;
  }
  footer .bord {
    border: 0;
  }
  .branche .main-branche {
    flex-direction: column;
  }
  .branche .main-branche p, .branche .main-branche a {
    font-size: 16px;
  }
  .breadcrumb-area .bread-row h4 {
    font-size: 38px;
  }
  .breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
    font-size: 18px;
  }
  .fixed-social i, .fixed-social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  html[dir=rtl] .fixed-social {
    right: 20px;
  }
  html[lang=en-US] .fixed-social {
    left: 20px;
  }
}
/**************woocomerce****************/
.woocommerce-loop-product__title {
  font-size: 24px;
}

.product-content-main {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  height: 100%;
  background: #f7f7f5 !important;
  display: flex;
  border-radius: 10px;
  position: relative;
  justify-content: center;
  border: 2px solid var(--main);
  flex-direction: column;
  align-items: center;
}

.product-content-main .price-pack {
  position: absolute;
  background-image: url(../img/price-tag.png);
  top: 0;
  height: 65px;
  width: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  left: -12px;
  background-repeat: no-repeat;
  background-size: cover;
}

.woocommerce .woocommerce-ordering {
  display: none !important;
}

.woocommerce .woocommerce-result-count {
  padding-inline-start: 40px;
  margin: 0 0 1em;
  display: none;
  font-weight: bold;
}

.product-content-main .price-pack p {
  margin: 8px 15px 0 0px;
}

.product-content-main .image-product {
  width: 100%;
}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  padding: 10px;
  border: 1px solid var(--sec);
  border-radius: 5px;
  background: transparent;
}

.added_to_cart.wc-forward {
      padding-top: 0px !important;
    display: inline-flex !important;
    height: 100%;
    margin-top: 2px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: absolute;
    color: #FFF;
    border-radius: 25px;
    background-color: var(--sec);
    margin-inline-start: 0px;
}

.woocommerce-Price-amount {
  color: var(--main);
  margin-bottom: 0px;
  display: inline-block;
  font-weight: bold !important;
}

del .woocommerce-Price-amount {
  text-decoration: line-through !important;
  color: #4a4a4a !important;
}

.all-product-content {
  text-align: center !important;
  width: 100%;
  display: flex;
  padding: 15px 0 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 50% !important;
}

.woocommerce .col-1 {
  flex: 50% !important;
  max-width: 50% !important;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  width: 50% !important;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  margin: 0 !important;
  border: 0 !important;
}

.woocommerce .col-2 {
  flex: 50% !important;
  max-width: 50% !important;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
     max-width: 30px;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #fff;
  font-weight: bold;
}

.woocommerce-MyAccount-content a {
  color: var(--sec);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
}

.woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
  border: 1px solid #ddd !important;
  padding: 5px !important;
}

.product-content-main .image-product a {
  width: 100% !important;
}

.cart-head {
  text-align: end;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img {
  width: 100px !important;
}

.cart-head a {
  text-align: center;
  margin: 0 10px;
  color: #2b476b;
  font-weight: bold;
  font-size: 14px;
  padding: 0;
  transition: all ease-in-out 0.5s;
}

.woocommerce-account .woocommerce form .form-row input.input-text, .woocommerce-account .woocommerce form .form-row input[type=password] {
  height: 40px !important;
  border-radius: 20px !important;
  border: 1px solid #CCC;
  padding: 0 15px !important;
}

.woocommerce-account .woocommerce .col2-set .col-1 h2, .woocommerce-account .woocommerce .col2-set .col-2 h2 {
  padding: 30px 30px 0;
  margin-bottom: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
  margin: 20px 0;
}

.woocommerce-form.woocommerce-form-register.register p:nth-of-type(2) {
  color: red;
}

.woocommerce-LostPassword.lost_password a {
  color: red;
}

.woocommerce-privacy-policy-text p {
  color: var(--main) !important;
}

.woocommerce-privacy-policy-text p a {
  color: var(--sec) !important;
}

.woocommerce-LostPassword.lost_password {
  text-align: end !important;
  margin-top: -60px !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 150px !important;
}

.woocommerce #review_form #respond textarea {
  border: 1px solid var(--main);
  border-radius: 10px;
}

.woocommerce #review_form #respond p input[type=email],
.woocommerce #review_form #respond p input[type=text] {
  width: 100%;
  border: 1px solid var(--main);
  padding: 6px 10px;
  border-radius: 10px;
}

.woocommerce-account .woocommerce .col2-set .col-1, .woocommerce-account .woocommerce .col2-set .col-2 {
  width: 47% !important;
  margin-top: 0;
  margin: 0 10px;
  height: 100%;
  min-height: 405px;
  float: unset !important;
}

.woocommerce .quantity .qty {
  width: 132px;
  text-align: center;
  padding: 4px 0;
  margin-inline-end: 10px;
}

.woocommerce div.product div.images img {
  max-height: 500px;
  object-fit: contain;
}

.summary.entry-summary .main-header {
  color: #000;
  text-align: start;
  margin: 0 0 20px;
  font-size: 28px;
}

.woocommerce-account .woocommerce .col2-set {
  display: flex;
  justify-content: space-between;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--sec) !important;
  color: #fff;
  transition: linear 0.4s;
  border-radius: 22px !important;
}

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background-color: var(--sec) !important;
  transition: linear 0.4s;
  color: #FFF;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100px !important;
  height: 100px !important;
  margin-bottom: 25px !important;
}

.woocommerce form .form-row {
  display: block !important;
}

.select2-container--default .select2-selection--single {
  border: 0 !important;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: right;
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px;
  margin: 10px 0;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  width: 100% !important;
}

.woocommerce .col-1, .woocommerce .col-2 {
  flex: 100% !important;
  max-width: 100% !important;
}

.checkout {
  display: flex;
}

.woocommerce-checkout .content {
  background: #f8f8f8;
}

.woocommerce-checkout .woocommerce-shipping-fields {
  display: none !important;
}

.woocommerce-info {
  border-top-color: #141415;
  background: var(--main);
  color: #FFF;
  font-weight: bold;
}

.woocommerce-info::before {
  color: #FFF;
}

.woocommerce-info .showcoupon {
  color: #FFF;
}

.posted_in a {
  color: var(--main);
}

.r-ch {
  margin: 0 10px;
  padding: 10px;
  background: #FFF;
  border: 2px solid var(--sec);
  border-radius: 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

input[type=number] {
  border: 1px solid #2b476b;
}

.woocommerce button[name=update_cart],
.woocommerce input[name=update_cart] {
  display: none;
}

.breadcrumbs .taxonomy.product_cat {
  display: none;
}

.page-main .product_meta {
  display: none;
}

#tab-reviews {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: linear 0.4s;
}

.open-reveiw {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  transition: linear 0.4s;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: right;
  background: #FFF;
  border-radius: 5px;
  border: 2px solid var(--sec);
  padding: 5px;
}

.woocommerce-checkout .single-pages .bootom-side input, .woocommerce-checkout .single-pages .bootom-side textarea {
  border: 0px solid #b7b7b7;
}

.checkout {
  display: flex;
}

.woocommerce form .form-row select {
  padding: 10px 0;
}

.add-to-cart a {
  color: #fff !important;
  background-color: var(--sec);
  padding: 6px 33px;
}

.woocommerce-checkout table.shop_table th {
  width: 50%;
}

.woocommerce div.product .stock {
  color: #498456;
  font-weight: bold;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first .input-text {
  border: 1px solid #b7b7b7 !important;
}

.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after {
  display: none;
}

/*comment*/
.comment-reply-title {
  margin: 20px 0 15px;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 3px 5px !important;
  font-size: 1.75rem !important;
}

.comment-reply-title:before {
  content: "";
  width: 75%;
  height: 100%;
  background-color: var(--main);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
  position: absolute;
}

.comment {
  color: #000;
  font-weight: bold;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.commentlist {
  list-style: none;
}

.comment .comment-author.vcard {
  margin-top: 20px;
}

.comment .comment-meta.commentmetadata {
  margin-inline-start: 70px;
}

.comment .comment-author.vcard img {
  width: 50px;
  height: 50px;
  margin-inline-end: 20px;
  margin-bottom: -20px;
  border-radius: 50%;
}

.comment .says {
  display: none;
}

.comment .fn a {
  color: #707070;
  margin-inline-end: 5px;
}

.comment p {
  margin: 10px 0;
  font-family: DG-Heaven-Light;
}

.comment .reply a {
  padding: 5px 19px;
  border: 1px solid #ccc;
  vertical-align: text-top;
  margin: 10px 0 0;
  display: inline-block;
}

#commentform .logged-in-as {
  margin: 15px 0;
  display: block;
}

.comment-awaiting-moderation {
  margin-inline-start: 70px;
  margin-bottom: 7px;
  display: inline-block;
}

.comment-reply-title a {
  color: #707070;
  margin-inline-end: 5px;
}

.comment-reply-title small a {
  padding: 5px 19px;
  border: 1px solid #ccc;
  vertical-align: text-top;
}

#comments {
  font-weight: bold;
  color: var(--main);
  margin-bottom: 30px;
}

.comment a, .logged-in-as a {
  color: rgba(51, 51, 51, 0.7);
}

#commentform p {
  padding: 0;
  margin: 0;
}

#commentform input[type=text], #commentform textarea {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  vertical-align: baseline;
  padding: 10px;
  color: #282828;
  border: 1px solid var(--main);
  background-color: transparent;
}

#commentform input.submit:hover {
  transition: linear 0.4s;
  background-color: var(--sec);
}
html[lang="en-US"] .comment-reply-title:before{
        left: 0;
    transform: translateY(-50%) scalex(-1);
    right:unset;
}
/*comment*/
@media (max-width: 992px) {
  .switcher {
    margin: 0 auto !important;
  }
  .new-baner-1 img {
    height: 250px;
  }
  .woocommerce-account .woocommerce .col2-set {
    flex-direction: column !important;
  }
  .woocommerce-account .woocommerce .col2-set .col-1, .woocommerce-account .woocommerce .col2-set .col-2 {
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .checkout {
    flex-direction: column;
  }
  .woocommerce-LostPassword.lost_password {
    margin-top: 0 !important;
  }
  .products.columns-4.row .col-12 {
    margin-bottom: 30px;
  }
  .new-baner-1 p {
    color: #749f82;
  }
  .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
    float: unset !important;
    display: table;
    margin: 0 auto 20px !important;
  }
}


/* ============================================
   WooCommerce Block-Based Cart & Checkout
   Latest Version CSS Styling
   ============================================ */

/* ============================================
   Page Container
   ============================================ */
 

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-outer-block,
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-outer-block {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Cart Block - Main Table
   ============================================ */
.wc-block-cart-items {
    background: #fff;
    border-radius: 15px;
        overflow: hidden;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: none !important;
}

/* Cart Items Header */
.wc-block-cart-items__header {
    background: var(--main) !important;
}

.wc-block-cart-items__header th {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 15px !important;
    border: none !important;
}

/* Cart Items Rows */
.wc-block-cart-items__row {
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease;
}

.wc-block-cart-items__row:hover {
    background: #f8f9fa !important;
}

.wc-block-cart-items__row td {
    padding: 20px 15px !important;
    vertical-align: middle !important;
    border: none !important;
}

/* Product Image */
.wc-block-cart-item__image img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Product Name */
.wc-block-cart-item__product-name,
.wc-block-cart-item__product-name a {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.wc-block-cart-item__product-name a:hover {
    color: var(--main) !important;
}

/* Product Price */
.wc-block-cart-item__price,
.wc-block-cart-item__total {
    color: var(--main) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.wc-block-components-formatted-money-amount {
    color: var(--main) !important;
    font-weight: 700 !important;
}

/* Quantity Selector */
.wc-block-components-quantity-selector {
    display: inline-flex !important;
    align-items: center;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: #fff !important;
}

.wc-block-components-quantity-selector__input {
    width: 60px !important;
    height: 40px !important;
    text-align: center !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    background: transparent !important;
}

.wc-block-components-quantity-selector__button {
    width: 35px !important;
    height: 40px !important;
    background: #f8f9fa !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50 !important;
    font-size: 18px !important;
}

.wc-block-components-quantity-selector__button:hover {
    background: var(--main) !important;
    color: #fff !important;
}

.wc-block-components-quantity-selector__button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Remove Item Button */
.wc-block-cart-item__remove-link {
        display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 115px !important;
    height: 35px !important;
    background: #e74c3c !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none !important;
}

.wc-block-cart-item__remove-link:hover {
    background: #c0392b !important;
    transform: scale(1.1);
}

.wc-block-cart-item__remove-icon {
    fill: #fff !important;
}

/* ============================================
   Cart Totals Sidebar
   ============================================ */
.wp-block-woocommerce-cart-totals-block {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.wc-block-components-totals-wrapper {
    border: none !important;
}

/* Totals Title */
.wc-block-components-totals-wrapper h2,
.wp-block-woocommerce-cart-totals-block h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid var(--main) !important;
}

/* Totals Items */
.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.wc-block-components-totals-item__label {
    font-weight: 600 !important;
    color: #555 !important;
    font-size: 15px !important;
}

.wc-block-components-totals-item__value {
    font-weight: 700 !important;
    color: #2c3e50 !important;
    font-size: 16px !important;
}

/* Total Footer */
.wc-block-components-totals-footer-item {
    padding: 20px 0 !important;
    border-top: 2px solid var(--main) !important;
    border-bottom: none !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 20px !important;
    color: var(--main) !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 24px !important;
    color: var(--main) !important;
}

/* ============================================
   Buttons
   ============================================ */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    width: 100% !important;
    padding: 18px !important;
    background: var(--main) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-align: center !important;
    margin-top: 20px !important;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    background: #2c3e50 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.wc-block-components-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Continue Shopping Link */
.wc-block-cart__submit-container a {
     
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wc-block-cart__submit-container a:hover {
    
}

/* ============================================
   Coupon Form
   ============================================ */
.wc-block-components-totals-coupon {
    padding: 20px !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    margin: 20px 0 !important;
}

.wc-block-components-totals-coupon__content {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.wc-block-components-totals-coupon__input {
    flex: 1;
    padding: 12px 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease;
}

.wc-block-components-totals-coupon__input:focus {
    outline: none !important;
    border-color: var(--main) !important;
}

.wc-block-components-totals-coupon__button {
    padding: 12px 25px !important;
    background: #27ae60 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-block-components-totals-coupon__button:hover {
    background: #229954 !important;
}

/* Applied Coupons */
.wc-block-components-totals-coupon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px !important;
    background: #d4edda !important;
    border-radius: 8px !important;
    margin: 10px 0 !important;
}

.wc-block-components-chip {
    background: #28a745 !important;
    color: #fff !important;
    padding: 5px 15px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ============================================
   Checkout Block
   ============================================ */
.wp-block-woocommerce-checkout-fields-block {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Checkout Sections */
.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields {
    margin-bottom: 30px;
}

.wc-block-checkout__contact-fields h2,
.wc-block-checkout__shipping-fields h2,
.wc-block-checkout__billing-fields h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid var(--main) !important;
}

/* Form Fields */
.wc-block-components-text-input,
.wc-block-components-select,
.wc-block-components-textarea {
    margin-bottom: 20px !important;
}

.wc-block-components-text-input label,
.wc-block-components-select label,
.wc-block-components-textarea label {
    display: block !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}

.wc-block-components-text-input .wc-block-components-text-input__input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
    background: #fff !important;
}

.wc-block-components-text-input .wc-block-components-text-input__input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus {
    outline: none !important;
    border-color: var(--main) !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05) !important;
}

/* Required Field Indicator */
.wc-block-components-validation-error {
    color: #e74c3c !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

/* ============================================
   Order Summary (Checkout)
   ============================================ */
.wp-block-woocommerce-checkout-order-summary-block {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.wc-block-components-order-summary {
    border: none !important;
}

.wc-block-components-order-summary-item {
    display: flex;
    align-items: center;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.wc-block-components-order-summary-item__image {
    width: 60px !important;
    height: 60px !important;
    margin-left: 15px !important;
}

.wc-block-components-order-summary-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px;
}

.wc-block-components-order-summary-item__quantity {
    background: var(--main) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: -10px 0 0 -10px !important;
}

.wc-block-components-order-summary-item__description {
    flex: 1;
}

.wc-block-components-order-summary-item__description strong {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

/* ============================================
   Payment Methods
   ============================================ */
.wc-block-components-payment-method-options {
    margin: 20px 0 !important;
}

.wc-block-components-radio-control-accordion-option {
    padding: 15px !important;
    margin-bottom: 10px !important;
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.wc-block-components-radio-control-accordion-option:hover {
    border-color: var(--main) !important;
}

.wc-block-components-radio-control-accordion-option.is-checked {
    border-color: var(--main) !important;
    background: #f8f9fa !important;
}

.wc-block-components-radio-control__label {
    font-weight: 600 !important;
    color: #2c3e50 !important;
}

.wc-block-components-payment-method-content {
    padding: 15px !important;
    background: #fff !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
    border-right: 3px solid var(--main) !important;
}

/* ============================================
   Shipping Methods
   ============================================ */
.wc-block-components-radio-control {
    margin: 15px 0 !important;
}

.wc-block-components-radio-control__option {
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease;
}

.wc-block-components-radio-control__option:hover {
    border-color: var(--main) !important;
}

.wc-block-components-radio-control__option.is-checked {
    border-color: var(--main) !important;
    background: #f8f9fa !important;
}

/* ============================================
   Messages & Notices
   ============================================ */
.wc-block-components-notice-banner {
    padding: 20px 25px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.wc-block-components-notice-banner.is-info {
    background: #d1ecf1 !important;
    border-right: 4px solid #17a2b8 !important;
}

.wc-block-components-notice-banner.is-success {
    background: #d4edda !important;
    border-right: 4px solid #28a745 !important;
}

.wc-block-components-notice-banner.is-error {
    background: #f8d7da !important;
    border-right: 4px solid #e74c3c !important;
}

.wc-block-components-notice-banner.is-warning {
    background: #fff3cd !important;
    border-right: 4px solid #ffc107 !important;
}

/* ============================================
   Empty Cart
   ============================================ */
.wp-block-woocommerce-empty-cart-block {
    text-align: center;
    padding: 60px 20px;
}

.wp-block-woocommerce-empty-cart-block h2 {
    font-size: 28px !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-components-button {
    display: inline-block !important;
    width: auto !important;
    padding: 15px 40px !important;
}

/* ============================================
   Cart Submit Container Shadow Fix
   ============================================ */
.wc-block-cart__submit-container {
    background: #fff !important;
    padding: 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05) !important;
}

.wc-block-cart__submit-container::before {
    display: none !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .wp-block-woocommerce-cart,
    .wp-block-woocommerce-checkout {
        padding: 30px 0;
    }
    
    .wc-block-cart-items,
    .wp-block-woocommerce-cart-totals-block,
    .wp-block-woocommerce-checkout-fields-block,
    .wp-block-woocommerce-checkout-order-summary-block {
        padding: 20px !important;
    }
    
    .wc-block-cart-item__image img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .wc-block-cart-items {
        overflow-x: auto;
    }
    
    .wc-block-components-button,
    .wc-block-cart__submit-button {
        font-size: 16px !important;
        padding: 15px !important;
    }
    
    .wc-block-components-totals-coupon__content {
        flex-direction: column;
    }
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] .wc-block-components-order-summary-item__image {
    margin-left: 0 !important;
    margin-right: 15px !important;
}

[dir="rtl"] .wc-block-components-notice-banner.is-info,
[dir="rtl"] .wc-block-components-notice-banner.is-success,
[dir="rtl"] .wc-block-components-notice-banner.is-error,
[dir="rtl"] .wc-block-components-notice-banner.is-warning {
    border-right: none !important;
    border-left: 4px solid !important;
}

[dir="rtl"] .wc-block-components-payment-method-content {
    border-right: none !important;
    border-left: 3px solid var(--main) !important;
}




/***********woocomerce****************/

/*# sourceMappingURL=main.css.map */
