
:root {
  --default-font: "IBM Plex Sans Arabic",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "IBM Plex Sans Arabic",  sans-serif;
  --nav-font: "IBM Plex Sans Arabic", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #231f20; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cfa12a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #231f20;  /* The default color of the main navmenu links */
  --nav-hover-color: #cfa12a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #231f20; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cfa12a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* XM Yermook Font */
@font-face {
  font-family: 'XM Yermook';
  src: url('../vendor/bootstrap-icons/fonts/XM Yermook.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
/* تنسيق الزر ليظهر بجانب الأيقونات */
.language-toggle-btn {
    position: absolute;
    top: 10px; /* اضبط القيمة وفقاً لتصميمك */
    right: 20px; /* تعديل الموضع ليكون بجوار الأيقونة */
    padding: 8px 12px;
    background-color: #ff4d4d; /* اللون الأحمر للزر */
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

/* تأثير التحويم على الزر */
.language-toggle-btn:hover {
    background-color: #e60000; /* تأثير عند التحويم */
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Apply XM Yermook font to "مجموعة إيراسا" */
.erasa-group-text {
  font-family: 'XM Yermook', var(--heading-font), sans-serif;
  font-weight: normal;
}

/* Apply font to span elements containing "مجموعة إيراسا" */
span.erasa-group-text {
  font-family: 'XM Yermook', var(--default-font), sans-serif;
  font-weight: normal;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  /* background-color: white; */
  transition: all 0.5s;
  z-index: 997;
  width: 100%;
  overflow: visible;
}
.header-contact-bar{
  padding: 5px 0;
  width: 1070px;
}
.header-contact-bar p{
  color: white;
  margin: 0px;
  padding: 0px 15px;
}
.header-contact-bar span{
  color: white;
  
}
.btn-appointment {
  background-color: #cfa12a !important;
  color: #231f20 !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
}
.btn-appointment:hover {
  background-color: #b8901f !important;
  color: #231f20 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 161, 42, 0.3);
}

/* Primary Button Styling */
.btn-primary {
  background-color: #cfa12a !important;
  color: #231f20 !important;
  border-color: #cfa12a !important;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #b8901f !important;
  border-color: #b8901f !important;
  color: #231f20 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 161, 42, 0.3);
}
.header-big-container{
  width: 1100px; 
  background-color: white;
  overflow: visible;
}
.header hr{
  margin: 0px;
  border: 0.5px solid white;
  width: 100%;
  opacity: 0.25;
}
.header .container-fluid{
  border-radius: 6px;
}
.navmenu ul{
  width: 45%;
}
.header .logo {
  line-height: 1;
  overflow: visible;
}

.header .logo img {
  height: 80px;
  max-height: 80px;
  width: auto;
  position: relative;
  top: 0;
  z-index: 1001;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(276.46deg, #461574 0.39%, #00E29C 62.71%, #461573 119.4%);
  font-size: 17px;
  padding: 12px 77px 12px 45px;
  position: relative;
  border-radius: 30px;
  margin-right: 100px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, var(--accent-color), transparent 15%); */
}

@media (max-width: 1200px) {
  
  .header .logo img {
    height: 40px;
    left: 50%;
    top: 0px;
    margin: 0;
    position: unset;
  }
  .header-big-container{
    width: 100%; 
  }
  .navmenu ul{
    width: 100%;
  }
  .header-contact-bar{
    padding: 5px 0;
    width: 100%;
    flex-direction: column;
  }
  .header-contact-inner{
    flex-direction: column;
  }
  .header-contact-separator{
    display: none;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 8px;
    text-align: left;
    width: 150px;
    margin-left: 10px;
  }
  .header .btn-getstarted img{
    position: absolute;
    top: 0px;
    right: 1px;
    width: 37px;
    height: 37px;
  }

  .header .navmenu {
    order: 1;
    width: 100%;
    align-items: center;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .navmenu > ul:first-of-type,
  .navmenu > ul.justify-content-start {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex: 1;
    padding-left: 30px;
    z-index: 1002;
    position: relative;
    order: 1;
  }

  .navmenu > ul:first-of-type li,
  .navmenu > ul.justify-content-start li {
    margin: 0;
  }

  .navmenu > ul:first-of-type a,
  .navmenu > ul.justify-content-start a {
    padding: 18px 12px;
    position: relative;
    z-index: 1002;
    font-family: 'XM Yermook', var(--nav-font);
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -18.2px; /* عدّل القيمة حسب الارتفاع */
    z-index: 100;
    margin: 0;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
  }
  
  .navmenu .logo a {
    pointer-events: auto;
  }

  .navmenu .logo img {
    position: relative;
    left: auto;
    margin-left: 0;
    top: 0;
    margin-top: 0;
    height: 80px;
    max-height: 80px;
    width: auto;
  }

  .header-list-2 {
    margin-right: 0 !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
    width: auto !important;
    flex: 1;
    z-index: 1002;
    position: relative;
    order: 3;
  }

  .header-list-2 li {
    list-style: none;
  }

  .header-list-2 .dropdown {
    position: relative;
  }

  .header-list-2 .dropdown-menu {
    right: 0;
    left: auto;
    margin-top: 10px;
  }

  .header-list-2 .nav-link {
    color: #666666;
    padding: 18px;
    font-size: 18px;
    font-family: 'XM Yermook', var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 1002;
  }

  .header-list-2 .nav-link:hover,
  .header-list-2 .nav-link.active {
    color: var(--nav-hover-color);
  }

  .navmenu li {
    position: relative;
  }

.navmenu a,
.navmenu a:focus {
  color: #666666;
  padding: 18px;
  font-size: 18px;
  font-family: 'XM Yermook', var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    /* padding-right: 0; */
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    font-family: 'XM Yermook', var(--nav-font);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  /* Bootstrap Dropdown Menu Styling */
  .navmenu .dropdown-menu {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    border: none;
    border-radius: 4px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    margin-top: 10px;
  }

  .navmenu .dropdown-menu li {
    list-style: none;
  }

  .navmenu .dropdown-menu .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    transition: all 0.3s ease;
    white-space: normal;
    line-height: 1.5;
    font-family: 'XM Yermook', var(--nav-font);
  }

  .navmenu .dropdown-menu .dropdown-item:hover {
    background-color: rgba(207, 161, 42, 0.1);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown-toggle::after {
    margin-right: 5px;
    vertical-align: 0.15em;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    justify-content: flex-end;
  }
    .navmenu ul {
      display: none;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin-top: 48px;
      background-color: white;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); */

  }
  .header-list-2{
    margin-top: -40px !important;
  }
  .header .logo{
    position: absolute;
    left: 50%;
    margin-left: -75px;
    width: 100px;
    height: 74px;
    max-height: 100px;
    top: 0px;
  }
  .header .logo img{
     height: 70px;
     max-height: 100px;
  }
  .header .container-fluid{
    border-radius: 0px;
    height: 55px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start !important;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-image: url(../img/Footer-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  font-size: 14px;
  padding-bottom: 20px;
  padding-top: 50px;
  position: relative;
  direction: rtl;
  text-align: right;
  overflow: hidden;
  min-height: 400px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.footer .container,
.footer .footer-top,
.footer .footer-container-desktop,
.footer > * {
  position: relative;
  z-index: 1;
}

/* .footer-logo{
  margin-right: 80px;
} */

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  color: white;
  text-align: right;
  direction: rtl;
  font-family: 'XM Yermook', var(--default-font), sans-serif !important;
}
.footer-input{
  padding: 10px;
  border: 1.5px solid #FFFFFF1A;
}
.footer-input input {
  padding: 5px;
  background: none;
  border: none;
  outline: none; 
  color: white;
}
.footer-input input::placeholder {
  color: white; /* Sets the placeholder text color to white */
}

.footer-input input:focus, 
.footer-input input:active {
  outline: none; /* Ensures no outline on focus or active state */
}
.footer-input button{
  background-color: #B69D74;
    border: none;
    padding: 5px 15px;
}
.footer .footer-links {
  margin-bottom: 30px;
  padding-right: 60px;
  padding-left: 0;
  text-align: right;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  direction: rtl;
  text-align: right;
}

.footer .footer-links ul i {
  margin-left: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: block;
  direction: rtl;
  text-align: right;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-links ul li:last-child {
  border-bottom: none;
}

.footer-links-list li,
.footer-contact-list li {
  margin-bottom: 0;
}

.footer .footer-links ul li a {
  display: block;
  direction: rtl;
  text-align: right;
  width: 100%;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer .footer-links ul li a:hover {
  padding-right: 5px;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li a {
  color: white;
  line-height: 1.6;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
}

.footer .footer-links ul li a:hover {
  color: #cfa12a;
}
.footer-contact-below p{
  color: #B69D74;
}
.footer-social-icons img{
  margin-right: 20px;
}
.footer .footer-about {
  direction: rtl;
  text-align: right;
}

.footer-about-inner {
  direction: rtl;
  text-align: right;
  align-items: flex-end;
  gap: 15px;
}

.footer-logo-wrapper {
  align-self: center !important;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-about-inner p,
.footer-text-xm {
  text-align: right;
  direction: rtl;
  width: 100%;
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  font-family: 'XM Yermook', var(--default-font), sans-serif !important;
  word-spacing: 2px;
  letter-spacing: 0.5px;
  white-space: normal;
}

.footer-link-xm,
.footer-contact-xm {
  font-family: 'XM Yermook', var(--default-font), sans-serif !important;
  word-spacing: 2px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-left: 20px;
  margin-right: 0;
}
.footer .footer-about a p{
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-align: center;
  width: 60%;
}

.footer .footer-contact h3 {
  color:white;
  font-weight: 600;
  font-size: 18px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 8px 20px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    width: 50%;
    font-family: var(--default-font);
   color: #033A5B;
}

.section-title p {
  font-size: 22px;
    color: #B69D74;
    font-weight: 400;
  margin: 10px 0 0 0;
  font-family: var(--heading-font);
  width: 60%;
  margin-left: 20%;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0px;
  /* margin-top: 80px; */
  display: flex;
  align-items: center;
  background: none;
  overflow: hidden;
}

.hero-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 88.18px;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: right;
}

.hero-content {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-right: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: flex-start;
  }

  .hero-content h1 {
    max-width: 100%;
    text-align: right;
  }

  .hero-content p {
    max-width: 100%;
    text-align: right;
  }

  .hero-text-logo-wrapper {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
  
  .hero-logo-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
  
  .hero-text-content {
    margin-left: 30px !important;
    margin-right: 0 !important;
    text-align: right !important;
    flex: 1 !important;
    max-width: calc(100% - 180px) !important;
  }
}

.hero p {
  color: #ffffff;
  margin: 20px 0;
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  line-height: 1.8;
}

.hero-text-logo-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  direction: ltr !important;
  gap: 0 !important;
  padding: 0 !important;
}

.hero-logo-container {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-shrink: 0 !important;
  margin-top: 5px !important;
  order: 1 !important;
  width: auto !important;
  margin-left: 150px !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

.hero-text-content {
  flex: 1 !important;
  min-width: 0 !important;
  direction: rtl !important;
  text-align: right !important;
  order: 2 !important;
  width: auto !important;
  margin-left: 20px !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

.hero-logo {
  max-width: 400px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
  transition: all 0.3s ease;
  opacity: 0.95;
  animation: heroLogoFadeIn 0.8s ease-out;
}

@keyframes heroLogoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.95;
    transform: translateY(0);
  }
}

.hero-logo:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 8px 20px rgba(207, 161, 42, 0.4));
  opacity: 1;
}


.hero-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-btns .know-more,
.hero-btns .contact-us {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-btns .know-more {
  background: #cfa12a;
  color: #231f20;
  border: 2px solid #cfa12a;
}

.hero-btns .know-more:hover {
  background: #b8901f;
  border-color: #b8901f;
  color: #231f20;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 161, 42, 0.3);
}

.hero-btns .contact-us {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-btns .contact-us:hover {
  background: #cfa12a;
  color: #231f20;
  border-color: #cfa12a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 161, 42, 0.3);
}
.hero-features {
  margin-top: 40px;
  padding: 20px 0;
}

.hero-features img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-features img:hover {
  transform: translateY(-5px);
}
.about-hero{
}
.word-hero{
  background-size: cover;
}
.about-hero-img{
  position: absolute;
  bottom: -24px;
  left: 0px;
  padding: 0px;
}
.about-hero-img img{
  max-width: 50%;
}
.about-hero{
  min-height: 60vh;
  background-size: cover;

}
.about-hero h1{
  color: white;
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 0px;
  letter-spacing: -0.01em;
  text-align: right;
}
.ab-he-hed-mbl{
  display: none;
}
.ab-he-hed-desk{
  display: block;
}
@media (max-width: 640px) {
  .hero{
    background: none;
    margin-top: 0px;
    align-items: flex-start;
    min-height: 92vh;
  }
  
  .hero-slide {
    background-position: center center;
  }
  .about-hero{
    background-size: cover;
    margin-top: 0px;
    align-items: flex-start;
    min-height: 92vh;
    min-height: 340px !important;
    max-height: 340px !important;
  }
  .about-hero-img img{
    max-width: 190px;
  }
  .hero .container .row{
    padding-top: 10px;
  }
  .about-hero-content{
    padding: 25px !important;
    margin-top: 75px;
  }
  .work-hero-content{
    flex-direction: column;
    padding: 25px !important;
    margin-top: 75px;
  }
  .work-hero-content p{
    display: block;
  }
  .ab-he-hed-mbl{
    display: block !important;
  }
  .ab-he-hed-desk{
    display: none;
  }
  .hero-content{
    padding: 25px !important;
  }
  .hero h1 {
    font-size: 38px;
    text-align: center;
    line-height: 44px;
  }

  .hero p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-align: center;
  }

  .hero-text-logo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }

  .hero-text-content {
    width: 100%;
  }

  .hero-logo-container {
    display: none !important;
  }

  .hero-logo {
    display: none !important;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .hero-btns .know-more,
  .hero-btns .contact-us {
    min-width: 150px;
    padding: 10px 20px;
    font-size: 14px;
  }

}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
#features{
    /* background: url(../img/feature-bg.png) top center no-repeat; */
    background-size: contain; 
    position: relative;
    padding: 20px 0px;
    margin-top: 25px;
}
#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%; /* Covers only half the section */
  background-image: url(../img/feature-bg.png); /* Set your background image */
  background-size: cover;
  background-position: center;
  /* z-index: -1; Send it behind the content */
}
.features-title{
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
  text-align: right;
  text-decoration: none;
  color: #B69D74;
}
.features-heading{
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 60px !important;
  color: white !important;
  text-align: right !important;
  width: 100% !important;
  padding: 0px !important;
}
.feature-card-wrapper{
  width: 22%;
  margin-bottom: 0;
}

.feature-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
.features .card{
  border: 1px solid rgba(207, 161, 42, 0.15);
  border-radius: 12px;
  background: transparent;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(207, 161, 42, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
}

.features .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #cfa12a 0%, #b8901f 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
  z-index: 1;
}

.features .card:hover::before {
  transform: scaleX(1);
}

.features .card:hover {
  border-color: #cfa12a;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(207, 161, 42, 0.15);
  background: rgba(207, 161, 42, 0.05);
}

/* Achievements Section - Professional Design - Enhanced 400% */
#achievements {
  background: linear-gradient(135deg, rgba(207, 161, 42, 0.06) 0%, rgba(35, 31, 32, 0.04) 50%, rgba(207, 161, 42, 0.06) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(207, 161, 42, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.achievements-section-title {
  text-align: center !important;
  margin-bottom: 40px;
}

.achievements-section-title .features-title {
  text-align: center !important;
  font-size: 14px;
  font-weight: 600;
  color: #cfa12a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.achievements-section-title .features-heading {
  text-align: center !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #231f20 !important;
  line-height: 1.3 !important;
  margin: 0 auto !important;
  width: auto !important;
  max-width: 500px;
}

.achievements-content {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.achievement-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 2px solid rgba(207, 161, 42, 0.2);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(207, 161, 42, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #cfa12a 0%, #b8901f 50%, #cfa12a 100%);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 2px 10px rgba(207, 161, 42, 0.4);
}

.achievement-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 161, 42, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.achievement-item:hover::before {
  transform: scaleX(1);
}

.achievement-item:hover::after {
  opacity: 1;
}

.achievement-icon {
  margin-bottom: 15px;
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.achievement-icon img,
.achievement-icon svg {
  filter: grayscale(20%) brightness(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.achievement-icon svg {
  display: block;
  margin: 0 auto;
}

.achievement-number {
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.achievement-number h3 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.1;
  font-family: var(--heading-font);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 10px rgba(207, 161, 42, 0.2);
}

.achievement-label {
  font-size: 16px;
  font-weight: 600;
  color: #231f20;
  margin: 0;
  line-height: 1.5;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  letter-spacing: 0.3px;
}

.achievement-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #cfa12a;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 10px 30px rgba(207, 161, 42, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.achievement-item:hover .achievement-icon {
  opacity: 1;
  transform: translateY(-5px);
}

.achievement-item:hover .achievement-icon img,
.achievement-item:hover .achievement-icon svg {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.15) rotate(5deg);
}

.achievement-item:hover .achievement-number h3 {
  transform: scale(1.1);
  background: linear-gradient(135deg, #b8901f 0%, #cfa12a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-item:hover .achievement-label {
  color: #cfa12a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .achievements-section-title .features-heading {
    font-size: 24px !important;
  }
  
  .achievement-number h3 {
    font-size: 36px;
  }
  
  .achievement-label {
    font-size: 14px;
  }
  
  .achievement-item {
    padding: 25px 18px;
  }
  
  .achievement-icon img,
  .achievement-icon svg {
    width: 36px;
    height: 36px;
  }
}
.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.feature-card-link:hover .card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #cfa12a;
}

.feature-items{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-items img{
  width: 100%;
  transition: transform 0.3s ease;
}

.feature-card-link:hover .feature-items img {
  transform: scale(1.05);
}

.feature-items h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  text-align: right;
  width: 100%;
  color: #222127;
  margin: 15px 0px 0px;
  transition: color 0.3s ease;
}

.feature-card-link:hover .feature-items h3 {
  color: #cfa12a;
}

.feature-items p {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  text-align: right;
  padding-left: 10px;
  width: 100%;
  color: #666666;
}
@media (max-width: 640px) {
.feature-row{
  flex-wrap: unset;
    justify-content: flex-start !important;
    overflow-x: scroll;
}
}


/*--------------------------------------------------------------
# office Section
--------------------------------------------------------------*/
#office{
  color: var(--default-color);
  background-color: transparent;
  padding: 60px 0px 70px 0px;
  scroll-margin-top: 98px;
  overflow: clip;
  z-index: 1;
  position: relative;
}
.office .content {
  background-color: white;
  border-radius: 8px;
  height: 100px;
}
.office-diamond{
  background: linear-gradient(180deg, #B435C2 0%, #5A87C6 100%);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.office-diamond img{
  width: 32px;
  height: 35px;
}
.office-text h2{
  text-align: right;
  font-size: 35px;
  font-weight: 600;
  color:#033A5B;
  margin: 15px 0px;
}
.office-text p {
text-align: right;
font-size: 13px;
color: #666666;
font-weight: 400;
line-height: 24px;
margin: 12px 0px 20px 0px;
}
.office-text ul {
  text-align: right;
  font-weight: 400;
  line-height: 22px;
  color: #666666;
  list-style: none;
  margin-top: 15px;
  }
  .office-text ul li {
    margin-top: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(207, 161, 42, 0.1);
  }
  .office-text ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .office-text ul li strong {
    color: #231f20;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 1.3;
  }
  .office-text ul li br {
    display: block;
    margin-top: 3px;
  }
  .office-text ul li {
    font-size: 13px;
  }
  
.work-approach-subtitle {
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  margin: 18px 0 12px 0;
  padding-top: 15px;
  border-top: 2px solid rgba(207, 161, 42, 0.2);
}
 
.office-text-title {
  color: #cfa12a;
  text-decoration: none;
  font-size: 28px;
}
.office-imgs{
  height: 95%;
  margin-top: 5%;
}

.work-approach-img-container {
  width: 100%;
  max-width: 600px;
}

.work-approach-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

  .abt-bg {
    background-image: url(../img/office-welcome.png);
    height: 40%;
    width: 98%;
    background-size: cover;
    background-position: center;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #707070;
  opacity: 0.3;
  border-radius: 14px;
}
a.video-play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -40px;
  left: 50%;
  margin-left: -40px;
}

.office .content input {
  margin: 15px 0 30px 0;
  line-height: 24px;
  color: #9C9C9C;
  border: none;
  border-bottom: 1px solid #9C9C9C;
  padding-bottom: 4px;
  width: 115px;
  text-align: right;
}
.office .content input:focus, .office .content input:active{
  outline: none;
}

.office .content .btn-submit {
  color: var(--contrast-color);
  background-image: linear-gradient(#00E29C, #3C337A);
  line-height: 0;
  padding: 15px 63px;
  border-radius: 4px;
  transition: 0.5s;
  height: 100%;
  font-size: 32px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.office .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.office .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.office .content .btn-read-more:hover i {
  transform: translateX(5px);
}
/* General styles */
.about-office h2 {
  margin: 0;
  margin-top: 45px;
}

.about-office p {
  margin: 20px 0;
  color: #033A5B;
}

.about-office ul li {
  margin: 0 20px;
}

.about-office ul {
  border-right: 6px solid #B69D74;
}

.about-office-2 h2 {
  margin: 0;
  margin-top: 75px;
}

.about-office-2 p{
  margin: 20px 0;
  color: #666666;
  font-weight: 400;
}

.about-office-2 ul li {
  margin: 0 20px;
  font-weight: 400;
  position: relative;
}
.about-office-2 ul li::before {
  content: '•';
  position: absolute;
  right: -15px;
  top: 0;
  color: #B3B3B3;
  font-size: 16px;
}
.about-office-2 ul li span{
  font-weight: 600;
}
.about-office-3 h2{
  font-family: 'Crimson Text';
}
.about-office-3 p {
  font-family: 'DM Sans';
  font-size: 15px;
  font-weight: 400;
}
.office-detail, .office-search, .office-practice, .office-contact-box{
  background: #B69D741A;
    padding: 25px;
    margin-bottom: 25px;
}
.office-contact-box{
  position: relative;
  padding-top: 170px;
  text-align: center;
  
}
.office-contact-logo-bg{
  position: absolute;
  width: 100%;
  top: 0px;
  height: 165px;
  right: 0px;
  opacity: 0.2;
}
.office-contact-logo-img{
  position: absolute;
  width: 100px;
  top: 25px;
  height: 115px;
  right: 50%;
  opacity: 1;
  margin-right: -50px;
}
.office-detail h2{
  text-align: right;
  font-family: 'Crimson Pro';
  padding-bottom: 10px;
  border-bottom: 4px solid;
  border-image: linear-gradient(270deg, #B69D74 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  width: 80%;
  margin-left: 20%;
  
}
.office-search h2{
  text-align: center;
  font-family: 'Crimson Pro';
  padding-bottom: 10px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #B69D74 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  width: 80%;
  margin-left: 10%;
}

.office-practice h2{
  text-align: left;
  font-family: 'Crimson Pro';
  padding-bottom: 10px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #B69D74 0%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
  width: 80%;
}
.office-contact-box h2{
  margin-top: 20px;
  font-weight: 500;
  font-size: 22px;
}
.office-contact-box p{
  margin-top: 10px;
  font-weight: 400;
  font-size: 22px;
  color: #033A5B;
}

.office-practice-item{
  text-align: left;
  margin: 20px 0px; 
}

.office-detail-item{
  text-align: right;
  margin: 20px 0px; 
  position: relative;
}
.office-detail-item input, .office-detail-item input:focus{
  padding-right: 35px;
  height: 50px;
  background-color: #3C3B45;
  color: #B3B3B3;
  border: none;
  box-shadow: none;
}
.office-detail-item input::placeholder {
  color: #B3B3B3; 
  opacity: 1; 
}
.office-detail-item div{
  display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 4px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    height: 100%;
    background: #B69D74;
    width: 50px;
}
.office-detail-item span:first-child{
  color: #033A5B;
  font-size: 16px;
  font-family: 'Prata';
}
.office-detail-item span:nth-child(2), .office-practice-item span{
  color: #666666;
  font-size: 16px;
  font-family: 'DM Sans';
}

@media (max-width: 640px) {
  #office{
    margin-top: -55px !important;
  }
  .office .content {
    width: 100%;
    height: max-content;
  }
  .office-text-title{
    display: none;
  }
  .office-form{
    flex-direction: column;
  }
  .office-form h2{
    order: 1;
    font-size: 28px !important;
    margin-top: 10px;
    margin-right: 0px !important;
  }
  #office-name{
    order: 2;
    width: 70%;
  }
  #office-phone{
    order: 3;
    width: 70%;
  }
  .office-form div{
    order:4;
  }
  .office .content .btn-submit {
    height: 55px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .office-text p{
    font-size: 13px;
    margin-top: 20px;
  }
  .office-item-header{
    padding: 20px 0px !important;
  }
  .office-text{
    flex-direction: column;
  }
  .office-imgs{
    width: 98%;
  }
  
  .work-approach-img-container {
    width: 100%;
    max-width: 600px;
  }
  
  .work-approach-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }
  .abt-bg {
    /* height: 205px; */
    border-radius: 10px !important;
    /* margin-bottom: 25px; */
  }
  #office-office-big{
    display: none;
  }
  .we-are .card {
    border: 0px !important;
    border-bottom: 1px solid #B69D74 !important;
  }
  .we-are .card p{
    margin: 20px 4px !important;
  }
  .feature-card-wrapper{
    width: 50%;
  }
}

/*--------------------------------------------------------------
# we-are Section
--------------------------------------------------------------*/
#we-are{
  background: radial-gradient(50% 50% at 50% 50%, rgba(182, 157, 116, 0.2) 0%, rgba(182, 157, 116, 0.06) 100%);
}
.we-are .card {
  color: var(--default-color);
  padding: 0px;
  padding-left: 5px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
  background: none;
  border-left: 1px solid #B69D74;
  border-radius: 0px;
}
.we-are-title, .values-title, .features-title{
  color: #B69D74;
  text-decoration: none;
  font-size: 28px;
}
.we-are-heading{
  display: flex;
    justify-content: center;
    align-items: center;
}

.we-are .card h3 {
  font-size: 21px;
  font-weight: 700;
 color: #B69D74;
    margin: 0;
    margin-right: 10px;
    text-align: center;
}
.we-are .card p {
  font-size: 15px;
  font-weight: 400;
  color: #100D0D;
  margin-top: 20px;
  margin-right: 4px;
  margin-bottom: 0px;
  text-align: center;
}


.we-are .card:hover img {
  transform: scale(1);
}

/* About Group Cards - Enhanced Design */
#about-group {
  background: linear-gradient(135deg, rgba(207, 161, 42, 0.05) 0%, rgba(35, 31, 32, 0.02) 100%);
  padding: 80px 0;
}

#about-group .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  justify-content: center;
}

#about-group .col-lg-3,
#about-group .col-md-6 {
  margin-bottom: 0;
}

.about-group-card {
  background: transparent !important;
  border: 1px solid rgba(207, 161, 42, 0.15) !important;
  border-radius: 12px !important;
  padding: 20px 15px !important;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(207, 161, 42, 0.08) !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.about-group-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #cfa12a 0%, #b8901f 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.about-group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(207, 161, 42, 0.15) !important;
  border-color: #cfa12a !important;
  background: rgba(207, 161, 42, 0.05) !important;
}

.about-group-card:hover::before {
  transform: scaleX(1);
}

.about-group-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-group-icon img {
  width: 48px;
  height: 48px;
  transition: all 0.4s ease;
  filter: none;
}

.about-group-card:hover .about-group-icon img {
  transform: scale(1.05) rotate(5deg);
  filter: none;
}

#about-group .we-are-heading {
  margin-bottom: 15px;
}

#about-group .we-are .card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.about-group-card:hover .we-are .card h3 {
  color: #cfa12a;
}

#about-group .we-are .card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  transition: color 0.3s ease;
}

.about-group-card:hover .we-are .card p {
  color: #231f20;
}

@media (max-width: 640px) {
  #we-are{
    padding: 20px 0px !important;
    background: none;
  }
  .we-are-item-header{
    padding: 20px !important;
  }
  .we-are-diamond{
    background: #B69D74;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
  }
  .we-are-diamond img{
    width: 26px;
    height: 28px;
  }
  .we-are-text h2{
    text-align: right;
    font-size: 28px;
    font-weight: 600;
    color:#B69D74;
    margin: 15px 0px;
  }
  .we-are-text p {
    text-align: right;
    font-size: 14px;
    color: #1B4158;
    font-weight: 400;
    line-height: 27px;
    }
    .we-are-building img{
      width: 92%;
    }
    .we-are-building-overlay{
      position: absolute;
    top: 43%;
    color: white;
    font-weight: 900;
    font-size: 23px;
    }
  .section-title h2{
    font-size: 22px;
    width: 90%;
  }
  .meeting-bottom-btn{
    width: 100%;
    padding: 0% !important;
    margin-top: 50px !important;
  }
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
#values{
  background: url(../img/values-bg.png) top center no-repeat;
  background-size: cover;
}

#companies{
  background: url("../img/Mask group.png") top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

#companies .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

#companies .col-lg-4,
#companies .col-md-6 {
  margin-bottom: 0;
}

#sectors {
  padding: 80px 0;
}
.values .card {
  background-color: transparent;
  color: var(--default-color);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(207, 161, 42, 0.15);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(207, 161, 42, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.values .card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #cfa12a 0%, #b8901f 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.values .card:hover::before {
  transform: scaleX(1);
}
.value-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.value-icon {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.value-icon span {
  display: inline-block;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(207, 161, 42, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
}

.values .card:hover .value-icon {
  transform: scale(1.1);
}
.values .card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #231f20;
  margin: 15px 0px 10px 0px;
  text-align: center;
  transition: color 0.3s ease;
}

.values .card:hover h3 {
  color: #cfa12a;
}
.values .card p {
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  margin-top: 10px;
  margin-right: 4px;
  text-align: center;
  line-height: 1.7;
}

.values .card:hover {
  background: rgba(207, 161, 42, 0.05);
  border-color: #cfa12a;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(207, 161, 42, 0.15);
}

.values .card:hover img {
  transform: scale(1);
}
.carousel-indicators [data-bs-target] {
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 6px;
  margin-left: 6px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #d1c2c2;
}
.carousel-indicators {
  position: absolute;
  bottom: -40px; /* Adjust position as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-carousel-indicators{
  bottom: 10px;
}
.carousel-indicators li {
  background-color: white; /* Inactive dots color */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators .active {
  background-color: black; /* Active dot color */
}
.hero-carousel-indicators .active{
  background-color: #B69D74;
}
#heroFeaturesCarousel{
  padding-bottom: 50px;
}
.hero-crousel-item img{
  margin-left: 10px;
}
@media (max-width: 640px) {
  #values{
    padding: 40px 0px !important;
  }
  .section-title h2{
    font-size: 22px;
  }
  .section-title p{
    font-size: 17px;
    margin: 0px;
    width: 100%;
  }
  .meeting-bottom-btn{
    width: 100%;
    padding: 0% !important;
    margin-top: 50px !important;
  }
 
}

/*--------------------------------------------------------------
# meeting Section
--------------------------------------------------------------*/
#meeting{
  color: var(--default-color);
  background: #F7F7FD;
  padding-top: 30px;
  padding-bottom: 60px;
  scroll-margin-top: 98px;
  overflow: clip;
  z-index: 1;
  position: relative;
}
.meeting .content {
  background-color: white;
  border-radius: 8px;
  height: 100px;
}

.meeting-text h2{
  text-align: right;
  font-size: 20px;
  background: linear-gradient(90deg, #26B8C9 0%, #B336C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 5px 0px;
}
.meeting-text p {
text-align: right;
font-size: 17px;
color: #100D0D;
margin: 8px 0px;
}
.meeting .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.meeting .content h2 {
  font-size: 32px;
    font-weight: 700;
    margin-right: 20px;
    background: linear-gradient(90deg, #26B8C9 0%, #B336C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.meeting-small-img{
  padding: 4px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.meeting-overlay-text{
  position: absolute;
  z-index: 9;
  color: white;
  font-size: 17px;
  font-weight: 300;
  bottom: 7px;
  right: 22px;
  text-align: right;
}

.meeting-building-overlay{
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
}
.meeting-building-overlay p{
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-top: 20px;
}
.meeting .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  color: #9C9C9C;
  border-bottom: 1px solid #9C9C9C;
  padding-bottom: 4px;
  width: 100px;
  text-align: right;
  ;
}
.meeting-bottom-btn{
  background: linear-gradient(90deg, #00E29C 0%, #3A0565 100%);
    box-shadow: 0px 4px 4px 0px #00000040;
    font-size: 26px;
    font-weight: 600;
    border: none;
    color: white;
    padding: 12px 0px;
    margin-top: 25px;
}
.meeting-bottom-btn:hover{
  color: white;
}



/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/
#about{
  color: var(--default-color);
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 0px;
  scroll-margin-top: 98px;
  overflow: clip;
  z-index: 1;
  position: relative;
}
.about .content {
  background-color: white;
  border-radius: 8px;
  height: 100px;
}
.about-section-title h2{
  font-size: 25px;
}
.about-section-title p{
  font-size: 16px;
}
.about-section-title ul, .about-text ul{
  direction: rtl;
  list-style: none;
  padding-right: 0px;
  margin-top: 5px;
}
.about-section-title li, .about-text li {
  text-align: right;
  position: relative;
  padding-right: 20px; /* Adjust to match the bullet position */
}

.about-section-title li::before, .about-text li::before {
  content: "\2022"; /* Unicode for bullet */
  position: absolute;
  right: 0; /* Align the bullet to the right */
}
.about-text-first{
  box-shadow: 0px 4px 4px 0px #00000040;
  height: max-content;
  min-height: 70%;
  border-radius: 4px;
  margin-left: -60px;
  background: white;
}
.about-text-secnd{
  box-shadow: 0px 4px 4px 0px #00000040;
  height: 70%;
  border-radius: 4px;
  margin-right: -60px;
  background: white;
  z-index: 1;
}
.about-text h2{
  text-align: right;
  font-size: 40px;
  background: linear-gradient(90deg, #26B8C9 0%, #B336C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
  margin-right: 25px;
}
.about-text ul {
  text-align: right;
  font-size: 17px;
  font-weight: 600;
  color: #100D0D;
  margin: 8px 0px;
  direction: rtl;
  list-style-position: inside;
  padding-right: 10px;
}
.about-text ul li{
  margin: 6px 0px;
}
.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}
.value-icon{
  background: none;
    height: auto;
    width: auto;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.value-icon img{
  max-height: 80px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.about-message{
  background: #4C1B7A;
  color: white;
  padding: 40px 0px !important;
  margin-top: 50px !important;
}
.about-message p{
  border: 1px solid white;
  padding: 7px 60px;
  font-size: 23px;
  border-radius: 6px;
}
.about-message ul{
  direction: rtl;
  list-style-position: inside;
  padding-right: 0px;
  margin: 20px 0px;
  font-size: 19px;
}

@media (max-width: 640px) {

  .about-section-title h2{
    font-size: 16px;
    margin-right: 10px;
    line-height: 24px;
    padding-left: 40px;
  }
  .about-diamond{
    width: 30px;
    height: 30px;
    margin-top: 15px;
  }
  .about-diamond img {
    width: 17px;
    height: 20px;
  }
  .about-section-title p {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    padding: 20px 0px;
  }
  .about-section-title ul{
    direction: rtl;
    list-style: none;
    padding-right: 0px;
    margin-top: 5px;
    margin-right: -10px;
  }
  .about-section-title li{
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    margin: 4px 0px;
  }
  .about .container .row{
    height: auto !important;
  }
  .about-section-image img {
    width: 70% !important;
    height: 120px !important;
    border-radius: 10px;
  }
  .about-section-image{
    align-items: flex-end !important;
  }
  .about-section-image:first-child{
    align-items: flex-start !important;
  }
  .about-text{
    height: 120px;
    width: 83%;
  }
  .about-text-first{
    margin-left: 13%;
    margin-top: -45px;
  }
  .about-text-secnd{
    margin-right: 3%;
    margin-top: -45px;
  }
  .about-text h2{
    color: black;
    margin-right: 0px;
    font-size: 20px;
    margin: 0px;
    background: none;
    -webkit-text-fill-color: black;
  }
  .about-text ul{
    padding: 0px;
    margin: 0px;
  }
  .about-text ul li{
    font-size: 10px;
    font-weight: 500;
    padding-right: 10px;
  }
  .about-message p {
    border: 1px solid white;
    padding: 7px 22px;
    font-size: 20px;
    border-radius: 6px;
}
  .about-message ul{
    font-size: 14px;
    padding-right: 30px;
    font-weight: 600;
    line-height: 22px;
    direction: rtl;
    list-style: none;
  }
  .about-message li::before {
    content: "\2022"; /* Unicode for bullet */
    position: absolute;
    right: 10px; /* Align the bullet to the right */
  }
}

/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
.contact-section-title h2{
  font-size: 25px;
}
.contact-section-title p{
  font-size: 16px;
  font-weight: 700;
}
.contact-section-form h2{
  font-size: 50px;
  font-weight: 700;
  line-height: 75px;
  padding: 20px;
  color: #AD3CC3;
}
.contact-section-form p{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.contact-numbers{
margin-top: 80px;
margin-bottom: 20px;
}
.contact-numbers p{
  font-size: 17px;
  font-weight: 500;
  color: gray;
}
.contact-form{
  background: #fff;
  padding: 40px;
  padding-bottom: 20px;
}
.contact-form input, .contact-form textarea{
  padding: 20px;
  border-radius: 30px;
  text-align: right;
}
.contact-form input[type="submit"]{
  text-align: center;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
}
.contact-section-map iframe{
  height: 100%;
  width: 100%;
}
.contact-section-map, .contact-section-form {
  height: 865px;
  padding: 20px !important;
}
@media (max-width: 640px) {
  .contact-header{
    text-align: center;
  }
  .contact-section-title h2{
    font-size: 18px;
    text-align: center;
  }
  .contact-section-title p {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.about-diamond{
  display: none;
}
  .contact-form{
    padding: 10px;
  }
  .contact-numbers p{
    font-size: 12px;
  }
  .contact-form input, .contact-form textarea{
    padding: 15px 25px;
    border-radius: 8px;
    text-align: right;
  }
  .contact-section-map, .contact-section-form {
    padding: 0px !important;
    height: max-content;
  }
  .contact-section-map iframe {
    height: 600px;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# work Section
--------------------------------------------------------------*/

.work-header{
  text-align: right;
  margin-top: 50px;
  padding: 20px;
}
.work-header h2{
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #26B8C9 0%, #B336C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
;
}
.work-header p{
  font-size: 15px;
  font-weight: 400;
  width: 90%;
  margin-left: 10%;
}
.work-hero-content p{
  display: none;
}

@media (max-width: 640px) {
  .work-hero-content{
    flex-direction: column;
    padding: 25px !important;
    margin-top: 75px;
  }
  .work-hero-content p{
    display: block;
  }
}
/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
#blog{
  color: var(--default-color);
  padding: 30px 0px;
  scroll-margin-top: 98px;
  overflow: clip;
  z-index: 1;
  position: relative;
  background: url(../img/blog-bg.png) top center no-repeat;
  background-size: cover;
  padding: 20px 0px;
  height: 230px;
  margin: 38px 5%;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.blog-item p{
  font-size: 15px;
  color: white;
  width: 400px;
  margin-left: 50px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}
.blog-logo{
  height: 130px;
  width: 110px;
}
.blog-subscribe{
  margin-left: auto;
  width: 37%;
}
.blog-subscribe-input{
  background: #FFFFFF14;
  padding: 8px 10px;
  border-radius: 8px;
}
.blog-subscribe input {
  background: none;
  border: none;
  color: white;
  width: 57%;
  outline:none;
}
.blog-subscribe input::placeholder {
  color: white;
}
.blog-subscribe button {
  background-color: #000000 !important;
  background: #000000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff !important;
  width: 40%;
  padding: 8px 20px;
}
.blog-subscribe-heading{
  color: white;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;

}
@media (max-width: 640px) {
  #blog{
    height: auto;
  }
  .blog-item{
    /* flex-direction: column; */
    align-items: center;
  }
  .blog-item p{
    width: 100%;
    margin-left: 0px;
    display: none;
  }
  .blog-subscribe-heading{
    font-size: 17px;
  }
  .blog-item img{
    height: 65px;
    width: 65px;
  }
  .blog-overlay-text{
    width: 230px;
    font-size: 16px;
  }
  .blog-subscribe input{
    width: 85%;
  }
  .blog-subscribe button{
    background: none;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    width: 10%;
    padding: 8px 3px;
  }
  .blog-btn{
    height: 36px;
    width: 66%;
    margin-left: 17%;
    font-size: 13px;
    border-radius: 6px;
    border-bottom-left-radius: 27px;
  }
  .footer{
    background-image: url(../img/Footer-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 14px;
    padding-bottom: 0px;
    padding-top: 30px;
    position: relative;
  }
  .footer .container .row{
    padding-bottom: 0px !important;
  }
  .footer .footer-about a p{
    font-weight: 200;
  }
  .footer .footer-top {
    padding-top: 0px;
}
.footer-logo{
  width: 100px;
  height: 110px;
  margin-bottom: 20px;
}
  .footer-about-inner{
    flex-direction: row-reverse;
    align-items: flex-start;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    gap: 20px;
  }
  
  .footer-about-inner .footer-logo {
    margin-left: 20px;
    margin-right: 0;
  }
  
  .footer-about-inner p,
  .footer-text-xm {
    text-align: right;
    flex: 1;
    font-family: 'XM Yermook', var(--default-font), sans-serif !important;
    word-spacing: 2px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    white-space: normal;
  }
  
  .footer-link-xm,
  .footer-contact-xm {
    font-family: 'XM Yermook', var(--default-font), sans-serif !important;
    word-spacing: 2px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  
  .footer .footer-links{
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  
  .footer .footer-links ul a{
    font-weight: 400;
    font-size: 15px;
  }
  .footer-social-icons{
    justify-content: center !important;
  }
  .footer-social-icons img{
    margin: 0px 20px 30px 20px !important;
    height: 45px;
    width: 45px;
  }
  .footer-contact-below{
    flex-direction: column;
    align-items: center;
  }
  .footer-contact-below-inner{
    width: 100% !important;
    font-size: 12px;
  }
  .blog-subscribe{
    width: 76%;
  }
  .footer .footer-links{
    padding: 0px;
  }
  .footer h4{
    width: 100%;
    text-align: center;
    font-size: 28px;
  }
}
@media (min-width: 640px) {
 
  .footer-container-mobile{
    display: none !important;
    /* width: 80%; */
  }

}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 19px 0px;
  margin: 40px 30px;
  margin-bottom: 60px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  position: relative;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border: 2px solid #B69D7499;
}
.testim-bord-hide-up{
  position: absolute;
  height: 115px;
  background:white;
  width: 4px;
  left: -3px;
  top: 0px;
}
.testim-bord-hide-down{
  position: absolute;
  height: 115px;
  background:white;
  width: 4px;
  right: -3px;
  bottom: 0px;
}

.testimonials .testimonial-item .stars {
  margin-left: auto;
  margin-right: 50px;
}

.testimonials .testimonial-item .stars i {
  color: #B69D74;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-right: 20px;
}
.testimonial-profile{
  display: flex;
  align-items: center;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 5px 0;
  color: #222127;
  text-align: left;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #666666;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

.testimonials .testimonial-item p {
  
  margin: 15px auto 15px auto;
  width: 70%;
  
}

.testimonial-quotes-lower {
  position: absolute;
  bottom: 15px;
  right: 2px;
  width: 60px;
}


.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

.testimonials .swiper-slide {
  opacity: 0.3;
  display: flex;
  justify-content: center;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}


/*--------------------------------------------------------------
# client Section
--------------------------------------------------------------*/
.clients-heading{
font-size: 32px;
font-weight: 600;
line-height: 60px;
text-align: center;
color: #033A5B;margin-top: 80px;
}
#client{
  color: var(--default-color);
  padding: 60px 0px;
  scroll-margin-top: 98px;
  overflow: clip;
  z-index: 1;
  position: relative;
  background: linear-gradient(135deg, rgba(207, 161, 42, 0.05) 0%, rgba(35, 31, 32, 0.02) 100%);
  margin: 20px 0px 100px 0px;
  border-radius: 8px;
}

.clientSwiper {
  width: 100%;
  padding: 40px 20px;
  overflow: visible;
}

.client-items-wrapper {
  display: flex;
  align-items: center;
}

.client-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.client-logo-card {
  background: transparent;
  border-radius: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.client-logo-card::before {
  display: none;
}

.client-logo-card:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: none;
  border: none;
  background: transparent;
}

.client-logo-img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.clientSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  #client {
    padding: 40px 0px;
    margin: 20px 0px 50px 0px;
  }
  
  .clientSwiper {
    padding: 20px 10px;
  }
  
  .client-logo-card {
    height: 120px;
    padding: 20px;
  }
  
  .client-logo-img {
    max-height: 90px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
  background: #f8f9fa;
}

.team .features-heading {
  color: #231f20 !important;
}

.team-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #fff;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #cfa12a;
  border-radius: 8px;
  margin: 20px;
}

.team-placeholder-image span {
  font-size: 18px;
  font-weight: 600;
  color: #cfa12a;
  text-align: center;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.team-card .card-body {
  padding: 30px 20px;
}

.team-name {
  font-size: 24px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 10px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.team-position {
  font-size: 18px;
  color: #cfa12a;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

@media (max-width: 768px) {
  .team-image-wrapper {
    height: 250px;
  }
  
  .team-name {
    font-size: 20px;
  }
  
  .team-position {
    font-size: 14px;
  }
  
  .team-description {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Details Section - Right Alignment
--------------------------------------------------------------*/
#about-details .row {
  justify-content: flex-end !important;
}

#about-details .col-lg-8 {
  margin-right: 0;
  margin-left: auto;
}

#about-details .office-item-header {
  align-items: flex-end !important;
  text-align: right !important;
}

#about-details .office-text {
  text-align: right !important;
  direction: rtl;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  direction: rtl;
  text-align: right;
}

.contact-form-wrapper {
  width: 100%;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(207, 161, 42, 0.1);
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #231f20;
  font-size: 16px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  text-align: right;
  letter-spacing: 0.3px;
}

.contact-form .form-control {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  transition: all 0.3s ease;
  text-align: right;
  direction: rtl;
  background: #fafafa;
  color: #231f20;
}

.contact-form .form-control::placeholder {
  color: #999;
  font-weight: 400;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #cfa12a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(207, 161, 42, 0.15);
  transform: translateY(-2px);
}

.contact-form .form-control:hover {
  border-color: #d4b84a;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.8;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  color: #fff;
  padding: 16px 50px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(207, 161, 42, 0.35);
  letter-spacing: 0.5px;
  text-transform: none;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(207, 161, 42, 0.5);
  background: linear-gradient(135deg, #b8901f 0%, #cfa12a 100%);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.4);
}

.contact-info-wrapper {
  width: 100%;
  padding: 20px;
}

.contact-info-card {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: right;
  direction: rtl;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(207, 161, 42, 0.1) 0%, rgba(207, 161, 42, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: 0;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 15px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.contact-info-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.contact .section-title {
  text-align: right;
  direction: rtl;
}

.contact .section-title p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-top: 15px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact {
    padding: 50px 0;
  }
  
  #contact .row {
    justify-content: center !important;
  }
  
  #contact .col-lg-8,
  #contact .col-lg-4 {
    margin-left: 0;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Search Section in Sidebar
--------------------------------------------------------------*/
.sidebar-search-wrapper {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.search-wrapper-sidebar {
  position: relative;
}

.search-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  direction: rtl;
}

.search-input-wrapper {
  position: relative;
}

.search-icon-sidebar {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #cfa12a;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.search-form-sidebar input {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  transition: all 0.3s ease;
  direction: rtl;
  background: #fff;
}

.search-form-sidebar input:focus {
  outline: none;
  border-color: #cfa12a;
  box-shadow: 0 0 0 3px rgba(207, 161, 42, 0.1);
}

.search-submit-btn-sidebar {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.search-submit-btn-sidebar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.3);
  background: linear-gradient(135deg, #b8901f 0%, #cfa12a 100%);
}

.search-suggestions-sidebar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  max-height: 350px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  direction: rtl;
  border: 1px solid #f0f0f0;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: #f8f9fa;
}

.search-suggestion-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.search-suggestion-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #231f20;
  margin: 0 0 4px 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  line-height: 1.3;
}

.search-suggestion-item span {
  font-size: 12px;
  color: #666;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Main Content Section
--------------------------------------------------------------*/
.main-content-section {
  padding: 60px 0;
  background: #fff;
}

.articles-sidebar {
  padding-right: 30px;
  direction: rtl;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 25px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.articles-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card-mini {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  direction: rtl;
}

.article-card-mini:hover {
  border-color: #cfa12a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}

.article-card-mini.active {
  border-color: #cfa12a;
  background: #fffbf0;
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.2);
}

.article-card-mini-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-card-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-mini-content {
  flex: 1;
}

.article-card-mini-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #231f20;
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-card-mini-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.article-card-mini-meta span {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-card-mini-meta i {
  color: #cfa12a;
  font-size: 14px;
}

.article-display-area {
  padding-left: 30px;
  direction: rtl;
}

.article-display-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.article-display-header {
  position: relative;
}

.article-display-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.article-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-display-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.article-display-category {
  background: #cfa12a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-display-date,
.article-display-time {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-display-content {
  padding: 40px;
}

.article-display-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 25px;
  line-height: 1.4;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-display-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-full-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cfa12a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-full-link:hover {
  color: #b8901f;
  gap: 15px;
}

.article-full-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.article-full-link:hover i {
  transform: translateX(-5px);
}

@media (max-width: 992px) {
  .articles-sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .article-display-area {
    padding-left: 0;
  }
  
  .article-display-image {
    height: 300px;
  }
  
  .article-display-content {
    padding: 30px 20px;
  }
  
  .article-display-content h1 {
    font-size: 24px;
  }
  
  .article-display-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
  }
  
  .search-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .article-card-mini {
    flex-direction: column;
  }
  
  .article-card-mini-image {
    width: 100%;
    height: 200px;
  }
  
  .article-display-image {
    height: 250px;
  }
  
  .article-display-meta {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Articles Home Section (in index.html)
--------------------------------------------------------------*/
.articles-home {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.article-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.3s ease;
}

.article-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.article-card-link:hover .blog-card {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #cfa12a;
}

.view-all-articles-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.3);
}

.view-all-articles-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(207, 161, 42, 0.4);
  background: linear-gradient(135deg, #b8901f 0%, #cfa12a 100%);
  color: #fff;
  text-decoration: none;
  gap: 15px;
}

.view-all-articles-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.view-all-articles-btn:hover i {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .articles-home {
    padding: 60px 0;
  }
  
  .view-all-articles-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Newsletter Subscription Section
--------------------------------------------------------------*/
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #231f20 0%, #2a2526 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 161, 42, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.newsletter-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid rgba(207, 161, 42, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.newsletter-content {
  text-align: center;
  direction: rtl;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(207, 161, 42, 0.4);
}

.newsletter-icon i {
  font-size: 36px;
  color: #fff;
}

.newsletter-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.newsletter-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  direction: rtl;
}

.newsletter-input-group input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  transition: all 0.3s ease;
  direction: rtl;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: #cfa12a;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(207, 161, 42, 0.1);
}

.newsletter-submit-btn {
  padding: 18px 40px;
  background: linear-gradient(135deg, #cfa12a 0%, #b8901f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.3);
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 161, 42, 0.4);
  background: linear-gradient(135deg, #b8901f 0%, #cfa12a 100%);
}

.newsletter-submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover i {
  transform: translateX(-5px);
}

.newsletter-privacy {
  text-align: center;
  margin-top: 15px;
}

.newsletter-privacy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-wrapper {
    padding: 40px 25px;
  }
  
  .newsletter-content h2 {
    font-size: 24px;
  }
  
  .newsletter-content p {
    font-size: 16px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
  }
  
  .newsletter-icon i {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Blog Cards Section (for articles)
--------------------------------------------------------------*/
.blog {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

.section-title-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  position: relative;
}

.blog-card-enhanced {
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #cfa12a;
}

.blog-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.15);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(207, 161, 42, 0.95);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(10px);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  box-shadow: 0 4px 15px rgba(207, 161, 42, 0.3);
}

.blog-card-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  direction: rtl;
  background: #fff;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-card-date,
.blog-card-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #888;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.blog-card-date i,
.blog-card-read-time i {
  color: #cfa12a;
  font-size: 16px;
}

.blog-card-date span {
  color: #666;
  font-weight: 500;
}

.blog-card-read-time span {
  color: #666;
  font-weight: 500;
}

.blog-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
  color: #cfa12a;
}

.blog-card-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
  flex: 1;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.blog-read-more {
  color: #cfa12a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.blog-read-more:hover {
  color: #b8901f;
  gap: 15px;
}

.blog-read-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }
  
  .blog-card-image-wrapper {
    height: 220px;
  }
  
  .blog-card-content {
    padding: 25px;
  }
  
  .blog-card-content h3 {
    font-size: 20px;
  }
  
  .blog-card-content p {
    font-size: 15px;
  }
  
  .blog-card-meta {
    gap: 15px;
  }
  
  .section-title-wrapper p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Article Content Section
--------------------------------------------------------------*/
.article-content {
  padding: 80px 0;
  background: #fff;
  direction: rtl;
}

.article-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.article-date {
  font-size: 16px;
  color: #cfa12a;
  font-weight: 600;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-category {
  font-size: 14px;
  color: #666;
  background: #f8f9fa;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-image-main {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.article-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  text-align: right;
  direction: rtl;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 700;
  color: #231f20;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 600;
  color: #231f20;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-body p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-body ul {
  margin: 20px 0;
  padding-right: 30px;
  list-style: none;
}

.article-body ul li {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
  padding-right: 25px;
  position: relative;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-body ul li::before {
  content: "•";
  color: #cfa12a;
  font-weight: bold;
  position: absolute;
  right: 0;
  font-size: 20px;
}

.article-body ul li strong {
  color: #231f20;
  font-weight: 600;
}

.article-body .erasa-group-text {
  color: #cfa12a;
  font-weight: 600;
}

.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-tags .tag {
  background: #f8f9fa;
  color: #666;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-share span {
  font-size: 16px;
  color: #666;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.article-share a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.article-share a:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .article-content {
    padding: 50px 0;
  }
  
  .article-body h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  
  .article-body h3 {
    font-size: 20px;
    margin-top: 25px;
  }
  
  .article-body p {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .article-body ul li {
    font-size: 15px;
  }
  
  .article-image-main {
    margin-bottom: 30px;
  }
  
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

