@font-face {
  font-family: 'Hacen Tunisia';
  src: url('../fonts/Hacen Tunisia Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bahij TheSansArabic';
  src: url('../fonts/Bahij TheSansArabic Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root
{
  /* Primary */
  --color-primary-100: #7579F7;
  --color-primary-200: #306BF3;
  --color-primary-300: #5C97CD;
  --color-primary-400: #052588;
  --color-primary-500: #041243;

  /* Primary Alpha */
  --color-primary-alpha-10: #0412431A; /* 10% opacity */

  /* Secondary */
  --color-secondary-100: #E6DCD0;
  --color-secondary-200: #C8B8A0;
  --color-secondary-300: #AD9571;
  --color-secondary-400: #C7AC51;
  --color-secondary-500: #653229;

  /* Secondary Alpha */
  --color-secondary-alpha-10: #AD95711A; /* 10% opacity */

  /* Neutral */
  --color-neutral-100: #FFFFFF;
  --color-neutral-200: #E6E6E6;
  --color-neutral-300: #D2D2D2;
  --color-neutral-400: #BBBBBB;
  --color-neutral-500: #A4A4A4;
  --color-neutral-600: #8E8E8E;
  --color-neutral-700: #777777;
  --color-neutral-800: #606060;
  --color-neutral-900: #4A4A4A;
  --color-neutral-1000: #333333;

  /* Neutral Alpha */
  --color-neutral-alpha-10: #3333331A; /* 10% opacity */

  /* Red */
  --color-red-100: #F25748;
  --color-red-200: #D00416;

  /* Red Alpha */
  --color-red-alpha-10: #F257481A; /* 10% opacity */

  /* Yellow */
  --color-yellow-100: #FFD843;
  --color-yellow-200: #DFB400;

  /* Yellow Alpha */
  --color-yellow-alpha-10: #FFD8431A; /* 10% opacity */

  /* Green */
  --color-green-100: #4E8B84;
  --color-green-200: #1FC18B;

  /* Green Alpha */
  --color-green-alpha-10: #1FC18B1A; /* 10% opacity */

  /* Modern Navbar Styles - Based on provided design */
  --primary-color: #041243;
  --secondary-color: #AD9571;
  --text-color: #333333;
  --white-color: #FFFFFF;
}
a:hover {
  text-decoration: none;
  color : white;
}

ul {
  list-style : none;
}
li {
  margin-right: 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.modern-navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
}

/* Logo styling */
.navbar-brand {
  order:5; /* For RTL layout - appears on right */
}

.logo-img {
  height: 70px;
  width: auto;
}

/* Navigation links styling */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: rtl;
  gap: 24px;
  order: 2; /* For RTL layout - appears in center */
  margin: 0 auto;
}

.nav-item {
  color: var(--text-color) !important;
  font-size: 20px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--secondary-color);
}

/* Action buttons styling */
.action-btns {
  display: flex;
  align-items: center;
  direction: rtl;
  gap: 16px;
  order: 1; /* For RTL layout - appears on left */
  margin-left: 30px;
}

.order-btn {
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 48px;
  font-size: 20px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #06206b;
}

.contact-btn {
  padding: 10px 40px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 999px;
  font-size: 20px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: rgba(173, 149, 113, 0.1);
}

/* Language selector styling */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-text {
  color: var(--text-color);
  font-size: 14px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 21px;
}

.lang-icon {
  width: 18px;
  height: 18px;
  background-color: var(--text-color);
  border-radius: 50%;
}

/* Mobile menu toggle - hidden by default */
.mobile-toggle {
  display: none;
}

/* Mobile navigation menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.mobile-nav-item {
  padding: 12px 20px;
  color: var(--text-color);
  font-size: 18px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.mobile-nav-item.highlight {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 8px;
  margin: 5px 0;
}

.mobile-nav-item.outline {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 8px;
  margin: 5px 0;
}

/* Hero Section Styles - Improved */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-title {
  color: var(--white-color);
  font-size: 60px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  max-width: 790px;
  margin-bottom: 32px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.hero-contact-btn {
  padding: 12px 40px;
  border-radius: 48px;
  border: 1px solid #E4DCD0;
  color: #E4DCD0;
  font-size: 20px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-contact-btn:hover {
  background-color: rgba(228, 220, 208, 0.15);
  color: #FFFFFF;
  text-decoration: none;
}

.hero-order-btn {
  width: 155px;
  padding: 12px 40px;
  border-radius: 48px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  font-family: 'Hacen Tunisia', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-order-btn:hover {
  background-color: #052588;
  color: var(--white-color);
  text-decoration: none;
}

/* Responsive design */
@media (max-width: 1200px) {
  .nav-links {
    gap: 15px;
  }
  
  .nav-item {
    font-size: 18px;
  }
  
  .order-btn, .contact-btn {
    padding: 8px 25px;
    font-size: 18px;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .modern-navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }
  
  .navbar-brand {
    margin: 0 0 ;
    margin-right: 0;
    margin-left: 5px;
  }
  
  .nav-links {
    display: none;
  }
  
  .action-btns {
    order: 2;
    margin-left: 0;
  }
  
  .mobile-toggle {
    display: block;
    order: 3;
  }
  
  .navbar-toggler {
    border: none;
    background: transparent;
  }
  
  .navbar-toggler-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: contain;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  #mobileNavMenu {
    width: 100%;
    order: 1;
  }
  
  .hero-title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (max-width: 768px) {
  .action-btns {
    display: none;
  }
  
  .navbar-brand {
    order: 5;
    margin: 0 0 ;
    margin-right: 0;
    margin-left: 5px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-contact-btn, .hero-order-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }
}

.section-title {
    color: #333333;
    font-size: 38px;
    font-family: 'Hacen Tunisia', sans-serif;
    font-weight: 400;
    line-height: 57px;
    margin: 0 0 15px 0;
    text-align: right;
  }
  
  .section-subtitle {
    color: #333;
    font-size: 20px;
    font-family: 'Hacen Tunisia', sans-serif;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 10px 0;
    text-align: right;
  }
  
  .section-description {
    color: var(--color-neutral-900, #4A4A4A);
    font-size: 18px;
    font-family: 'Bahij TheSansArabic', sans-serif !important;
    font-weight: 500;
    line-height: 27px;
    margin: 0 0 20px 0;
    text-align: right;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .section-title {
      font-size: 32px;
      line-height: 48px;
    }
    .section-subtitle {
      font-size: 18px;
      line-height: 22px;
    }
    .section-description {
      font-size: 16px;
      line-height: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
      line-height: 42px;
    }
    .section-subtitle {
      font-size: 16px;
      line-height: 20px;
    }
    .section-description {
      font-size: 15px;
      line-height: 22px;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 24px;
      line-height: 36px;
    }
    .section-subtitle {
      font-size: 15px;
      line-height: 18px;
    }
    .section-description {
      font-size: 14px;
      line-height: 21px;
    }
  }

  .properties-section {
  background-color: #fff;
}

/* Section Header Styles */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: 2rem;
}

 .section-category {
    color: var(--color-primary-500, #041243);
    font-size: 20px;
    font-family: 'Hacen Tunisia', sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
  }



.more-btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.more-btn {
  background-color: #11144B;
  color: white;
  font-family: 'Bahij TheSansArabic', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: #6f42c1;
  color: white;
}

/* Property Card Styles */
.property-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.property-card {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Property Image Styles */
.property-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

/* Property Tags */
.property-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 0.5rem;
  direction: rtl;
}

.tag {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Bahij TheSansArabic', sans-serif;
  padding: 0.25rem 2rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag-available {
  background-color: #20c997;
}

.tag-occupied {
  background-color: #dc3545;
}

.tag-rent {
  background-color: #11144B;
}

.tag-sale {
  background-color: #11144B;
}

/* Property Details */
.property-details {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price {
  color: #333;
  font-size: 1.25rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0;
}

.price-period {
  color: #333;
  font-size: 1rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0 0.5rem 0 0;
}

.property-info {
  text-align: right;
  margin-bottom: 1rem;
}

.property-title {
  color: #333;
  font-size: 1.25rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0 0 0.5rem 0;
}

.property-location {
  color: #333;
  font-size: 1rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0;
}

/* Property Features */
.property-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.25rem;
}

.feature-value {
  color: #333;
  font-size: 1rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0;
}

/* Property More Button */
.property-more-btn {
  background-color: #11144B;
  color: white;
  font-family: 'Bahij TheSansArabic', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-radius: 2rem;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.property-more-btn:hover {
  background-color: #6f42c1;
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-description {
    width: 100%;
  }
  
  .property-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  
  .property-image-container {
    height: 180px;
  }
}

@media (max-width: 576px) {
  
  .property-tags {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .property-features {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .feature {
    width: 45%;
  }
}

/* About Section Styles */
.about-section {
  position: relative;
}

/* Images Styles */
.about-images {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.about-image {
  border-radius: 0.5rem;
  object-fit: cover;
  width: 48%;
  height: 412px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-images .secondary-image {
  transform:translate(-30% , 15%);
}

.about-image:hover {
  transform: translateY(-5px);
}

/* Content Styles */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 0 1rem;
}

.about-title {
  color: #11144B;
  font-size: 2rem;
  font-weight: normal;
  font-family: 'Hacen Tunisia', sans-serif;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  width: 100%;
}

.about-description {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Bahij TheSansArabic', sans-serif;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.about-button-container {
  display: flex;
  justify-content: flex-end;
}

.about-button {
  background-color: #11144B;
  color: white;
  font-family: 'Bahij TheSansArabic', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
}

.about-button:hover {
  background-color: #6f42c1;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-images {
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .about-image {
    width: 45%;
    height: 350px;
  }
  
  .about-content {
    align-items: center;
    text-align: center;
  }
  
  .about-title, .about-description {
    text-align: center;
  }
  
  .about-button-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 300px;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .about-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  
  .about-image {
    width: 50%;
    height: 250px;
    margin-bottom: 1rem;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
}


  
  .primary-btn {
    background-color: #11144B !important;
    color: white !important;
    font-family: 'Hacen Tunisia', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }


  
  .secondary-btn {
    background-color: transparent;
    color: #11144B;
    font-family: 'Hacen Tunisia', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #11144B;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Image Container and Overflow Styling */
  .image-container {
    height: 300px; /* Fixed height container */
    overflow: visible; /* Allow content to overflow */
    position: relative;
  }
  
  .overflow-image {
    position: absolute;
    max-width: 130% !important;
    height: 120%; /* Make image taller than container */
    z-index: 1;
    left: -15%;
    top: -10%; /* Negative top to overflow upward */
    transform: translateX(-5%);
    object-fit: contain;
  }
  
  /* Button Hover Effects */

  /* Responsive Styles */
  @media (max-width: 992px) {
    .dream-reality-section .row {
      flex-direction: column;
      padding: 20px;
    }
    .image-container {
      height: 250px;
    }
    .overflow-image {
      max-width: 110% !important;
      height: 110%;
      left: 50%;
      top: -5%;
      transform: translateX(-50%);
    }
    .dream-reality-section .col-lg-6 {
      text-align: center;
    }
    .dream-reality-section .text-end {
      text-align: center !important;
    }
    .dream-reality-section .text-end div {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .dream-reality-section .text-end .d-flex {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .primary-btn, .secondary-btn {
      font-size: 14px;
      padding: 8px 16px;
    }
    .image-container {
      height: 200px;
    }
    .overflow-image {
      max-width: 100% !important;
    }
  }
  
  @media (max-width: 576px) {
    .dream-reality-section .row {
      padding: 15px;
    }
    .image-container {
      height: 180px;
    }
    .overflow-image {
      max-width: 110% !important;
    }
    .primary-btn, .secondary-btn {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  .overflow-image {
    transition: transform 0.5s ease;
  }
  
  /* Services Section Specific Styles */
  
  /* Services Cards Styles */
  .services-section {
    padding: 60px 0;
  }
  
  .service-card,
  .service-card-large {
    height: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover,
  .service-card-large:hover {
    transform: translateY(-5px);
  }
  
  .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 20, 75, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
  }
  
  .service-overlay-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 20, 75, 0.7);
    width: 100%;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    text-align: center;
  }
  
  .service-card:hover .service-overlay-hover {
    height: 100%;
    opacity: 1;
  }
  
  .service-title {
    font-size: 24px;
    font-family: 'Hacen Tunisia', sans-serif;
    font-weight: 500;
  }
  
  .service-title-large {
    font-size: 32px;
    font-family: 'Hacen Tunisia', sans-serif;
    font-weight: 500;
  }
  
  .service-link-light {
    color: white;
    font-size: 14px;
    font-family: 'Hacen Tunisia', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
  }
  
  .service-link-light:hover {
    color: #f8f9fa;
    transform: translateX(-5px);
  }
  
  /* Object Fit for Images */
  .object-fit-cover {
    object-fit: cover;
    object-position: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .service-card, 
    .service-card-large {
      height: 300px;
    }
    
    .service-title-large {
      font-size: 28px;
    }
    
  }
  
  @media (max-width: 768px) {
    .service-card, 
    .service-card-large {
      height: 250px;
      margin-bottom: 20px;
    }
    
    .service-title-large {
      font-size: 24px;
    }
    
    .gx-4 {
      --bs-gutter-x: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .service-card, 
    .service-card-large {
      height: 200px;
    }
    
    
    .service-title {
      font-size: 20px;
    }
    
    .service-title-large {
      font-size: 22px;
    }
    
  }

.page-header {
  background-color: var(--color-secondary-alpha-10);
  padding: 80px 0;
  text-align: center;
  width: 90%;
  margin: 40px auto;
  border-radius: 20px;
}

.page-header .page-decoration {
  position: absolute;
  bottom: 70px;
  right: 25%;
  transform: translateX(50%);
  height: 100%;
  border-radius: 20px;
  z-index: 1;
}
.why-choose-us-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}


/* Features Row - RTL order for Arabic */
.features-row {
  display: flex;
  flex-direction: row-reverse;
}

/* Feature Card Styles */
.feature-card {
  text-align: center;
  padding: 20px 15px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  direction: rtl;
  align-items: flex-start;
  text-align: right;
}

/* a line in the right of the card */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  transform: translateY(50%);
  height: 50%;
  background-color: #B39B7A;
  border-radius: 0px 10px 10px 0px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
  width: 80px;
  height: 80px;
  background-color: rgba(179, 155, 122, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #B39B7A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(179, 155, 122, 0.3);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #11144B;
  margin-bottom: 15px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  font-family: 'Hacen Tunisia', sans-serif;
  max-width: 250px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .why-choose-us-section {
    padding: 60px 0;
  }
  
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {

  
  .features-row {
    flex-direction: column-reverse;
  }
  
  .feature-card {
    margin-bottom: 30px;
    flex-direction: row;
    text-align: right;
    align-items: flex-start;
  }
  
  .feature-icon-wrapper {
    margin-bottom: 0;
    margin-left: 15px;
  }
  
  .feature-content {
    align-items: flex-start;
  }
  
  .feature-description {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .feature-icon-wrapper::before {
    width: 60px;
    height: 60px;
  }
  
  .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feature-card {
    padding: 15px 10px;
  }
}

.faq-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}


/* FAQ Accordion Styles */
.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item.active {
  border-color: #f0f0f0;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 22px;
  font-weight: 500;
  color: #11144B;
  margin: 0;
  font-family: 'Hacen Tunisia', sans-serif;
  flex: 1;
  text-align: right;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 15px;
}

.toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
}

.toggle-icon:before,
.toggle-icon:after {
  content: '';
  position: absolute;
  background-color: #11144B;
  transition: all 0.3s ease;
}

.toggle-icon:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.toggle-icon:after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .toggle-icon:after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
}

.faq-answer p {
  margin: 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Hacen Tunisia', sans-serif;
  text-align: right;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* More Questions CTA */
.more-questions {
  margin-top: 30px;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 12px;
  text-align: center;
}

.more-questions p {
  font-size: 18px;
  color: #11144B;
  margin-bottom: 15px;
  font-family: 'Hacen Tunisia', sans-serif;
}


.contact-btn:hover {
  transform: translateY(-2px);
  background-color: var(--color-secondary-alpha-10);
  color: var(--color-secondary-300);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faq-section {
    padding: 60px 0;
  }
  
  
  .faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-answer-inner {
    padding: 0 20px 15px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
  
  .more-questions {
    padding: 20px;
  }
  
  .more-questions p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.property-request-section {
  padding: 70px 0;
  background-color: #fff;
}

.request-form-container {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* Form Header */
.form-subtitle {
  color: #666;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 5px;
}

.form-title {
  color: #11144B;
  font-size: 28px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Form Sections */
.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


/* Form Controls */
.form-label {
  display: block;
  text-align: right;
  color: #333;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  color: #333;
  background-color: #fff;
  text-align: right;
  direction: rtl;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus,
.form-select:focus {
  border-color: #11144B;
  box-shadow: 0 0 0 0.2rem rgba(17, 20, 75, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Input Groups */
.input-group {
  display: flex;
  direction: ltr;
}

.input-group .form-control {
  flex: 1;
  border-radius: 8px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #333;
}

.country-code {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.currency {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

/* Features Group */
.features-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}

.feature-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.feature-item label {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-family: 'Hacen Tunisia', sans-serif;
  cursor: pointer;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background-color: #11144B;
  color: white;
  font-family: 'Hacen Tunisia', sans-serif;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #0a0c30;
  transform: translateY(-2px);
}

/* Form Validation */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 12px;
  color: #dc3545;
  text-align: right;
}

/* Alert Messages */
.alert {
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .request-form-container {
    padding: 30px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
}

@media (max-width: 768px) {
  .request-form-container {
    padding: 25px;
  }
  
  .form-title {
    font-size: 22px;
  }
  
  .form-control,
  .form-select,
  .input-group-text {
    font-size: 13px;
    height: 44px;
  }
  
  .btn-submit {
    font-size: 15px;
    padding: 10px 15px;
  }
  
  .form-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .request-form-container {
    padding: 20px;
  }
  
  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .form-subtitle {
    font-size: 13px;
  }
  
  .form-label {
    font-size: 13px;
  }
  
  
  .feature-item label {
    font-size: 13px;
  }
}

.property-request-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.request-form-container {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Form Header */
.form-header {
  margin-bottom: 30px;
}

.form-title {
  color: #11144B;
  font-size: 28px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #666;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 0;
}

/* Form Controls */
.form-label {
  display: block;
  text-align: right;
  color: #333;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  color: #333;
  background-color: #fff;
  text-align: right;
  direction: rtl;
  width: 100%;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus,
.form-select:focus {
  border-color: #11144B;
  box-shadow: 0 0 0 0.2rem rgba(17, 20, 75, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Phone Input */
.phone-input-container {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}

.country-code {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: #f8f8f8;
  border-left: 1px solid #ccc;
  font-size: 14px;
  color: #333;
}

.phone-input-container .form-control {
  border: none;
  border-radius: 0;
  flex: 1;
}

/* Price Input */
.price-input-container {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.currency-code {
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: #f8f8f8;
  border-right: 1px solid #ccc;
  font-size: 14px;
  color: #333;
}

.price-input-container .form-control {
  border: none;
  border-radius: 0;
  flex: 1;
}

/* Select Container */
.select-container {
  position: relative;
}

.select-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  pointer-events: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 30px;
}

/* Submit Button */
.submit-container {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  background-color: #11144B;
  color: white;
  font-family: 'Hacen Tunisia', sans-serif;
  font-size: 16px;
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #0a0c30;
  transform: translateY(-2px);
}

/* Error Message */
.error-message {
  color: #dc3545;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .request-form-container {
    padding: 30px;
  }
  
  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .request-form-container {
    padding: 25px;
  }
  
  .form-title {
    font-size: 22px;
  }
  
  .form-control,
  .form-select,
  .country-code,
  .currency-code {
    font-size: 13px;
    height: 44px;
  }
  
  .submit-btn {
    font-size: 15px;
    padding: 10px 30px;
  }
}

@media (max-width: 576px) {
  .request-form-container {
    padding: 20px;
  }
  
  .form-title {
    font-size: 20px;
  }
  
  .form-subtitle {
    font-size: 13px;
  }
  
  .form-label {
    font-size: 13px;
  }
}

.interior-design-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

/* Image Styles */

.service-category {
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-title {
  color: #11144B;
  font-size: 32px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.service-description {
  color: #555;
  font-size: 16px;
  font-family: 'Hacen Tunisia', sans-serif;
  line-height: 1.7;
  margin-bottom: 30px;
}
.features-list {
  margin-bottom: 30px;
  margin-right: auto;
  display : flex;
  flex-direction: column;
  align-items: flex-end;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #D6C6A6;
  color: white;
  border-radius: 50%;
  margin-left: 15px;
  flex-shrink: 0;
}

.feature-text {
  color: #11144B;
  font-size: 18px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 500;
  text-align: right;
}
/* CTA Button */
.cta-container {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: end;
}


.cta-button {
  display: inline-block;
  background-color: #11144B;
  color: white;
  font-family: 'Hacen Tunisia', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
/* Responsive Styles */
@media (max-width: 992px) {
  .service-title {
    font-size: 28px;
  }
  
  .service-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 24px;
  }
  
  .feature-text {
    font-size: 15px;
  }
  
  .cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 22px;
  }
  
  .service-description {
    font-size: 14px;
  }
  
  .feature-text {
    font-size: 14px;
  }
}

/* Service Request Form Styles */
.service-request-form {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 0 auto;
  direction: rtl;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  color: #11144B;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.form-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Form Container */
.form-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.required {
  color: #e74c3c;
  margin-right: 4px;
}

.form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  width: 100%;
  font-family: 'Hacen Tunisia', sans-serif;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  border-color: #11144B;
  box-shadow: 0 0 0 3px rgba(17, 20, 75, 0.1);
  outline: none;
}

/* Phone Input */
.phone-input-wrapper {
  position: relative;
}

.country-code {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background-color: #f5f5f5;
  border-right: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.phone-input-wrapper .form-control {
  padding-left: 70px;
}

/* Select Styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 16px;
  padding-left: 40px;
}

/* Textarea Styling */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background-color: #11144B;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.submit-btn:hover {
  background-color: #0a0c30;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 12, 48, 0.2);
}

/* Error Container */
.error-container {
  margin-top: 25px;
}

.alert {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.alert-danger {
  background-color: #fdecea;
  color: #e74c3c;
  border: 1px solid #fadbd8;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .service-request-form {
    padding: 30px;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .service-request-form {
    padding: 25px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .form-title {
    font-size: 22px;
  }
  
  .form-control {
    height: 45px;
    font-size: 14px;
  }
  
  .country-code {
    height: 45px;
  }
  
  .submit-btn {
    font-size: 15px;
    padding: 10px 30px;
  }
}

@media (max-width: 576px) {
  .service-request-form {
    padding: 20px;
  }
  
  .form-container {
    padding: 15px;
  }
  
  .form-title {
    font-size: 20px;
  }
  
  .form-label {
    font-size: 14px;
  }
  
  .form-control {
    height: 40px;
    font-size: 13px;
  }
  
  .country-code {
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }
  
  .phone-input-wrapper .form-control {
    padding-left: 60px;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

/* Blog Header */
.blog-header {
  margin-bottom: 20px;
}

.blog-label {
  display: block;
  color: #333;
  font-size: 16px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 10px;
}

.blog-title {
  color: #11144B;
  font-size: 32px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Blog Card */
.blog-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Blog Image */
.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Date Box */
.date-box {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  min-width: 60px;
}

.date-box .day {
  display: block;
  color: #11144B;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  font-family: 'Hacen Tunisia', sans-serif;
}

.date-box .month {
  display: block;
  color: #666;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-top: 3px;
}

/* Blog Content */
.blog-content {
  padding: 25px;
  text-align: right;
}

.blog-card-title {
  color: #11144B;
  font-size: 18px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 50px;
}

.blog-excerpt {
  color: #666;
  font-size: 14px;
  font-family: 'Hacen Tunisia', sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 90px;
}

.read-more {
  display: inline-block;
  color: #11144B;
  font-size: 15px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.read-more:after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #11144B;
  transition: width 0.3s ease;
}

.read-more:hover {
  color: #0a0c30;
}

.read-more:hover:after {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-title {
    font-size: 28px;
  }
  
  .blog-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-title {
    font-size: 24px;
  }
  
  .blog-card-title {
    font-size: 17px;
    min-height: auto;
  }
  
  .blog-excerpt {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 40px 0;
  }
  
  .blog-title {
    font-size: 22px;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .date-box {
    padding: 8px;
    min-width: 50px;
  }
  
  .date-box .day {
    font-size: 20px;
  }
  
  .date-box .month {
    font-size: 12px;
  }
  
  .blog-content {
    padding: 20px;
  }
}

/* Blog Post Styles */

/* Hero Section */
.blog-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: right;
  color: #fff;
  margin-bottom: 60px;
}

.blog-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Blog Post Section */
.blog-post-section {
  padding: 0 0 80px;
}

/* Main Content */
.blog-post-content {
  margin-bottom: 40px;
}

.featured-image {
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.post-content {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: right;
  font-family: 'Hacen Tunisia', sans-serif;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
  color: #11144B;
  font-weight: 600;
  margin: 30px 0 15px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.additional-images {
  margin: 30px 0;
}

.additional-images img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Social Sharing */
.social-sharing {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.social-sharing h4 {
  color: #11144B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.sharing-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook {
  background-color: #3b5998;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.whatsapp {
  background-color: #25d366;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 30px;
}

.sidebar-widget {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
  margin-bottom: 20px;
}

.widget-title h4 {
  color: #11144B;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Author Widget */
.author-info {
  padding: 15px 0;
}

.label {
  color: #666;
  font-size: 16px;
  font-family: 'Hacen Tunisia', sans-serif;
}

.author-name, .post-date {
  color: #11144B;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* Related Posts Widget */
.posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.post-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.post-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 15px;
  flex-shrink: 0;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-info {
  flex: 1;
  text-align: right;
}

.post-title {
  color: #11144B;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 5px;
  line-height: 1.4;
  font-family: 'Hacen Tunisia', sans-serif;
}

.post-item .post-date {
  color: #666;
  font-size: 13px;
  font-family: 'Hacen Tunisia', sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .blog-hero {
    height: 350px;
    margin-bottom: 40px;
  }
  
  .blog-hero-title {
    font-size: 32px;
  }
  
  .blog-post-section {
    padding: 0 0 60px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .blog-hero-title {
    font-size: 28px;
  }
  
  .post-content {
    font-size: 15px;
  }
  
  .additional-images img {
    height: 200px;
  }
  
  .blog-sidebar {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 576px) {
  .blog-hero {
    height: 250px;
    margin-bottom: 25px;
  }
  
  .blog-hero-title {
    font-size: 24px;
  }
  
  .featured-image {
    margin-bottom: 20px;
  }
  
  .post-content {
    font-size: 14px;
  }
  
  .additional-images img {
    height: 150px;
  }
  
  .social-sharing h4 {
    font-size: 16px;
  }
  
  .share-btn {
    width: 35px;
    height: 35px;
  }
  
  .widget-title h4 {
    font-size: 18px;
  }
}
.nav-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
  font-size: 25px;
}

.page-header-content {
  text-align: center;
}
.page-title {
  color: #11144B;
  font-size:48px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.page-main-title {
  color: #11144B;
  font-size: 20px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}

.page-main-subtitle {
  color: #11144B;
  font-size: 48px;
  font-family: 'Hacen Tunisia', sans-serif;
  margin-bottom: 0px;
}

.hash-tag {
  color: #11144B;
  font-size: 20px;
  font-family: 'Hacen Tunisia', sans-serif;
  font-weight: 400;
}

.hash-tag:hover {
  color: #0a0c30;
  text-decoration: none;
}

.contact-form-container{
  background-color: var(--color-secondary-alpha-10);
  width: 90% ;
  margin: 0 auto;
}
.contact-form-container .form-control{
  background-color: var(--color-secondary-alpha-10);

}
.map-section{
  background-color: var(--color-secondary-alpha-10);
  width: 90% ;
  border-radius: 16px;
  margin: 0 auto;

  margin-bottom: 40px;
  padding: 0;
}

.form-container{
  background-color: var(--color-secondary-alpha-10);

}
.form-container .form-control{
  background-color: var(--color-secondary-alpha-10);

}


.service-description ul{
  /* list style dots */
  list-style-type: disc;
  padding-left: 20px;
}
.service-description ul li{
  margin-bottom: 10px;
  list-style: disc;
}