/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --main-color: #4a9a9a;
  --light-main-color: #2850a005;
  --light-color: #f5f6fa;
  --dark-color: #000;
  --text-color: #777;
  --white-color: #fff;
  --main-transition: all 0.4s;
}

body {
  font-family: "Cairo", sans-serif;
  /* font-family: "Alexandria", sans-serif !important; */
  color: var(--dark-color);
}
.text-color {
  color: var(--text-color);
}
.text-main {
  color: var(--main-color);
}
.fw-bold {
  font-weight: 500 !important;
}

img.section-icon {
  border-radius: 0 !important;
}
.bg-light-color {
  background-color: var(--light-color);
}
/* End Global Rules */

/* Start Navbar */
.navbar {
  background-color: var(--white-color) !important;
  padding-right: 15px;
  padding-left: 15px;
}
.navbar .navbar-brand {
  height: 100% !important;
}
.navbar .navbar-brand img {
  width: 150px !important;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 25px;
  color: var(--dark-color);
  font-size: 18px;
  border-radius: 100px;
  transition: var(--main-transition);
  display: flex;
  background-color: var(--light-color);
  margin: 5px 10px;
}
.navbar .navbar-nav .nav-link .material-icons {
  margin-left: 5px;
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
/* End Navbar */

/* Start Showcase */
.showcase {
  padding: 50px 0;
}
.showcase .rows {
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  justify-items: center;
}
.showcase .right {
  background-color: var(--light-main-color);
  border-radius: 30px;
  padding: 20px;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.showcase .left {
  border-radius: 30px;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.showcase .left img {
  border-radius: 30px;
  margin-top: 30px;
}
.showcase .right h1 {
  line-height: 1.2;
  color: var(--main-color);
  font-weight: bold;
}
.showcase .contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 30px;
}
.showcase .contact-btns .btn {
  width: 100% !important;
  padding: 10px 30px;
  margin: 0 !important;
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 18px;
}
.showcase .contact-btns .btn .material-icons,
.showcase .contact-btns .btn img {
  margin-right: 5px;
}
.showcase .contact-btns .btn .material-icons {
  color: var(--white-color);
}
.showcase .contact-btns .hotline-call-btn {
  background-color: #ffdd59;
}
.showcase .contact-btns .phone-call-btn {
  background-color: #4bcffa;
}
.showcase .contact-btns .whatsapp-call-btn {
  background-color: #26de81;
}
.showcase .card {
  margin-top: 30px;
  padding: 20px;
  border: 0 !important;
  border-radius: 30px;
  background-color: #ffdd59;
}
.showcase .card input,
.showcase .card textarea {
  padding: 8px 20px;
  background-color: var(--white-color) fff13;
  border-radius: 5px;
  border: solid 1px var(--white-color);
  font-size: 18px;
  color: var(--dark-color);
}
.showcase .card input::placeholder,
.showcase .card textarea::placeholder {
  color: var(--dark-color);
}
.showcase .card button {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
}
.showcase .showcase-btns {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.showcase .showcase-btns .btn {
  padding: 10px 30px;
  border-radius: 100px;
  margin: 5px;
}
.showcase .showcase-btns .btn:hover {
  color: var(--white-color) !important;
  background-color: var(--dark-color);
}
.showcase .showcase-btns .hotline-call-btn {
  background-color: #2e86de;
}
.showcase .showcase-btns .phone-call-btn {
  background-color: #ee5253;
}
.showcase .showcase-btns .whatsapp-call-btn {
  background-color: #10ac84;
}
@media (max-width: 768px) {
  .showcase .rows {
    padding: 10px;
    grid-template-columns: 1fr;
  }
  .showcase .contact-btns {
    grid-template-columns: 1fr;
  }
}
/* End Showcase */

/* Start About */
.about {
  background-color: var(--main-color);
}
.about .overlay {
  padding: 100px 0;
  background-image: url("../img/about-overlay.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about img {
  border-radius: 30px;
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services .row {
  padding: 50px 0;
}
.services .dark-text {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: normal;
}
.services h3 {
  font-size: 30px;
  font-weight: bold;
  margin-top: 30px;
}
.services img {
  border-radius: 30px;
}
.services .call-btn {
  margin-top: 30px;
}
.services .call-btn .call-btn-link {
  background-color: var(--main-color);
  padding: 10px 30px;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  .services .mobile-img-col {
    order: 1 !important;
  }
  .services .mobile-content-col {
    order: 2 !important;
  }
  .services .contact-btns {
    grid-template-columns: 1fr;
  }
}
/* End Services */

/* Start Services Area */
/* Section Styling */
.service-section {
  padding: 100px 0;
  background-color: var(
    --white-color
  ); /* White background for the content area */
}

/* Header Styling */
.section-header {
  margin-bottom: 60px; /* Space below header */
  text-align: center; /* Center align header content */
}

.section-header .lead {
  font-size: 1.25rem; /* Slightly larger lead paragraph */
  max-width: 900px; /* Limit width for readability */
  margin: 0 auto; /* Center the paragraph */
  line-height: 1.8; /* Improved line spacing for readability */
  font-weight: 400;
}

/* Location Card Styling */
.location-card {
  background-color: var(--white-color);
  border-radius: 1.25rem; /* More rounded corners */
  padding: 35px; /* Generous padding inside cards */
  margin-bottom: 30px; /* Space between cards */
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08); /* Soft, prominent shadow */
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out,
    border-color 0.4s ease-in-out;
  border: 1px solid var(--white-color); /* Default transparent border */
  height: 100%; /* Ensures all cards in a row have equal height */
  position: relative; /* For pseudo-elements */
  overflow: hidden; /* Clips background effect */
}

.location-card:hover {
  transform: translateY(-15px); /* Lifts the card on hover for a dynamic feel */
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15); /* More intense shadow on hover */
  border-color: var(--main-color); /* Main red border on hover */
}

/* Subtle background highlight on hover */
.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-main-color); /* Very light red background */
  opacity: 0; /* Hidden by default */
  transition: opacity 0.4s ease-in-out;
  z-index: 0; /* Ensures background is behind content */
}

.location-card:hover::before {
  opacity: 1; /* Reveals background on hover */
}

/* Ensure card content is above the pseudo-element background */
.location-card > * {
  position: relative;
  z-index: 1;
}

.location-card h3 {
  font-size: 1.9rem; /* Prominent heading for each region */
  color: var(--main-color); /* Main red color for region headings */
  margin-bottom: 25px; /* Space below heading */
  padding-bottom: 12px; /* Space between text and underline */
  border-bottom: 3px solid var(--main-color); /* Thicker main red underline */
  display: inline-block; /* Allows underline to match text width */
}

.location-card ul {
  list-style: none; /* Remove default list bullets */
  padding: 0;
  margin-bottom: 0;
}

.location-card ul li {
  font-size: 1.08rem; /* Slightly larger list items */
  color: var(--dark-color); /* Black color for list items */
  margin-bottom: 12px; /* More space between list items */
  position: relative;
  padding-right: 30px; /* Space for custom bullet point */
  line-height: 1.6; /* Improved line spacing */
  font-weight: 500; /* Medium font weight */
}

/* Custom bullet point using pseudo-element */
.location-card ul li::before {
  content: "\2022"; /* Unicode bullet point (•) */
  font-size: 1.5em; /* Larger bullet point */
  color: var(--main-color); /* Main red color for bullet */
  position: absolute;
  right: 0;
  top: 0;
  line-height: inherit; /* Align with text baseline */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  /* Adjust for medium and small screens */
  .section-header h2 {
    font-size: 2.8rem;
  }
  .section-header .lead {
    font-size: 1.1rem;
  }
  .location-card {
    padding: 25px;
  }
  .location-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .location-card ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-right: 25px;
  }
}
@media (max-width: 767.98px) {
  /* Adjust for small screens (mobiles) */
  .section-padding {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .section-header .lead {
    font-size: 0.95rem;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
/* End Services Area */

/* Start Testimonials */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--light-color);
}
.testimonial-card {
  background-color: var(--white-color);
  border-radius: 1rem; /* More rounded corners */
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08); /* Stronger shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px; /* Ensure consistent card height */
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}
.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark-color);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto; /* Push author to the bottom */
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px; /* Margin to the left for RTL */
  border: 3px solid var(--main-color); /* Purple border */
}
.author-details {
  text-align: right;
}
.author-name {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}
.author-rating .material-icons-star {
  color: rgb(255, 187, 0); /* Yellow stars */
}
.section-title {
  font-size: 2.8rem;
  color: var(--dark-color);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0; /* Align to right for RTL */
  width: 80px;
  height: 5px;
  background-color: var(--main-color); /* Purple underline */
  border-radius: 5px;
}
.quote-icon {
  font-size: 3rem !important;
  color: var(--main-color); /* Purple quote icon */
  margin-bottom: 20px;
  opacity: 0.7;
}
/* End Testimonials */

/* Start Contact */
.contact-section {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
  min-height: 100vh; /* Ensure it takes full viewport height */
}
.form-column {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 30px; /* Rounded corners */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); /* Subtle shadow */
}
.contact-section .card {
  margin-top: 30px;
  padding: 20px;
  border: 0 !important;
  border-radius: 30px;
  background-color: #ffdd59;
}
.contact-section .card input,
.contact-section .card textarea {
  padding: 8px 20px;
  background-color: var(--white-color) fff13;
  border-radius: 5px;
  border: solid 1px var(--white-color);
  font-size: 18px;
  color: var(--dark-color);
}
.contact-section .card input::placeholder,
.contact-section .card textarea::placeholder {
  color: var(--dark-color);
}
.contact-section .card button {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
}
.info-column {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 30px; /* Rounded corners */
}
.info-column h3 {
  color: var(--main-color); /* Bootstrap yellow for headings */
  margin-bottom: 15px;
  font-size: 1.2em;
  text-transform: uppercase;
}
.info-column p,
.info-column ul {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--white-color); /* Lighter text color */
}
.info-column ul {
  list-style: none;
  padding: 0;
}
.info-column ul li {
  margin-bottom: 10px;
}
.map-column iframe {
  width: 100%;
  height: 100%;
  min-height: 400px; /* Minimum height for the map on smaller screens */
  border: 0;
  border-radius: 30px; /* Rounded corners */
}
/* Adjust column heights to match on larger screens */
@media (min-width: 992px) {
  .contact-section .row {
    min-height: 80vh; /* Adjust as needed for visual balance */
  }
  .form-column,
  .info-column,
  .map-column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
  }
}
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px 10px;
}
footer p {
  color: var(--light-color);
  padding: 0;
  margin: 0;
}
/* End Footer */

/* Sticky Button */
.call-btn-sticky {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background: #00c6ff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky2 {
  position: fixed;
  bottom: 120px;
  left: 20px;
  background: #f7ff00; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #db36a4,
    #f7ff00
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #db36a4,
    #f7ff00
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.whatsapp-btn-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: green; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #45b649,
    green
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #45b649,
    green
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky:hover,
.call-btn-sticky2:hover,
.whatsapp-btn-sticky:hover {
  color: var(--white-color);
}
@keyframes pulseZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Start Content */
.content {
  padding: 100px 0;
}
.content h2,
.content h3 {
  color: var(--main-color);
}
/* End Content */

/* ------------------------------------------- */

main {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}
