/* Arabic Fonts */
@import url(https://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css);

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Droid Arabic Naskh', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Loading screen styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

@keyframes l1 {
  to {
    transform: rotate(.5turn)
  }
}

/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
  display: none;
}

.loader-hidden {
  display: none;
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  border-width: 6px 4px 6px 4px;
  border-style: solid dotted solid dotted;
  border-color: #ff9900 rgba(39, 25, 6, 0.3) #333 rgba(151, 107, 93, 0.3);
  border-radius: 50%;
  box-sizing: border-box;
  animation: 1s rotate linear infinite;
}

.loader:before,
.loader:after {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #333;
  transform: translate(-10px, 19px) rotate(-35deg);
}

.loader:after {
  border-color: #ff9900 #0000 #0000 #0000;
  transform: translate(32px, 3px) rotate(-35deg);
}

@keyframes rotate {
  100% {
    transform: rotate(360deg)
  }
}



/* -- Navbar -- */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  transition: ease-in-out 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Add bottom box shadow */
}

.navbar .right {
  display: flex;
  align-items: center;
  flex: 1;
  margin-right: 5%;
}

.left-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Space between language button and start now button */
  margin-left: 8%;
}

.navbar img {
  width: 100px;
}

.navbar .btn {
  background-color: transparent;
  border: 2px solid #ff9900;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.navbar .btn:hover {
  background-color: #ff9900;
  color: white;
}

/* language toggle */
.language-toggle {
  background-color: #ffffff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-icon {
  width: 25px;
  height: 22px;
}

.mobile-language {
  display: none;
}

.menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 0 30px;
}

.menu li a {
  text-decoration: none;
  color: inherit;
  font-size: 20px;
  font-weight: bold;
  transition: ease-in 0.2s;
  position: relative;
  /* Add this line to position the border-bottom */
}

.menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -41px;
  /* Adjust the distance from the navbar bottom */
  left: 0;
  width: 100%;
  height: 10px;
  /* Adjust the thickness of the line */
  background-color: #000;
  /* Set the color of the line */
}

.menu a:hover {
  color: #ff9900;
}

.menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -41px;
  /* Adjust the distance from the navbar bottom */
  left: 0;
  width: 100%;
  height: 10px;
  /* Adjust the thickness of the line */
  background-color: #ff99009a;
  /* Set the color of the line */
}


.menu-icon {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #000;
  border-radius: 5px;
  margin: 4px 0;
}


.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  transition: ease-in 0.2s;
  direction: inherit;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: -50px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
  padding: 0;
  width: 200px;
}

.dropdown-menu li {
  list-style: none;
  text-align: center;
}

.dropdown-menu li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  display: block;
  padding: 10px 0;
  width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  color: #ff9900;
}

.dropdown-menu li:hover {
  background-color: #f5f5f5;
}

.dropdown-menu a:hover::after,
.dropdown a:hover::after {
  display: none;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-only {
  display: none;
  /* Hide individual items */
}

@media (max-width: 768px) {
  .dropdown {
    display: none;
    /* Hide the dropdown menu */
  }

  .mobile-only {
    display: block;
    /* Show individual items */
  }

  .left-buttons {
    gap: 20px;
    /* Reduced space between elements */
    margin-left: 5%;
    /* Adjust for mobile */
  }

  .language-toggle {
    display: none;
  }

  .mobile-language {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Style for the button on mobile */
  .language-toggle-mobile {
    border: 0;
    padding: 0;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
  }

  /* Style for the image inside the button */
  .language-icon-mobile {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .logo {
    padding-top: 5%;
  }

  .navbar img {
    width: 90px;
  }

  .menu {
    color: #fff;
    max-height: 0;
    /* Initially hidden */
    overflow: hidden;
    /* Prevent content overflow */
    background-color: #333;
    position: absolute;
    top: 121px;
    left: 0;
    width: 100%;
    flex-direction: column;
    transition: max-height 0.5s ease-in-out;
    /* Smooth animation */
    z-index: 999;
    text-align: center;
  }

  .menu a:hover {
    color: #ddd;
  }

  .menu a:hover::after {
    display: none;
  }

  .menu-icon {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    /* Adjust based on your icon size */
    transition: transform 0.3s ease;
    /* Smooth transition for transform */
  }

  .bar {
    background-color: #000;
    height: 4px;
    width: 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    /* Smooth transition for transform */
  }

  /* When menu is active, transform bars to an 'X' shape in arabic language */
  .menu-icon.active .bar:nth-child(1).ar {
    transform: rotate(-45deg) translateY(11px);
    /* Top bar rotates and moves down */
  }

  .menu-icon.active .bar:nth-child(2).ar {
    opacity: 0;
    /* Hide the middle bar */
  }

  .menu-icon.active .bar:nth-child(3).ar {
    transform: rotate(45deg) translateY(-11px);
    /* Bottom bar rotates and moves up */
  }

  /* When menu is active, transform bars to an 'X' shape */
  .menu-icon.active .bar:nth-child(1).en {
    transform: rotate(45deg) translateY(11px);
    /* Top bar rotates and moves down */
  }

  .menu-icon.active .bar:nth-child(2).en {
    opacity: 0;
    /* Hide the middle bar */
  }

  .menu-icon.active .bar:nth-child(3).en {
    transform: rotate(-45deg) translateY(-11px);
    /* Bottom bar rotates and moves up */
  }

  /* When menu is not active, bars revert to the normal shape */
  .menu-icon .bar {
    transform: rotate(0) translateY(0);
    /* Revert any transformations */
    opacity: 1;
    /* Make sure the middle bar is visible */
  }

  .menu.active {
    max-height: 600px;
    /* Set to a height that accommodates all menu items */
    z-index: 999;
    text-align: center;
  }

  .menu.active li,
  .menu li {
    padding: 20px;
  }

  .menu li a {
    font-size: 16px;
  }

  .menu li a.active::after {
    content: "";
    display: none;
    position: absolute;
    bottom: -52px;
    /* Adjust the distance from the navbar bottom */
    left: 0;
    width: 100%;
    height: 10px;
    /* Adjust the thickness of the line */
    background-color: #000;
    /* Set the color of the line */
  }

  .navbar .btn {
    background-color: transparent;
    border: 2px solid #ff9900;
    color: #000;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }

}


/* -- Hero -- */

.hero {
  padding: 50px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-size: cover;
}

.hero img {
  max-width: 500px;
}

.hero .text {
  max-width: 600px;
}

.hero h1 {
  font-size: 34px;
}

.hero p {
  font-size: 20px;
  color: #333;
}

.hero .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #92999f;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.8);
  }

  100% {
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0);
  }
}

.hero .btn:hover {
  background: #ff9900;
  color: #fff;
}


@media (max-width: 768px) {
  .hero img {
    width: 100%;
    margin-top: 20px;
  }

  .hero .text {
    padding: 10px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn {
    font-size: 14px;
  }
}


/* -- About -- */

.about {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.about .text {
  max-width: 800px;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 52px;
  font-weight: bold;
  color: #ff9900;
}

.stat-label {
  font-size: 20px;
  font-weight: bold;
}

.about h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
}

.about p {
  font-size: 20px;
  color: #111;
}

.about .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #f0f0f0;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.about .btn:hover {
  background: #ff9900;
  color: #fff;
}

.about .image {
  display: flex;
  flex-direction: column;
}

.about img {
  width: 500px;
  margin-right: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about img {
    width: 100%;
    margin: 0;
  }

  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }

  .stat-value {
    font-size: 32px;
    font-weight: bold;
    color: #ff9900;
  }

  .stat-label {
    font-size: 14px;
    font-weight: bold;
  }

  .about .btn {
    font-size: 14px;
  }
}



/* --- Our Mission --- */

.our-mission {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 70%;
}

.our-mission h2 {
  font-size: 36px;
  margin: 20px;
}

.our-mission p {
  font-size: 18px;
  color: #f0f0f0;
}

.our-mission h1 {
  font-size: 42px;
  margin-top: 50px;
}


@media (max-width: 768px) {
  .our-mission {
    max-width: 90%;
  }

  .our-mission h2 {
    font-size: 28px;
    margin: 15px;
  }

  .our-mission p {
    font-size: 16px;
    margin: 10px 0;
  }

  .our-mission h1 {
    font-size: 32px;
    margin-top: 30px;
  }
}


/* --- Centered Text Box --- */

.centered-text-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #000;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}

.centered-text-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.centered-text-box p {
  font-size: 16px;
  color: #f0f0f0;
}

.centered-text-box .content {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.centered-text-box .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #92999f;
  padding: 15px 25px;
  width: 500px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.centered-text-box .btn:hover {
  background: #ff9900;
  color: #fff;
}

@media (max-width: 768px) {
  .centered-text-box {
    max-width: 90%;
    padding: 10px;
    margin-bottom: 20px;
  }

  .centered-text-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .centered-text-box p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .centered-text-box .btn {
    width: 100%;
    font-size: 18px;
    padding: 10px 15px;
  }
}

/* --- Company vision --- */
.company-vision {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background-color: #1b262c;
  padding: 18px;
}

.company-vision h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.company-vision p {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: center;
  max-width: 800px;
}

@media (max-width: 768px) {
  .company-vision {
    padding: 10px;
    /* Reduce padding for smaller screens */
  }

  .company-vision h2 {
    font-size: 28px;
    /* Decrease heading size for better fit */
    margin-bottom: 15px;
  }

  .company-vision p {
    font-size: 16px;
    /* Adjust paragraph font size */
    margin-bottom: 10px;
    /* Reduce spacing between paragraphs */
    max-width: 90%;
    /* Make text fit smaller screens better */
  }
}

/* --- Contact --- */

.contact {
  background: #fff;
  padding: 30px 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.contact-image {
  flex-basis: 50%;
  text-align: center;
}

.contact-image img {
  max-width: 500px;
  width: 100%;
}

.contact-form {
  flex-basis: 50%;
  padding: 0 30px;
}

.contact-form h3 {
  font-size: 28px;
  margin: 20px auto;
}

.form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group {
  flex-basis: 48%;
  margin: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Droid Arabic Naskh', sans-serif;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Droid Arabic Naskh', sans-serif;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #92999f;
  padding: 15px 25px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.contact-form .btn:hover {
  background: #ff9900;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-form h3 {
    font-size: 22px;
  }

  .contact-container {
    flex-direction: column;
    padding: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .contact-image {
    flex-basis: auto;
    margin-bottom: 30px;
  }

  .contact-form {
    flex-basis: auto;
    width: 100%;
    padding: 0;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    flex-basis: auto;
    margin: 10px 0;
  }

  .contact-form .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* --- Locations --- */

.location {
  background-color: #fff;
  color: #000;
  padding: 20px;
  text-align: right;
  /* Right-aligned for Arabic */
  margin-right: 20px;
}

.location h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: row;
  /* Icons on the left (default for rtl) */
}

.location-item i {
  font-size: 20px;
  margin-left: 10px;
  /* Space between icon and text */
  margin-right: 0;
}

.location-item p {
  font-size: 16px;
  margin: 0;
}

.location-item a {
  color: inherit;
  text-decoration: none;
}

.location-item a:hover {
  text-decoration: underline;
}

/* ltr layout (English) */
.location.ltr {
  text-align: left;
  /* Left-aligned for English */
  margin-left: 20px;
  /* Adjust margin for left alignment */
  margin-right: 0;
}

.location.ltr .location-item i {
  margin-right: 10px;
  /* Space between icon and text */
  margin-left: 0;
}

@media (max-width: 768px) {
  .location {
    padding: 15px;
    margin-right: 10px;
  }

  .location h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .location-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .location-item i {
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .location-item p {
    font-size: 14px;
  }

  .location-item a {
    font-size: 14px;
  }
}

/* --- Services --- */

.services-section {
  text-align: center;
  padding: 50px 15px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 350px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 16px;
  color: #666;
  padding: 0 15px 15px;
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
}




/* --- what-we-offer.html --- */

.start-project-section {
  background-color: #f8f8f8;
  padding: 50px 20px;
  text-align: center;
}

.start-project-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.start-project-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  text-align: right;
}

.step.en {
  text-align: left;
}

.start-project-steps .step h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ff9900;
}

.start-project-steps .step p {
  font-size: 1em;
  color: #666;
}

.start-project-steps .step:nth-child(even) {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .start-project-section {
    padding: 30px 10px;
  }

  .start-project-section h2 {
    font-size: 1.3em;
    margin-bottom: 20px;
  }

  .start-project-steps {
    padding: 0;
  }

  .step {
    padding: 15px;
    text-align: right;
  }

  .step.en {
    text-align: left;
  }

  .start-project-steps .step h3 {
    font-size: 1.1em;
  }

  .start-project-steps .step p {
    font-size: 0.85em;
  }
}

/* Service Detail */

.detail-page {
  padding: 20px;
  background: linear-gradient(135deg, #f9f9f9, #e8e8e8);
}

.summary {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  margin-top: 60px;
}

.summary h1 {
  color: #ff9900;
  font-size: 24px;
  margin-bottom: 20px;
}

.summary ul {
  list-style: none;
  padding: 0;
}

.summary li {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.6;
}

.service-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  direction: rtl;
}

.detail-page.ltr .service-detail {
  direction: ltr;
}

.service-detail img {
  width: 30%;
  border-radius: 12px;
  margin-left: 20px;
  margin-right: 20px;
  transition: transform 0.3s ease-in-out;
}

.service-detail img:hover {
  transform: scale(1.05);
}

.service-detail div {
  flex: 1;
}

.service-detail h1 {
  font-size: 22px;
  color: #ff9900;
  border-bottom: 2px solid #666;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.service-detail p {
  font-size: 18px;
  line-height: 1.6;
  margin: 10px 0;
}

.service-detail ul {
  list-style: disc;
  margin: 10px 0 20px 20px;
}

.service-detail ul li {
  font-size: 18px;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .summary {
    padding: 15px;
    margin-top: 40px;
  }

  .summary h1 {
    font-size: 20px;
  }

  .summary li {
    font-size: 16px;
  }

  .service-detail {
    flex-direction: column;
    /* Stack content vertically */
    padding: 15px;
  }

  .service-detail img {
    width: 100%;
    /* Full width image */
    margin: 0 0 15px 0;
    /* Margin below the image */
  }

  .service-detail h1 {
    font-size: 20px;
  }

  .service-detail p,
  .service-detail ul li {
    font-size: 16px;
  }

  .service-detail ul {
    margin-left: 15px;
    /* Adjust margin for nested lists */
  }
}

/* Section */

.section {
  padding: 50px 20px;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.card-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.card {
  flex-basis: 45%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  max-width: 500px;
  padding: 30px;

}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.card .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #92999f;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.card .btn:hover {
  background: #ff9900;
  color: #fff;
}


@media (max-width: 768px) {

  .card-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex-basis: auto;
    width: 100%;
  }
}

/* --- FAQ --- */

.faq {
  padding: 40px 10px;
  background-color: #666;
}

.intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.intro p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #000;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  font-size: 16px;
  color: #f0f0f0;
  margin: 15px 0;
}

.faq-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
}

.faq-footer a {
  color: #ff9900;
  text-decoration: none;
}

.faq-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .intro h2 {
    font-size: 24px;
  }

  .faq-footer {
    font-size: 14px;
  }

  .faq-footer a {
    font-size: 14px;
  }
}

/* --- Product Options --- */

.product-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 15px;
  gap: 20px;
}

.product-options-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-options-text h5 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 0;
}

.product-options-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.product-options-header {
  flex-basis: 30%;
}

.product-options-header h4 {
  font-size: 24px;
  margin: 0;
}

.product-options-header h2 {
  font-size: 32px;
  margin: 0;
}

.product-options img {
  width: 500px;
}

.product-options .btn {
  background-color: transparent;
  border: 1px solid #ff9900;
  color: #f0f0f0;
  padding: 5px 25px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.product-options .btn:hover {
  background: #ff9900;
  color: #fff;
}


@media (max-width: 768px) {
  .product-options {
    flex-direction: column-reverse;
    text-align: center;
  }

  .product-options-text {
    flex-basis: auto;
    align-items: center;
    margin-bottom: 30px;
  }

  .product-options-header {
    flex-basis: auto;
    text-align: center;
  }

  .product-options-text h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .product-options-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }

  .product-options-header h4 {
    font-size: 22px;
  }

  .product-options-header h2 {
    font-size: 28px;
  }

  .product-options img {
    width: 100%;
  }
}


/* --- contact.html --- */

.contact-section {
  padding: 40px 20px;
  /* text-align: center; */
}

.contact-section h1 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-info-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  max-width: 600px;
  margin-left: 40px;
}

.contact-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.contact-info-item {
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
}

.contact-info-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info-item p {
  font-size: 16px;
  color: #666;
}

/* --- Contact form --- */

.contact-form-section {
  padding: 40px 20px;
}

.contact-form-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.form-control {
  margin-bottom: 20px;
}

.form-control label {
  font-size: 16px;
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-control input {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  /* Add this line to fix the form input issue */
}

.phone-input {
  display: flex;
}

.phone-input input {
  flex: 1;
  box-sizing: border-box;
  /* Add this line to fix the form input issue */
}

.checkbox-control {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-control input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-control label {
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .contact-section h1 {
    font-size: 24px;
  }

  .contact-info-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .contact-info-item {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .contact-form-section h2 {
    font-size: 22px;
  }

  .contact-form {
    max-width: 100%;
    padding: 10px;
  }

  .form-control label {
    font-size: 14px;
  }

  .form-control input {
    font-size: 14px;
    padding: 8px 12px;
  }

  .phone-input input {
    font-size: 14px;
  }

  .checkbox-control label {
    font-size: 13px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* --- Support section --- */

.support-section {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}

.support-links-container {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.support-header {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.support-link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 18px;
  gap: 5px;
  color: #fff;
  background-color: #ff9900;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.support-link i {
  margin-right: 10px;
}

.support-link:hover {
  background-color: #ffaa33;
}

/* Modal Styling */

.modal {
  position: fixed;
  /* Makes the modal occupy the entire screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dimmed background */
  display: none;
  /* Initially hidden */
  display: flex;
  /* Flexbox for centering */
  align-items: center;
  /* Center vertically */
  justify-content: center;
  /* Center horizontally */
  z-index: 1100;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  /* Responsive width */
  max-width: 400px;
  /* Maximum width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  text-align: center;
  max-height: 90vh;
  /* Restrict the modal's height to 90% of the viewport height */
  overflow-y: auto;
  /* Enable scrolling for overflowing content */
}

.hidden {
  display: none !important;
}

.close-modal {
  background: #f44336;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#appointment-form input,
#appointment-form select,
#appointment-form textarea,
#appointment-form button.submit-button,
#video-call-form input,
#video-call-form select,
#video-call-form textarea,
#video-call-form button.submit-button {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

button.submit-button {
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

button.submit-button:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .support-header {
    font-size: 20px;
  }

  .support-links {
    flex-direction: column;
    /* Stack the support links vertically */
    align-items: center;
    gap: 10px;
  }

  .support-link {
    font-size: 16px;
    padding: 12px 25px;
    width: 100%;
    max-width: 265px !important;
    text-align: center;
  }

  .support-link i {
    font-size: 20px;
  }

  .modal-content {
    width: 90% !important;
    max-width: 350px !important;
  }

  .modal-content form input,
  .modal-content form select,
  .modal-content form textarea {
    font-size: 12px;
    padding: 8px 12px;
  }

  .close-modal {
    padding: 8px 16px;
  }

  button.submit-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* -- Footer -- */

.site-footer {
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #dddd;
}

.footer-branding {
  max-width: 500px;
}

.footer-logo {
  max-width: 300px;
  margin-bottom: 10px;
}

.footer-branding p {
  font-size: 16px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: inherit;
}

.footer-links ul li a:hover {
  color: #ccc;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact a {
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .footer-branding {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 200px;
  }

  .footer-branding p {
    font-size: 14px;
    /* Adjust font size for mobile */
  }

  .footer-links {
    display: none;
    /* Hide the footer links on mobile */
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact a {
    font-size: 14px;
    /* Adjust font size for mobile */
    margin-bottom: 8px;
    /* Reduced margin for mobile */
  }

  .copyright-section {
    text-align: center;
    margin-top: 20px;
  }

  .copyright-section p {
    font-size: 14px;
  }
}

.copyright-section {
  background-color: #444;
  color: #eee;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.copyright-section p {
  margin: 0;
}

/* -- Social media --*/

/* Styles for the WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Default position for Arabic (RTL) */
  width: 60px;
  height: 60px;
  background-color: #4dc247;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgb(4, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* WhatsApp Icon Styling */
.whatsapp-button img {
  width: 30px;
  height: 30px;
}

/* Hover Animation */
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation for opening and closing */
@keyframes slideOpen {
  from {
    transform: translateX(0);
    opacity: 0;
  }

  to {
    transform: translateX(70px);
    /* Distance buttons slide out */
    opacity: 1;
  }
}

@keyframes slideClose {
  from {
    transform: translateX(70px);
    /* Starting point when closing */
    opacity: 1;
  }

  to {
    transform: translateX(0);
    opacity: 0;
  }
}

/* Styles for additional buttons container */
.floating-buttons-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

/* Position adjustment for English (LTR) */
.floating-buttons-container.ltr {
  left: unset;
  /* Unset left positioning */
  right: 30px;
  /* Move to the right for English */
}

/* Animation for sliding buttons */
@keyframes slideOpenLeft {
  from {
    transform: translateX(0);
    /* Start at the same position as WhatsApp button */
    opacity: 0;
  }

  to {
    transform: translateX(-70px);
    /* Slide left */
    opacity: 1;
  }
}

@keyframes slideCloseLeft {
  from {
    transform: translateX(-70px);
    /* Start at the expanded position */
    opacity: 1;
  }

  to {
    transform: translateX(0);
    /* Slide back to WhatsApp button */
    opacity: 0;
  }
}

@keyframes slideOpenRight {
  from {
    transform: translateX(0);
    /* Start at the same position as WhatsApp button */
    opacity: 0;
  }

  to {
    transform: translateX(70px);
    /* Slide right */
    opacity: 1;
  }
}

@keyframes slideCloseRight {
  from {
    transform: translateX(70px);
    /* Start at the expanded position */
    opacity: 1;
  }

  to {
    transform: translateX(0);
    /* Slide back to WhatsApp button */
    opacity: 0;
  }
}

#additional-buttons {
  display: flex;
  gap: 15px;
  /* Adjust spacing between buttons */
  position: absolute;
  bottom: 0;
  /* Align with the WhatsApp button */
  transition: all 0.3s ease-in-out;
  /* Smooth opening/closing */
}

#additional-buttons[data-slide-direction="left"].visible {
  animation: slideOpenLeft 0.3s forwards;
}

#additional-buttons[data-slide-direction="left"].hidden {
  animation: slideCloseLeft 0.3s forwards;
}

#additional-buttons[data-slide-direction="right"].visible {
  animation: slideOpenRight 0.3s forwards;
}

#additional-buttons[data-slide-direction="right"].hidden {
  animation: slideCloseRight 0.3s forwards;
}

/* Styles for all social buttons */
.social-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgb(4, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button img {
  width: 50px;
  height: 50px;
}

.social-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .floating-buttons-container {
    left: 15px;
    right: 15px;
    justify-content: space-between;
    /* Spread out buttons for better mobile alignment */
    width: auto;
    /* Ensure container width doesn't overflow */
    flex-direction: column;
    /* Stack the buttons vertically */
    gap: 10px;
    /* Adjust space between buttons */
  }

  /* Adjust the size of the WhatsApp button for mobile */
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button img {
    width: 25px;
    height: 25px;
  }

  /* Adjust the size and spacing of social media buttons */
  .social-button {
    width: 50px;
    height: 50px;
  }

  .social-button img {
    width: 40px;
    height: 40px;
  }

  /* Adjust visibility and slide-in/out animation for mobile */
  #additional-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 60px;
    /* Move the buttons above the WhatsApp button */
  }
}

/* --- investment.html --- */

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-title {
  text-align: center;
  color: #f09000;
  margin-bottom: 30px;
}

.section-title {
  text-align: center;
  color: #ff9900;
  margin-top: 20px;
}

.list {
  padding-left: 20px;
  margin: 10px 0;
}

.list li {
  margin: 10px 0;
}

.sub-list {
  padding-left: 20px;
  margin-top: 10px;
}

.note {
  background: #fef3c7;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  border-left: 5px solid #f39c12;
  color: #6c5c3e;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    margin-top: 15px;
  }

  .list li {
    font-size: 14px;
  }

  .sub-list li {
    font-size: 14px;
  }

  .note {
    font-size: 14px;
    padding: 12px;
  }

  .list {
    padding-left: 15px;
  }

  .sub-list {
    padding-left: 15px;
  }
}

/* --- privacy-policy.html --- */

.privacy-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-title {
  color: #f09000;
  text-align: center;
  font-size: 32px;
}

.privacy-subtitle {
  color: #ff9900;
  margin-top: 20px;
}

.privacy-text {
  font-size: 16px;
  line-height: 1.6;
}

.privacy-list {
  padding-right: 20px;
}

.privacy-list li {
  margin-bottom: 10px;
}

.privacy-link {
  color: #1474bb;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 23px;
  }

  .privacy-title {
    font-size: 28px;
  }

  .privacy-subtitle {
    font-size: 24px;
  }

  .privacy-text {
    font-size: 14px;
  }

  .privacy-list {
    padding-right: 10px;
  }

  .privacy-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}