html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Amiri', serif;
  box-sizing: border-box;
  color: #ffffff;
  background: url('مظلات.jpeg') no-repeat center center fixed; /* Set background image */
  background-size: cover; /* Ensure the image covers the entire background */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body always covers the full height of the viewport */
  line-height: 1.6; /* Improve text readability */
}

/* Responsive Styles */
@media (max-width: 768px) {
  html, body {
    font-size: 14px; /* Reduce font size for smaller screens */
  }

  /* Additional adjustments for specific elements */
  h1 {
    font-size: 1.8rem; /* Slightly smaller title */
  }

  p {
    font-size: 0.9rem; /* Smaller paragraph font size */
  }

  .contact-info {
    font-size: 0.9rem; /* Smaller font size for contact info */
  }

  .whatsapp-btn, .phone-btn {
    padding: 8px 8px; /* Adjust button padding for smaller screens */
    font-size: 0.9rem; /* Smaller font size for buttons */
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 12px; /* Further reduce font size for very small screens */
  }

  h1 {
    font-size: 1.5rem; /* Adjust title size for very small screens */
  }

  p {
    font-size: 0.85rem; /* Adjust paragraph size for better readability */
  }

  .contact-info {
    margin-top: 15px; /* Space adjustments */
  }

  .whatsapp-btn, .phone-btn {
    padding: 6px 12px; /* Smaller button padding */
    font-size: 0.85rem; /* Even smaller font size for buttons */
  }
}


/* Box sizing reset for all elements */
*,
*::before,
*::after {
  box-sizing: inherit;
}
.header-flag {
  background-color: #180081; /* لون الخلفية */
  text-align: center; /* محاذاة النص إلى الوسط */
  padding: 2px; /* حشوة داخلية */
  position: fixed;
  width: 100%;
  border-bottom: 2px solid #00ff37; /* خط سفلي */
}

.header-flag h1 {
  font-size: 18px; /* حجم الخط */
  color: #ffffff; /* لون النص */
  margin: 0; /* إزالة الهوامش */
}
/*  */
header {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
  background-color: #bebebe;
  padding: 10px 20px;
  color: #B8001F;
}

.logo {
  height: 95px;
  padding-left: 10px;
}

/* Hide the open button on large screens */
.openbtn {
  display: none;
}

/* Large screen navigation */
/* Main Navigation Styles */
.main-nav {
  background-color: #fff; /* Background for the navigation */
  padding: 10px 20px; /* Padding for the navbar */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  border-radius: 15px; /* Rounded corners for the navbar */
  z-index: 999;
  transition: background-color 0.3s; /* Smooth transition for background */
}

.main-nav:hover {
  background-color: #f8f8f8; /* Lighten background on hover */
}

.main-nav ul {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-nav ul li {
  position: relative;
  border-bottom: 3px #6e0000 solid;
  border-radius: 25px;
  
  transition: transform 0.3s, border-color 0.3s; /* Animation for hover effect */
}

.main-nav ul li:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  border-color: #b8001f; /* Change border color on hover */
}

.main-nav ul li a {
  text-decoration: none;
  color: #3b1e54;
  font-size: large;
  padding: 10px 20px;
  display: block; /* Make the entire area clickable */
  border-radius: 25px; /* Rounded corners for links */
  transition: color 0.3s, background-color 0.3s; /* Smooth color transitions */
}

.main-nav ul li a:hover {
  color: #ffffff; /* Change link color on hover */
  background-color: #b8001f; /* Background color on hover */
}

/* Dropdown Styles */
.dropdown-content {
  margin-top: 5px;
  display: none; /* Start hidden */
  position: absolute;
  border-radius: 10px; /* Rounded corners for dropdown */
  background-color: #ffffff;
  border: 1px solid #000 ;
  min-width: 180px;
  z-index: 10000; /* Increased to ensure it displays on top of everything */
  opacity: 0; /* Start invisible */
  transform: translateY(10px); /* Start slightly lower for sliding effect */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Fade and slide effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow for dropdown */
}


.dropdown-content a {
  display: block;
  font-size: small;
  color: #3b1e54b1; /* Text color for dropdown links */
  border-bottom: 1px solid #000 ;

  border-radius: 10px; /* Rounded corners for dropdown links */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s; /* Smooth background transition */
}

.dropdown-content a:hover {
  background-color: #ffeded; /* Light background on hover */
  color: #6e0000; /* Darker text color on hover */
}

.dropdown:hover .dropdown-content {
  display: block; /* Show dropdown on hover */
  opacity: 1; /* Fade in */
  transform: translateY(0); /* Slide up into view */
}

/* Responsive Design */
@media (max-width: 918px) {
  .main-nav ul {
    flex-direction: column; /* Stack items vertically on small screens */
    gap: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .logo {
    width: 300px; /* Resize logo for phone screens */
    height: auto; /* Keep aspect ratio */
  }
}
/*  */

/* Collapsible Sidepanel for Small Screens */
.sidepanel {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  border-bottom: 3px #841010 solid;
  border-radius: 5px;
  
  background-color: #2c61ffb1;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidepanel a {
  border-bottom: 3px #ff0000 solid ;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #00ff37;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Media Queries for Small Screens */
@media screen and (max-width: 918px) {
  .main-nav {
      display: none;
  }

  .openbtn {
      display: block;
      background-color: #3b1e54b1;
      color: rgb(254, 254, 254);
      border: none;
      padding: 10px 15px;
      cursor: pointer;
  }

  .openbtn:hover {
      background-color: #444;
  }
}

/*  */
.image-slider {
  position: relative;
  margin: 0;
  overflow: hidden; /* Prevents overflow of images */
  height: 80vh; /* Full viewport height */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease; /* Smooth transition for sliding effect */
}

.slide {
  flex: 0 0 100%; /* Each slide takes full width */
  height: 100%; /* Full height of the slider */
  background-size: cover; /* Cover the entire slide area */
  background-position: center; /* Center the background image */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically */
  align-items: center; /* Center text horizontally */
  color: white; /* Text color */
  text-align: center;
  position: relative; /* To position overlay */
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  border-radius: 15px; /* Match the slide's rounded corners */
  z-index: 1; /* Place overlay above background */
}

.image-slider h1 {
  font-size: 32px; /* Adjust font size for headings */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Enhanced shadow for better visibility */
  margin: 0; /* Remove default margin */
  z-index: 2; /* Place text above overlay */
}

.image-slider p {
  font-size: 20px; /* Adjust font size for paragraph */
  color: #ffffffef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Enhanced shadow for better visibility */
  margin-top: 10px; /* Space between title and text */
  z-index: 2; /* Place text above overlay */
  max-width: 80%; /* Limit width for better readability */
}

.navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3; /* Ensure navigation buttons are on top */
}

.navigation button {
  background-color: rgba(255, 255, 255, 0.8); /* Lighter semi-transparent background */
  color: #333; /* Dark text color for contrast */
  border: none;
  border-radius: 5px; /* Rounded corners */
  padding: 10px 15px; /* Padding for buttons */
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s; /* Transition for hover effect */
}

.navigation button:hover {
  background-color: rgba(255, 255, 255, 1); /* Fully white on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}
article {
  background:#351eb7b1; /* Light white glow with better opacity */
  border-radius: 12px; /* Slightly more rounded corners */
  min-width: 100%;
  font-weight: normal; /* Change to normal for better readability */
  color: #ffffff;
  height: auto; /* Dynamic height */
  padding: 25px; 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow for depth */
  max-width: 800px; /* Max width for the article */
  margin: 8px auto; /* Center the article with vertical margin */
  display: flex; /* Flexbox for aligning content */
  flex-direction: column; /* Column layout */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  transition: transform 0.3s, box-shadow 0.3s; /* Add transition for shadow */
  
}

.crav{
  margin-top: 30px;
  height: 60px;
  width: 100%;
  color: #ff0000;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 70%; /* Bottom left corner */
  border-bottom-left-radius: 5%; /* Bottom left corner */

  border-bottom-right-radius: 5%;
  border-bottom:3px #000 solid;
}

article:hover {
  transform: scale(1.02); /* Scale effect on hover */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

h1 {
  font-size: 2.6rem; /* Slightly larger title */
  margin-bottom: 20px; /* Space below the title */
  text-align: center; /* Center title text */
  color: #ff0000; /* Title color */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow for depth */
}

p {
  margin: 10px 0; /* Space between paragraphs */
  text-align: justify; /* Justify paragraph text */
  line-height: 1.7; /* Improved line height for readability */
  color: #fff;
}

.contact-info {
  margin-top: 20px; /* Space above contact info */
  text-align: center; /* Center contact info text */
  
}

/* Button Styles */
.whatsapp-btn, .phone-btn {
  margin-top: 25px;
  background-color: #00ff77; /* WhatsApp green */
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
  width: 150px; /* Set equal width for both buttons */
  display: inline-block; /* Align buttons side by side */
}

.phone-btn {
  background-color: #fbfdff; /* Blue color for phone button */
  color: #000;
}


.whatsapp-btn:hover, .phone-btn:hover {
  background-color: #8c1212; /* Darker green on hover */
  transform: translateY(-2px); /* Lift effect on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.phone-btn {
  background-color: #007BFF; /* Blue color for phone button */
}

.phone-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    header{
        margin-top: 50px;

  }
  .image-slider{
    height: 400px;
   
  }
   
  article {
    padding: 20px; /* Adjust padding for smaller screens */
  }

  h1 {
    font-size: 1.6rem; /* Smaller font size for titles */
  }

  p {
    font-size: 0.95rem; /* Slightly smaller paragraph font size */
  }

  .whatsapp-btn, .phone-btn {
    font-size: 0.9rem; /* Smaller font size for buttons */
    padding: 10px 20px; /* Adjust padding for smaller buttons */
  }
}

.card {
  width: 98%;
  background: #351eb7b1 ;
  text-align: right;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Ensures child elements don't overflow */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.card-img-container {
  border-radius: 10px;
  padding: 5px;
  border: 4px #00ff2a solid;
  position: relative; /* For positioning the image */
}

.card-img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  border-bottom: 5px solid #ffffff; /* Bottom border with a color */
}

.card-content {
  padding: 20px; /* Space inside the card */
}

.card-title {
  font-size: 1.5rem; /* Font size for title */
  margin: 0; /* Remove default margin */
  color: #80f800; /* Dark text color */
  font-weight: bold; /* Make title bold */
  text-align: center; /* Center align title */
}

.card-text {
  font-size: 1rem; /* Font size for text */
  color: #ffffff; /* Slightly lighter text color */
  margin: 10px 0; /* Margin between title and text */
  line-height: 1.5; /* Increase line height for better readability */
  text-align: justify; /* Justify text for cleaner look */
}

.card-button {
  background-color: #ff7307; /* Button background color */
  color: #fff; /* Button text color */
  border: none; /* No border */
  padding: 10px 15px; /* Padding inside the button */
  border-radius: 5px; /* Rounded button corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 1rem; /* Button text size */
  transition: background-color 0.3s ease; /* Smooth background change */
  display: block; /* Make the button a block element */
  margin: 0 auto; /* Center the button */
  text-align: center; /* Center the text in the button */
  width: 150px; /* Fixed width for the button */
}

.card-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

@media (max-width: 600px) {
  .card {
      margin: 10px; /* Margin for small screens */
  }

  .card-title {
      font-size: 1.3rem; /* Adjust title size for mobile */
  }

  .card-text {
      font-size: 0.9rem; /* Adjust text size for mobile */
  }

  .card-button {
      font-size: 0.9rem; /* Adjust button size for mobile */
      width: 100%; /* Make button full width on mobile */
  }
}


.card-container1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 10px; /* Space between cards */
  justify-content: center; /* Center the card container */
}
.card1 {
  
  border: 1px solid #00ff66; /* Overall border for the card */
  background-color: #351eb7b1 ;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(255, 1, 1, 0.881);
  margin: 0; /* Remove margin to reduce spacing */
  padding: 15px;
  border-top: 10px #48ff00 solid;
  border-bottom: 7px #7d0000 solid;
  max-width: 100%; /* Allow card to take full width */
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in the width */
}
.card-title11 {
  position: sticky; /* Keeps the header at the top */
  top: 0; /* Position it at the top of the viewport */
  background-color: #ff0000; /* Background color */
  color: #007bff;
  padding: 15px; /* Padding around the text */
  margin: 0; /* Remove default margin */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for visibility */
  z-index: 1000; /* Ensures the header is above other content */
  transition: transform 0.3s ease; /* Smooth transition for movement */
}

.sticky {
  transform: translateY(-100%); /* Move the header up */
}


.card-title1 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #00ff55;
}

.card-image {
  width: 100%;
  height: 25vh; /* You can adjust this height as needed */

  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image covers the circular area */
  margin: 15px 0; /* Margin above and below the image */
  border: 4px solid #3b1e54; /* Blue border around the image */
  transition: transform 0.3s; /* Smooth transform on hover */
}

.card-text1 {
  border-bottom: 2px solid #0dfe00;
  padding-top: 10px;
  color: #fff;
  padding-bottom: 10px;
  margin: 15px 0;
}

.card-footer1 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid #ddd; /* Top border for the footer */
  padding-top: 10px;
}

.visit-button {
  border: 1px solid #4CAF50; /* Border for the buttons */
  background-color: white; /* Background color for buttons */
  color: #4CAF50; /* Text color */
  border-radius: 5px;
  width: 100%;
  padding: 8px 12px;
  cursor: pointer;
  flex: 1; /* Make buttons flexible to take equal space */
  margin: 0 5px; /* Add margin between buttons */
}


.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-container1 {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .card-container1 {
      grid-template-columns: 1fr; /* 1 card per row */
  }
}
.text-card {
  margin-bottom: 20px; /* Space below the text card section */
}

.card-title {
  font-size: 2em; /* Title size */
  color: #007bff; /* Blue color for title */
  margin-bottom: 15px; /* Space below title */
  text-align: center; /* Center the title */
}

.post-card {
  background-color: #351eb7b1;
  color: #000;
  border-radius: 8px; /* Rounded corners */
  padding: 15px; /* Padding inside each post card */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-bottom: 15px; /* Space between post cards */
}

.post-title {
  font-size: 1.5em; /* Title size for post */
  color: #333; /* Color for post title */
  margin-bottom: 10px; /* Space below post title */
}

.card-text {
  color: #000000;
  font-size: 1em; /* Standard font size for text */
  margin-bottom: 10px; /* Space below text */
}

.call-button {
  display: inline-block; /* Makes the link look like a button */
  background-color: #00ff11; /* Button background color */
  color: rgb(0, 0, 0); /* Button text color */
  padding: 10px 15px;
  width: 100%; /* Padding for the button */
  border-radius: 5px; /* Rounded button corners */
  text-decoration: none; /* Remove underline from link */
  text-align: center; /* Center text in button */
  margin-top: 20px; /* Space above the button */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.call-button:hover {
  background-color: #0056b3; /* Darker shade on hover */
  transform: scale(1.05); /* Slightly enlarge button on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .post-card {
      padding: 10px; /* Less padding on smaller screens */
  }

  .card-title {
      font-size: 1.5em; /* Smaller title on smaller screens */
  }

  .post-title {
      font-size: 1.2em; /* Smaller post title on smaller screens */
  }
}

/*  */


.card-title {
  font-size: 2em; /* Title size */
  color: #007bff; /* Color for the title */
  margin: 20px 0; /* Space above and below the title */
  text-align: center; /* Center the title */
}

.gallery {
  background: #351eb7b1;
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap; /* Allow images to wrap to the next line */
  gap: 10px; /* Space between images */
  justify-content: center; /* Center images in the container */
}

.gallery-image {
  width: calc(25% - 10px); /* Set width to 25% minus gap for 4 images per row */
  height: 200px; /* Fixed height for uniformity */
  object-fit: cover; /* Crop image to fill the area while maintaining aspect ratio */
  border-radius: 8px; /* Rounded corners for images */
  cursor: pointer; /* Pointer cursor on hover */
  transition: transform 0.2s; /* Smooth scaling on hover */
}

.gallery-image:hover {
  transform: scale(1.05); /* Slightly enlarge image on hover */
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Hide overflow */
  background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
}

.modal-content {
  margin: auto; /* Center the image */
  display: block; /* Display block */
  width: 80%; /* Set width of the modal image */
  max-width: 700px; /* Max width */
}

.close {
  position: absolute; /* Position the close button */
  top: 20px; /* From the top */
  right: 35px; /* From the right */
  color: white; /* White color for the close button */
  font-size: 40px; /* Font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor */
}

#caption {
  margin: 15px; /* Margin around caption */
  color: white; /* Caption text color */
  text-align: center; /* Center the caption text */
}

/* Media query for different screen sizes */
@media (max-width: 1200px) {
  .gallery-image {
      width: calc(33.33% - 10px); /* Three images per row */
  }
}

@media (max-width: 800px) {
  .gallery-image {
      width: calc(50% - 10px); /* Two images per row */
  }
}

.decor-section {
  background-color: #351eb7b1;
  display: flex;
  flex-wrap: wrap;
  direction:rtl;
  gap: 20px;
  margin-bottom: 20px;
}

.decor-image, .decor-info {
  flex: 1;
}

.large-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

h2 {
  color: #007bff;
  margin: 10px 0;
  font-size: 1.8em;
}

p {
  font-size: 1.1em;
  color: #ffffff;
}

.decor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}

.decor-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .decor-section {
      flex-direction: column; /* Stack items vertically */
  }

  .decor-image {
      order: 1; /* Display image first */
  }

  .decor-info {
      order: 2; /* Display info after the image */
  }
}
/*  */
.text-card {
  background-color: #351eb7b1; /* 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 */
}  

.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 20px;
  padding: 20px;
  margin-top: 20px;
}

.cardstit {
  background-color: #d0fa95d4;
  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: #C75B7A;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.5em;
  color: #444;
  margin-bottom: 10px;
  border-bottom: 3p x #555 solid;
}

.card-value {
  font-size: 2.2em;
  text-align: center;
  font-weight: bold;
  color: #C75B7A;
}

/* 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;
  }
}

/*  */

.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);
}

.footer-section {
  background-color: #351eb7b1;
  color: #ffffff; /* White text color */
  direction: rtl;
  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: #D4BEE4; /* Background color for sections */
  border-radius: 8px; /* Rounded corners */
}

h3 {
  text-align: center; /* Center headings */
  margin-bottom: 15px; /* Space below headings */
  color: #000000; /* Heading color */
}

.single-cta {
  display: flex; /* Flexbox for CTA items */
  align-items: center; /* Center items vertically */
  padding-left: 10px;
  margin-bottom: 15px; /* Space below each item */
}
.cta-text{
color: #000;
}
.single-cta i {
  font-size: 24px; /* Icon size */
  margin-right: 10px; /* Space between icon and text */
  color: #121212; /* 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: #fff5f0; /* Button background color */
  color: #000000; /* 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: #000000; /* 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: #4e4e4e; /* Dark background for copyright area */
  text-align: center;
  color: #ffffff; /* 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: #ffffff; /* 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 */
  }
}