@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #7FA695;
  --secondary-color: #F5E6D3;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #FDF8F3;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: var(--text-dark);
  line-height: 1.6;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

/* General nav item style */
/* General nav-link style */
.navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover effect */
.navbar-nav .nav-item .nav-link:hover {
  background-color: #f8f9fa;
  /* light background */
  color: #5193f7 !important;
  /* bootstrap primary blue */
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container-fluid {
  margin: 0 40px !important;
}

/* Active link */
.navbar-nav .nav-item .nav-link.active {
  background-color: #4d91f8 !important;
  /* bootstrap primary */
  color: #fff !important;
  /* force white text */
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #5191f1;
  color: white;
}

.logo-img {
  height: 40px;
  order: 1;
}

.navbar-nav .nav-link {
  margin-left: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}



.cta-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Cairo', sans-serif;
}

.cta-btn:hover {
  background-color: #6a9180;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lang-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn {
  padding: 8px 15px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
}

.lang-btn.active,
.lang-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-title {
  font-size: 2.2rem;
  color: #0d6efd;
  font-weight: 700;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}












.container {
  direction: rtl;
  /* Ensures Arabic layout flows correctly */
}

/* --- Base Card Style --- */
.card {
  border-radius: 20px !important;
  border: none !important;
  background: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* --- Founder Cards Specific (The circular image style) --- */
.founder-card .founder-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f8f9fa;
  outline: 2px solid #007bff;
  margin-top: 25px;
}

/* --- Product Cards Specific (The rectangular image style) --- */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* --- Text & Alignment (Shared) --- */
.card-title {
  color: #2c3e50;
  font-weight: 800;
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* The Blue Line Divider */
.divider {
  width: 40px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto 20px;
  border-radius: 10px;
}

/* --- List Items (Centered Fix) --- */
.card-body p,
.list-unstyled li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* This forces text to the middle */
  gap: 8px;
}

/* Add bullet icons for list items (optional) */
.list-unstyled li::before {
  content: "•";
  color: #007bff;
  font-weight: bold;
}

/* --- The "Book Now" Button --- */
.btn-booking {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white !important;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  margin-top: auto;
  /* Pushes button to the bottom of the card */
  transition: background 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.btn-booking:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* Utility to push buttons to the same level */
.mt-auto {
  margin-top: auto !important;
}


/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 20px;
  font-size: 20px;
  font-weight: normal;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-contact span.content {
  margin-right: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}