
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}body {
  font-family: 'Cairo', sans-serif; 
  background-color: #000000; 
  color: #111;
  direction: rtl; 
  text-align: right;
  height: 100vh;
  display: contents;
  justify-content: center;
  align-items: center;
}
.licon {
  margin: 0 auto; 
  display: flex; /* Use flexbox to align items */
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
  padding: 10px; /* Add some padding */
  background-color: #e0e0e0; /* White background */
  position: fixed;
  padding: 10px 20px; /* Padding for the header */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  position: relative; /* Positioning context for absolute elements */
  justify-content: space-between; /* Space between search box and nav */
  border-bottom: 3px #000000 solid;
}
.licon h1{
  font-size:x-large;
  align-items: center;
}
.logo {
  width: 80px; /* Set the size of the logo */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between logo and text */
}
header {
  direction: ltr;
  margin: 0 auto; /* Center the header */
  background-color: #ffffff; /* White background for the header */
  padding: 10px 20px; /* Padding for the header */
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Subtle shadow */
  position: relative; /* Positioning context for absolute elements */
  display: flex; /* Align children in a row */
  justify-content: space-between; /* Space between search box and nav */
  align-items: center; /* Center items vertically */
}
.search_box {
  display: flex; /* Align items in a row */
  align-items: center; /* Center items vertically */
  flex-grow: 1; /* Allow search box to grow */
  margin-right: 20px;
}
#search_input {
  flex: 1; /* Allow the input to take up available space */
  padding: 10px; /* Padding inside the input */
  border: 1px solid #1a1919; /* Border style */
  border-radius: 4px; /* Rounded corners */
  font-size: 14px; /* Font size */
  transition: border 0.3s; /* Smooth transition for border */
}
#search_input:focus {
  border: 1px solid #007BFF; /* Change border color on focus */
  outline: none; /* Remove outline */
}
#search_icon {
  cursor: pointer; /* Change cursor to pointer on hover */
  margin-left: -30px; /* Overlap the icon on the input */
  color: #007BFF; /* Icon color */
  font-size: 18px; /* Icon size */
}
nav {
  display: flex; /* Align items in a row */
  justify-content: space-between; /* Space between nav items */
  align-items: center; /* Center items vertically */
}

nav ul {
  display: none; /* Hide navigation links on small screens */
  flex-direction: column; /* Stack links vertically */
  position: absolute; 
  height: auto;
  padding: 10px;
  text-align: center; /* Position the menu */
  top: 50px; /* Position below the toggle */
  right: 0; /* Align with the right edge */
  background-color: #FFF0D1; /* Background color for dropdown */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
  width: 20%; /* Full width of the dropdown */
  z-index: 1001;
  
}

li {
  margin: 0 15px; /* Space between menu items */
  position: relative; /* Position relative for dropdown */
  border-bottom: 3px solid #ba3a03;
  padding: 10px;
  list-style-type: none; /* This removes the bullet points */

}
nav ul li a {
  list-style-type: none; /* This removes the bullet points */
    position: relative; /* Make the link relative to contain the pseudo-elements */
    text-decoration: none; /* Remove underline */
    color: #333; /* Initial color */
    transition: color 0.3s ease-in-out; /* Smooth transition for color */
}
nav ul li a::before,
nav ul li a::after {
        content: ''; /* Empty content for the pseudo-elements */
        position: absolute; /* Position them absolutely relative to the link */
        height: 3px; /* Line height */
        width: 0%; /* Initial width of the lines */
        background-color: #007BFF; /* Color of the lines */
        transition: width 0.3s ease-in-out; /* Smooth transition for width */
}

nav ul li a::before {
  top: 0; /* Position before element at the top of the link */
  left: 0; /* Start from the left */
}    
nav ul li a::after {
  bottom: 0; /* Position after element at the bottom of the link */
  right: 0; /* Start from the right */
}
nav ul li a:hover::before,
nav ul li a:hover::after {
  width: 100%; /* Expand the width to 100% on hover */
}
nav ul li a:hover {
  color: #007BFF; /* Change text color on hover */
} 
/* Menu toggle styles */
.menu-toggle {
  display: flex; /* Initially hidden */
  flex-direction: column; /* Stack the burger icons vertically */
  cursor: pointer; /* Change cursor to pointer on hover */
  z-index: 1000; /* Ensure it appears above other elements */
}   
.burger-icon {
  width: 25px; /* Width of each burger icon */
  height: 3px; /* Height of each burger icon */
  background-color: #000000; /* Color of the burger icons */
  margin: 3px 0; /* Spacing between icons */
  transition: background-color 0.3s ease; /* Smooth transition on hover */
}
nav.active ul {
  display: flex;
}
@media (max-width: 768px) {
     
  .menu-toggle {
      display: flex; /* Show menu toggle on small screens */
  }
 
  nav ul {
      display: none; /* Hide navigation links on small screens */
      flex-direction: column; /* Stack links vertically */
      position: absolute; 
      text-align: right; /* Position the menu */
      top: 50px; /* Position below the toggle */
      right: 0; /* Align with the right edge */
      background-color: #FFF0D1; /* Background color for dropdown */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
      width: 100%; /* Full width of the dropdown */
  }

  nav.active ul {
      display: flex; /* Show the menu when active */
  }
}
/* Popup Menu Suggestions Styling */
.suggestions {
  position: absolute;
  top: calc(100% + 5px); /* Place the suggestions slightly below the search box */
  left: 0;
  right: 0;
  background-color: #FFF0D1; /* Match the nav dropdown background color */
  border: 1px solid #ccc; /* Optional border for the popup */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for popup effect */
  border-radius: 8px; /* Rounded corners to give it a popup feel */
  z-index: 1000; /* Ensure suggestions appear above other elements */
  display: none; /* Hidden by default */
  padding: 10px 0; /* Add padding inside the suggestions box */
  width: 100%; /* Full width popup */
  max-height: 300px; /* Limit height of suggestions */
  overflow-y: auto; /* Scrollable if there are many suggestions */
}

.suggestions li {
  padding: 10px 15px; /* Padding for each suggestion */
  cursor: pointer; /* Pointer cursor for interactivity */
  list-style-type: none; /* No bullet points */
  background-color: transparent; /* Transparent background by default */
  font-size: 14px; /* Font size */
  color: #333; /* Text color */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.suggestions li:hover {
  background-color: #007BFF; /* Highlight the suggestion on hover */
  color: #fff; /* Change text color on hover */
}

.suggestions li:last-child {
  border-bottom: none; /* No border for the last item */
}

/* Display the popup suggestions */
.suggestions.visible {
  display: block; /* Show suggestions when active */
}
.floating-bar {
  position: fixed;
  bottom: 70px;
  width: 100%;
  pointer-events: none; /* Ensures that only the buttons are clickable */
}

.floating-button {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366; /* Default WhatsApp Green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  pointer-events: auto; /* Enables the buttons to be clickable */
  cursor: pointer;
}

.floating-button img {
  width: 32px;
  height: 32px;
}

.floating-button.whatsapp {
  left: 20px; /* Floats on the left side */
  background-color: #25d366;
}

.floating-button.call-us {
  right: 20px; /* Floats on the right side */
  background-color: #007bff;
}

.floating-button:hover {
  transform: scale(1.1);
}

.text-card {
  background-color: #e0e0e0; /* Light background color */
  border: 1px solid #ddd;   /* Light border */
  border-radius: 8px;       /* Rounded corners */
  padding: 10px;             /* Padding inside the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  /* max-width: 300px;          Maximum width of the card */
  margin: 5px auto;  
  border: 2px #218838 solid;       /* Center the card */
  text-align: center;        /* Center text alignment */
}    
.card-title {
  font-size: 1.5rem;         /* Font size for title */
  color: #333;  
  border-bottom: 3px #000000 solid;             /* Dark text color */
  margin-bottom: 10px;       /* Spacing below title */
}
.card-text {
  font-size: 1rem;           /* Font size for text */
  color: #666;   
  background-color: #fff;            /* Lighter text color */
  margin-bottom: 20px;       /* Spacing below text */
}

.call-button {
  display: inline-block;      /* Inline-block for button styling */
  background-color: #28a745; /* Button background color */
  color: white;              /* Button text color */
  padding: 10px 20px;        /* Padding inside button */
  border-radius: 5px;        /* Rounded corners for button */
  text-decoration: none;      /* Remove underline */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}    
.call-button:hover {
  background-color: #218838;  /* Darker shade on hover */
}    
.slider {
  position: relative;
  max-width: 100%;
  height: 78vh; /* Set height to 70% of viewport height */
  margin: auto;
  overflow: hidden;
}  
.slides {
  display: flex;
  height: 100%; /* Ensure slides take up full height of the .slider */
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%; /* Ensure images fill the slide container */
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .slider {
      height: 60vh; /* Full viewport height for phone screens */
  }

  .mainImgClass {
      height: 10vh; /* Adjust if necessary for better appearance on small screens */
  }

  .mainImgClass img {
      height: 10vh; /* Consistent with the height of .mainImgClass */
  }
}
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 10px; /* Space between cards */
  justify-content: center; /* Center the card container */
}
.card {
  border: 1px solid #ddd; /* Overall border for the card */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0; /* Remove margin to reduce spacing */
  padding: 15px;
  max-width: 100%; /* Allow card to take full width */
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in the width */
}

.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #000000;
}

.card-image {
  width: 100%;
  height: 25vh; /* You can adjust this height as needed */
  border-radius: 5px;
}

.card-text {
  border-bottom: 2px solid #000000;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 15px 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid #ddd; /* Top border for the footer */
  padding-top: 10px;
}

.like-button,
.visit-button {
  border: 1px solid #4CAF50; /* Border for the buttons */
  background-color: white; /* Background color for buttons */
  color: #4CAF50; /* Text color */
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  flex: 1; /* Make buttons flexible to take equal space */
  margin: 0 5px; /* Add margin between buttons */
}

.like-button:hover,
.visit-button:hover {
  background-color: #4CAF50; /* Change background color on hover */
  color: white; /* Change text color on hover */
}

/* Responsive Styles */
@media (max-width: 900px) {
  .card-container {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .card-container {
      grid-template-columns: 1fr; /* 1 card per row */
  }
}
div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
  height: 35vh;      /* Set the height to 30vh */
width: auto;       /* Maintain aspect ratio */
}    
  /* here header ended */
  
 
  .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

.cardstit {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.cardstit:hover {
    transform: scale(1.05);
}

.card-icon {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.5em;
    color: #444;
    margin-bottom: 10px;
}

.card-value {
    font-size: 2.2em;
    font-weight: bold;
    color: #4CAF50;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr; /* 1 card per row on mobile screens */
    }

    h1 {
        font-size: 1.5em;
    }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  align-items: center;
  justify-content: center;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  height: auto;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
} 
.footer-section {
  background-color: #664343; /* Darker background for a modern look */
  color: #ffffff; /* White text color */
  padding: 40px 20px; /* Padding around the footer */
}

.footer-section .container {
  max-width: 1200px; /* Maximum width for the container */
  margin: 0 auto; /* Center the container */
}

.footer-row {
  display: flex; /* Flexbox for footer sections */
  justify-content: space-between; /* Space between sections */
  flex-wrap: wrap; /* Wrap on smaller screens */
}

.contact-info,
.social-media,
.quick-links {
  flex: 1; /* Allow each section to grow equally */
  margin: 10px; /* Space around sections */
  padding: 20px; /* Inner padding */
  background-color: #333; /* Background color for sections */
  border-radius: 8px; /* Rounded corners */
}

h3 {
  text-align: center; /* Center headings */
  margin-bottom: 15px; /* Space below headings */
  color: #ff5e14; /* Heading color */
}

.single-cta {
  display: flex; /* Flexbox for CTA items */
  align-items: center; /* Center items vertically */
  margin-bottom: 15px; /* Space below each item */
}

.single-cta i {
  font-size: 24px; /* Icon size */
  margin-right: 10px; /* Space between icon and text */
  color: #ff5e14; /* Icon color */
}

.social-links {
  display: flex; /* Flexbox for social links */
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center; /* Center items */
}

.btn {
  background-color: #ff5e14; /* Button background color */
  color: #ffffff; /* Button text color */
  padding: 10px 15px; /* Button padding */
  border-radius: 5px; /* Rounded corners */
  margin: 5px; /* Space between buttons */
  text-decoration: none; /* Remove underline */
  display: flex; /* Flexbox for icon and text */
  align-items: center; /* Center icon and text */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.btn i {
  margin-right: 5px; /* Space between icon and text */
}

.horizontal-list {
  list-style: none; /* Remove default list styles */
  padding: 0; /* Remove padding */
  display: flex; /* Flexbox for horizontal layout */
  flex-wrap: wrap; /* Wrap items on smaller screens */
  justify-content: center; /* Center items */
}

.horizontal-list li {
  margin: 0 10px; /* Space between list items */
}

.horizontal-list a {
  color: #ff5e14; /* Link color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition */
}

.horizontal-list a:hover {
  color: #ffffff; /* Change color on hover */
}

.copyright-area {
  background-color: #ffffff; /* Dark background for copyright area */
  text-align: center;
  color: #000000; /* Center copyright text */
  padding: 15px; /* Padding in copyright area */
  margin-top: 20px; /* Space above copyright */
  font-size: 14px; /* Font size for copyright text */
}

.copyright-text a {
  color: #000000; /* Color for the copyright link */
  text-decoration: none; /* Remove underline */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-row {
      flex-direction: column; /* Stack sections vertically on small screens */
  }

  .contact-info,
  .social-media,
  .quick-links {
      margin: 10px 0; /* Reduce margin for stacked sections */
  }
}

.gallery {
 

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  grid-gap: 10px;
  justify-items: center;
  padding: 5px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 5px;
  align-items: center;
  cursor: pointer;
}

    
    
    
    
    
    

  

  
  
  
  
  
  
  