body {
    font-family: "Cairo", sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: #d92032;
  }
  a:hover {
    color: #a51827;
    text-decoration: underline;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  section {
    padding: 40px 20px;
    margin-bottom: 20px;
  }
  h1,
  h2,
  h3 {
    color: #d4af37;
    margin-bottom: 20px;
    text-align: center;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .btn,
  .btn-details {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
    border: 0;
  }
  .btn-primary,
  .btn-phone {
    background-color: #d92032;
    color: #fff;
  }
  .btn-primary:hover,
  .btn-phone:hover {
    background-color: #a51827;
    color: #fff;
    text-decoration: none;
  }
  .btn-secondary,
  .btn-whatsapp {
    background-color: #d4af37;
    color: #000;
  }
  .btn-secondary:hover,
  .btn-whatsapp:hover {
    background-color: #b8860b;
    color: #000;
    text-decoration: none;
  }
  .btn-details {
    background-color: #d92032;
    color: #fff;
  }
  .btn-details:hover {
    background-color: #a51827;
    color: #fff;
    text-decoration: none;
  }
  header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  header .logo img {
    height: 60px;
  }
  .main-navigation {
    display: flex;
    align-items: center;
  }
  .main-navigation ul {
    display: flex;
    margin-left: 30px;
  }
  .main-navigation ul li {
    margin-right: 25px;
  }
  .main-navigation ul li a {
    padding: 15px 5px;
    display: block;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  .main-navigation ul li a:hover {
    color: #d4af37;
    text-decoration: none;
  }
  .header-contact-buttons a {
    margin-left: 10px;
  }
  .mobile-menu-toggle {
    display: none;
    background: 0;
    border: 0;
    font-size: 1.8em;
    cursor: pointer;
    color: #333;
  }
  .hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  .hero h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  .hero-contact-buttons {
    margin-bottom: 30px;
  }
  .hero-features {
    list-style: disc;
    padding-right: 20px;
    text-align: right;
    display: inline-block;
  }
  .hero-features li {
    margin-bottom: 8px;
  }
  .why-choose-us {
    background-color: #fff;
    padding: 40px 20px;
  }
  .why-choose-us h3 {
    color: #d92032;
  }
  .why-choose-us ul {
    list-style: none;
    padding-right: 0;
    max-width: 700px;
    margin: 20px auto 0 auto;
    text-align: right;
  }
  .why-choose-us ul li {
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
  }
  .why-choose-us ul li::before {
    content: ".";
    color: #d4af37;
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 2em;
  }
  .shapes-section {
    background-color: #4caf50;
    color: #fff;
    text-align: center;
  }
  .shapes-section h2 {
    color: #fff;
  }
  .shapes-section p {
    max-width: 700px;
    margin: 0 auto 20px auto;
  }
  .services-overview {
    background-color: #fff;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  .service-item {
    border: 1px solid #eee;
    padding: 0;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
  }
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .service-item img {
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .service-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1a5d3b;
  }
  .service-item p {
    padding: 0 15px;
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
  }
  .service-item .btn-details {
    margin-bottom: 20px;
  }
  .statistics-section {
    background-color: #e9ecef;
    /* Removed display: grid and related properties here */
    padding: 40px 20px; /* Keep padding */
    text-align: center;
  }
  .stat-item {
    padding: 20px;
  }
  .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 5px;
  }
  .stat-label {
    font-size: 1.1em;
    color: #555;
  }
  .gallery {
    background-color: #fff;
  }
  .gallery p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  .gallery-item img {
    border: 1px solid #eee;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .gallery-actions {
    text-align: center;
    margin-top: 30px;
  }
  .service-details {
    background-color: #fff;
    padding: 30px;
    max-width: 1000px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .service-description {
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: right;
  }
  .service-gallery {
    margin-top: 20px;
  }
  .main-footer {
    background-color: #4caf50;
    color: #fff;
    padding: 40px 20px 20px 20px;
    margin-top: 30px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
  }
  .footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #66bb6a;
    display: inline-block;
  }
  .footer-column p,
  .footer-column ul li {
    margin-bottom: 10px;
    font-size: 0.95em;
  }
  .footer-column a {
    color: #fff;
  }
  .footer-column a:hover {
    text-decoration: underline;
    color: #eee;
  }
  .footer-column i {
    margin-left: 8px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #66bb6a;
    padding-top: 20px;
    font-size: 0.9em;
    color: #eee;
  }
  .footer-bottom p {
    margin: 5px 0;
  }
  @media (max-width: 992px) {
    h2 {
      font-size: 1.8em;
    }
    h3 {
      font-size: 1.4em;
    }
    .hero h1 {
      font-size: 2.2em;
    }
    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .statistics-section {
      grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    }
    .footer-container {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .mobile-menu-toggle {
      display: block;
    }
    .main-navigation {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #fff;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      flex-direction: column;
      align-items: stretch;
    }
    .main-navigation.active {
      display: flex;
    }
    .main-navigation ul {
      flex-direction: column;
      margin-left: 0;
      width: 100%;
    }
    .main-navigation ul li {
      margin-right: 0;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
    .main-navigation ul li:last-child {
      border-bottom: 0;
    }
    .main-navigation ul li a {
      padding: 12px 20px;
    }
    .header-contact-buttons {
      margin-top: 15px;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }
    .header-contact-buttons a {
      margin: 5px 0;
    }
  }
  @media (max-width: 768px) {
    section {
      padding: 30px 15px;
    }
    h2 {
      font-size: 1.6em;
    }
    h3 {
      font-size: 1.3em;
    }
    .hero {
      padding: 40px 15px;
    }
    .hero h1 {
      font-size: 1.8em;
    }
    .hero p {
      font-size: 1em;
    }
    .services-grid,
    .gallery-grid,
    .footer-container {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .statistics-section { /* Keep 4 columns on small screens */
      grid-template-columns: repeat(4, 1fr); /* Changed from 1fr */
      gap: 10px; /* Reduced gap for smaller screens */
    }
    .footer-column {
      text-align: center;
    }
    .footer-column h4 {
      display: block;
      border-bottom: 0;
    }
    .why-choose-us ul {
      padding-right: 0;
    }
    .why-choose-us ul li {
      padding-right: 25px;
    }
  }
  @media (max-width: 480px) {
    body {
      font-size: 15px;
    }
    header .logo img {
      height: 50px;
    }
    .hero h1 {
      font-size: 1.6em;
    }
    .hero p {
      font-size: 0.95em;
    }
    .main-navigation ul li a {
      padding: 10px 15px;
    }
    .btn,
    .btn-details {
      padding: 8px 18px;
      font-size: 0.9em;
    }
    .stat-number {
      font-size: 2em;
    }
    .stat-label {
      font-size: 1em;
    }
  }
  .button,
  a.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3b8152;
    color: #fff !important;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition:
      background-color 0.3s ease,
      transform 0.2s ease;
    margin: 5px;
    text-decoration: none;
  }
  .button:hover,
  a.button:hover {
    background-color: #0e23df;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
  }
  .button-accent {
    background-color: #0b0b0b;
  }
  .button-accent:hover {
    background-color: #333;
  }
  .elementor-button-icon {
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
  }
  .elementor-button-text {
    display: inline-block;
    vertical-align: middle;
  }
  .contact-buttons-inline {
    text-align: center;
    margin-top: 50px;
  }
  .cta-section {
    text-align: center;
    padding: 70px 0;
  }
  .cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: inherit;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-section .contact-buttons-inline {
    margin-top: 0;
  }
  .cta-section .button {
    padding: 15px 35px;
    font-size: 1.15rem;
  }
  @media (max-width: 768px) {
    .cta-section h2 {
      font-size: 1.8rem;
    }
  }
  
  
  /* --- Missing Classes Styles --- */
  
  /* Advantages Section */
  .advantages-section {
    padding: 40px 20px;
    background-color: #fff; /* Or another suitable background */
  }
  
  .advantages-section h4 {
    color: #D92032; /* Red */
    margin-top: 25px;
    margin-bottom: 10px;
  }
  
  .advantages-section ul {
    list-style: none;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .advantages-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px; /* Space for icon */
  }
  
  .advantages-section ul li i {
    color: #D4AF37; /* Gold */
    position: absolute;
    right: 0;
    top: 4px; /* Adjust vertical alignment */
  }
  
  .advantages-contact-buttons {
    text-align: center;
    margin-top: 30px;
  }
  
  /* Service Contact Buttons */
  .service-contact-buttons {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa; /* Light background */
    border-radius: 5px;
  }
  
  .service-contact-buttons p {
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  /* Stats Container (If specific styling needed beyond grid) */
  .stats-container {
      max-width: 1200px; /* Match general container */
      margin: 0 auto; /* Center container */
      display: grid; /* Re-apply grid if needed, though parent has it */
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
  }
  
  /* --- Style Updates for Existing Classes --- */
  
  /* Stat Number Color */
  .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #D92032; /* Red */
    margin-bottom: 5px;
  }
  
  /* Service Item Heading Color */
  .service-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #D92032; /* Red */
  }
  
  /* Shapes Section Background */
  .shapes-section {
    background-color: #000000; /* Black */
    color: #fff;
    text-align: center;
  }
  
  /* Footer Background */
  .main-footer {
    background-color: #000000; /* Black */
    color: #fff;
    padding: 40px 20px 20px 20px;
    margin-top: 30px;
  }
  
  /* Footer Column Heading Border */
  .footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D4AF37; /* Gold */
    display: inline-block;
  }
  
  /* Footer Bottom Border */
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #D4AF37; /* Gold */
    padding-top: 20px;
    font-size: 0.9em;
    color: #eee;
  }
  
  /* Button Styles Update */
  .button,
  a.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D92032; /* Red */
    color: #fff !important;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition:
      background-color 0.3s ease,
      transform 0.2s ease;
    margin: 5px;
    text-decoration: none;
  }
  
  .button:hover,
  a.button:hover {
    background-color: #A51827; /* Darker Red */
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
  }
  
  .button-accent {
    background-color: #D4AF37; /* Gold */
    color: #000 !important; /* Black text on gold */
  }
  
  .button-accent:hover {
    background-color: #B8860B; /* Darker Gold */
     color: #000 !important; /* Black text on gold */
  }
  
  /* CTA Section Update (Replacing CSS Variables) */
  .cta-section {
    text-align: center;
    padding: 70px 0;
    background-color: #D4AF37; /* Gold */
    color: #000; /* Black */
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: inherit; /* Inherits black from .cta-section */
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Ensure FontAwesome icons are included if not already */
  /* Add @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"); if needed */
  
  
  
  
  /* --- Missing Classes from Header/Footer --- */
  
  /* General Contact Buttons Wrapper (Used in Header) */
  .contact-buttons {
    display: flex; /* Ensures buttons align horizontally by default */
    align-items: center; /* Vertically align items */
    gap: 10px; /* Adds space between buttons */
  }
  
  /* Footer Specific Columns */
  /* These inherit base styles from .footer-column */
  /* Add specific overrides or additional styles here if needed */
  
  .footer-about {
    /* Example: Add more bottom margin if needed */
    /* margin-bottom: 15px; */
  }
  
  .footer-contact p {
    /* Ensure consistent line height or spacing for contact details */
    line-height: 1.8;
  }
  
  .footer-hours ul {
    list-style: none; /* Already set globally, but good to confirm */
    padding-right: 0; /* Reset padding if needed */
  }
  
  .footer-hours ul li {
    /* Style for working hours list items */
    margin-bottom: 8px;
  }
  
  /* Footer Icon Styling (Refinement) */
  .footer-column i {
    margin-left: 8px; /* Space between icon and text */
    width: 1.2em; /* Consistent width for alignment */
    text-align: center;
    color: #D4AF37; /* Gold color for icons */
  }
  
  /* Ensure footer links maintain color */
  .footer-column a {
      color: #fff; /* White color for links in footer */
  }
  
  .footer-column a:hover {
      color: #eee; /* Lighter color on hover */
      text-decoration: underline;
  }
  
  
  