/**
 * Aljoud Plugin Elementor Widgets CSS
 * 
 * Main CSS file for Aljoud Plugin Elementor Widgets
 */


/* Global Styles */
:root {
    --primary-color: #c9b18c;
    --secondary-color: #8c7a5b;
    --dark-color: #000000;
    --light-color: #f5f5f5;
    --text-color: #d0d0d0;
  }
  
  body {
    font-family: "cairo", serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
  }
  
  body, h1, h2, h3, h4, h5, h6, p {
      font-family: "cairo", serif !important;
  }

/* Global Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Fade In Section Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: #000;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Aljoud Navbar Styles */
.aljoud-navbar {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    position: relative;
    font-family: 'Cairo', Arial, sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

/* Sticky Header Styles */
.aljoud-navbar.sticky-enabled {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.aljoud-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.aljoud-navbar-placeholder {
    width: 100%;
}

.aljoud-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.aljoud-navbar-logo {
    
    text-align: center;
    z-index: 2;
}

.aljoud-navbar-logo img {
    max-width: 150px;
    height: auto;
}

.aljoud-navbar-logo-text {
    text-align: center;
}

.logo-main-text {
    font-size: 24px;
    font-weight: 500;
}

.logo-sub-text {
    font-size: 14px;
    font-weight: 300;
}

/* Left Menu Styles */
.aljoud-navbar-left-menu-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
}

.aljoud-navbar-left-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.aljoud-navbar-left-menu li {
    margin-left: 0;
}

.aljoud-navbar-left-menu li:not(:first-child) {
    margin-right: 30px; /* Increased spacing to match image */
}

.aljoud-navbar-left-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Right Menu & Language Switcher Styles */
.aljoud-navbar-right-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 50px;
}

.aljoud-navbar-right-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

.aljoud-navbar-right-menu li {
    margin-right: 0;
}

.aljoud-navbar-right-menu li:not(:last-child) {
    margin-right: 30px; /* Increased spacing to match image */
}

.aljoud-navbar-right-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Language Switcher */
.aljoud-navbar-language {
    display: flex;
    align-items: center;
}

.language-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.language-link:hover {
    color: #cccccc;
}

.language-separator {
    margin: 0 5px;
    color: #ffffff;
}

/* Hover Effects */
.aljoud-navbar-left-menu a:hover,
.aljoud-navbar-right-menu a:hover {
    color: #cccccc;
}

/* Toggle Button (Mobile) */
.aljoud-navbar-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 2;
}

/* Mobile Menu */
.aljoud-navbar-mobile-menu {
    display: none;
    background-color: #000000;
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
}

.aljoud-navbar-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    direction: rtl;
}

.aljoud-navbar-mobile-menu li {
    margin-bottom: 15px;
}

.aljoud-navbar-mobile-menu li:last-child {
    margin-bottom: 0;
}

.aljoud-navbar-mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 5px 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .aljoud-navbar-left-menu-container {
        margin-right: 30px;
    }
    
    .aljoud-navbar-right-container {
        margin-left: 30px;
    }
    
    .aljoud-navbar-left-menu li:not(:first-child) {
        margin-right: 20px;
    }
    
    .aljoud-navbar-right-menu li:not(:last-child) {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .aljoud-navbar-toggle {
        display: block;
    }
    
    .aljoud-navbar-left-menu-container,
    .aljoud-navbar-right-menu {
        display: none;
    }
    
    .aljoud-navbar-right-container {
        margin-left: 0;
        justify-content: flex-end;
    }
    
    .aljoud-navbar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .aljoud-navbar-logo img {
        max-width: 120px;
    }
    
    .logo-main-text {
        font-size: 20px;
    }
    
    .logo-sub-text {
        font-size: 12px;
    }
    
    /* Ensure mobile menu appears below the header when sticky */
    .aljoud-navbar.is-sticky .aljoud-navbar-mobile-menu {
        top: 100%;
    }
}

@media (max-width: 480px) {
    .aljoud-navbar-logo img {
        max-width: 100px;
    }
    
    .language-link {
        font-size: 12px;
    }
}


  
  
  html[lang="en-US"] body, html[lang="en-US"] h1, html[lang="en-US"] h2, html[lang="en-US"] h3, html[lang="en-US"] h4, html[lang="en-US"] h5, html[lang="en-US"] h6, html[lang="en-US"] p {
      font-family: "Cairo", serif !important;
      
  }
  
  html[lang="en-US"] .hero .hero-content, html[lang="en-US"] .aljoud-profile-content{
      text-align: left !important
  }
  
  html[lang="en-US"] .hero-content {
      padding-left: 20px !important;
  }
  
  html[lang="en-US"] .elementor-widget-aljoud_feature_slider .slide-title, html[lang="en-US"] .elementor-widget-aljoud_feature_slider .slide-description{
      text-align: left !important;
  }
  
  html[lang="en-US"] .elementor-widget-aljoud_feature_slider .nav-bottom-right .desktop-navigation {
      left: 30px
  }
  
  html[lang="en-US"] .contact-form-fields, html[lang="en-US"] .form-field, html[lang="en-US"] input {
      direction: ltr;
      text-align: left;
  }

  html[lang="en-US"] .aljoud-navbar-menu-items {
	direction: ltr;
}
  html[lang="en-US"] .aljoud-navbar-menu-items li:not(:first-child) {
    margin-left: 30px;
	margin-right: 0 !important
}
  
  /* aljoud Navbar Styles */
  .aljoud-navbar {
      background-color: #000000;
      color: #ffffff;
      width: 100%;
      font-family: 'cairo', Arial, sans-serif;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
  }
  
  .aljoud-navbar-logo {
      display: flex;
      justify-content: center;
  }
  
  /* Sticky Header Styles */
  .aljoud-navbar.sticky-enabled {
      transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .aljoud-navbar.is-sticky {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      animation: slideDown 0.5s forwards;
  }
  
  .hero {
  height: 90vh !important	
  }
  
  @keyframes slideDown {
      from {
          transform: translateY(-100%);
      }
      to {
          transform: translateY(0);
      }
  }
  
  .aljoud-navbar-placeholder {
      width: 100%;
  }
  
  .aljoud-navbar-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      max-width: 1400px;
      margin: 0 auto;
  }
  
  /* Three-column layout */
  .aljoud-navbar-menu {
      flex: 1;
      display: flex;
      justify-content: flex-start;
  }
  
  .aljoud-navbar-logo {
      flex: 0 0 auto;
      text-align: center;
      margin: 0 30px;
  }
  
  .aljoud-navbar-language-container {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }
  
  /* Logo Styles */
  .aljoud-navbar-logo img {
      max-width: 150px;
      height: auto;
  }
  
  .aljoud-navbar-logo-text {
      text-align: center;
  }
  
  .logo-main-text {
      font-size: 24px;
      font-weight: 500;
  }
  
  .logo-sub-text {
      font-size: 14px;
      font-weight: 300;
  }
  
  /* Menu Styles */
  .aljoud-navbar-menu-items {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      direction: rtl;
  }
  
  .aljoud-navbar-menu-items li {
      margin-left: 0;
  }
  
  .aljoud-navbar-menu-items li:not(:first-child) {
      margin-right: 30px;
  }
  
  .aljoud-navbar-menu-items a {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
      white-space: nowrap;
  }
  
  /* Language Switcher */
  .aljoud-navbar-language {
      display: flex;
      align-items: center;
  }
  
  .language-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
  }
  
  .language-link:hover {
      color: #cccccc;
  }
  
  .language-separator {
      margin: 0 5px;
      color: #ffffff;
  }
  
  /* Hover Effects */
  .aljoud-navbar-menu-items a:hover {
      color: #cccccc;
  }
  
  /* Toggle Button (Mobile) */
  .aljoud-navbar-toggle {
      display: none;
      cursor: pointer;
      font-size: 24px;
      z-index: 2;
  }
  
  /* Mobile Menu */
  .aljoud-navbar-mobile-menu {
      display: none;
      background-color: #000000;
      position: absolute;
      width: 100%;
      z-index: 10;
      padding: 20px;
      box-sizing: border-box;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      left: 0;
  }
  
  .aljoud-navbar-mobile-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: right;
      direction: rtl;
  }
  
  .aljoud-navbar-mobile-menu li {
      margin-bottom: 15px;
  }
  
  .aljoud-navbar-mobile-menu li:last-child {
      margin-bottom: 0;
  }
  
  .aljoud-navbar-mobile-menu a {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      display: block;
      padding: 5px 0;
  }
  
  .hero-content {
      text-align: right !important;
      padding-right: 20px !important
  }
  
  .landmarks-title {
      text-align: center !important
  }
  
  
  
  .rtl .aljoud-profile-button {
      align-self: flex-start !important;
      text-decoration: underline;
  }
  
  html[lang="ar"] .slider-images, 
  html[lang="ar"] .slider-navigation {
          direction: ltr;
  }
  
  .aljoud-profile-content {
      justify-content: space-between !important;
  }
  
  html[lang="ar"] .social-icons {
      direction: ltr !important
  }
  
  .aljoud-interior-slider .slider-content-area {
      background: none;
  }
  
  .rtl .nav-bottom-right .desktop-navigation {
      left: auto !important;
      right: 30px !important;
  }
  
   html[lang="ar"] .elementor-widget-aljoud_feature_slider .slider-navigation {
      direction: rtl;
  }
  
  .elementor-widget-aljoud_feature_slider img {
      height: 100% !important
  }
  
  .contact-form-fields, .form-field, input {
      direction: rtl;
      text-align: right
  }

#aljoud-property-showcase-4185ded .aljoud-property-area {

    align-items: center;
}
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
      .aljoud-navbar-menu-items li:not(:first-child) {
          margin-right: 20px;
      }
      
      .aljoud-navbar-logo {
          margin: 0 20px;
      }
  }
  
  @media (max-width: 991px) {
      .aljoud-navbar-menu-items li:not(:first-child) {
          margin-right: 15px;
      }
      
      .aljoud-navbar-logo {
          margin: 0 15px;
      }
  }
  
  @media (max-width: 767px) {
      .aljoud-navbar-container {
          flex-wrap: wrap;
      }
      
      .aljoud-navbar-toggle {
          display: block;
          order: 1;
          flex: 0 0 auto;
      }
      
      .aljoud-navbar-logo {
          order: 2;
          flex: 1;
          text-align: center;
          margin: 0;
      }
      
      .aljoud-navbar-language-container {
          order: 3;
          flex: 0 0 auto;
      }
      
      .aljoud-navbar-menu {
          display: none;
      }
      
      .aljoud-navbar-logo img {
          max-width: 120px;
      }
      
      .logo-main-text {
          font-size: 20px;
      }
      
      .logo-sub-text {
          font-size: 12px;
      }
      
      /* Ensure mobile menu appears below the header when sticky */
      .aljoud-navbar.is-sticky .aljoud-navbar-mobile-menu {
          top: 100%;
      }
      
      .elementor-widget-aljoud_feature_slider .image-side, .elementor-widget-aljoud_feature_slider .content-side, .contact-form-side{
          width: 100% !important
      }
      
      .elementor-widget-aljoud_feature_slider .slider-navigation.mobile-navigation {
          position: absolute;
      bottom: -40px;
      }
      
      .contact-form-side {
          padding: 0 !important
      }
      .footer-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
      flex-wrap: wrap;
  }
      
      .footer-logo img {
      height: auto;
      width: 80%;
  }
      
      .contact-logo-side, .property-image-side {
          width: 100% !important
      }
      
      .aljoud-profile-content {
          padding: 20px
      }
      
      .aljoud-property-landmarks-widget {
          height: 100% !important;
      }
      
      .aljoud-property-landmarks-widget .landmark-content {
              flex-direction: row !important;
      }
      
      .aljoud-profile-image {
          height: 100% !important;
          min-height: 100% !important;
      }
      .footer-logo img {
          height: auto !important
      }
  }
  
  
  
  @media (max-width: 480px) {
      .aljoud-navbar-logo img {
          max-width: 100px;
      }
      
      .language-link {
          font-size: 12px;
      }
  }