:root {
  --primary-orange: #1e3163;
  --dark-orange: #0f1a36;
  --light-orange: #2a4175;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --primary-color: #b08a35;
  --primary-light: #d5b56b;
  --dark-text: #121212;
  --light-gray: #f8f9fa;
  --section-padding: 100px 0;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.display-4 {
  letter-spacing: -0.05em;
}

.lead {
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary-orange);
  transition: var(--transition);
}

.navbar-brand small {
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand small {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 8px 15px !important;
  margin: 0 5px;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

/* Buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-orange {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-orange:hover {
  background-color: var(--dark-orange);
  color: white;
  box-shadow: 0 5px 5px rgba(36, 76, 151, 0.4);
}

.btn-orange:active {
  transform: translateY(1px);
}

.btn-outline-orange {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  background: transparent;
}

.btn-outline-orange:hover {
  background: var(--primary-orange);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 107, 53, 0.2) 0%,
    transparent 50%
  );
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.hero h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats Section */
.stats-section {
  padding: var(--section-padding);
  background: white;
  position: relative;
  z-index: 1;
}

.stat-box {
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform: translateY(0);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 10px;
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--light-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features Section */
.features-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.feature-box {
  padding: 40px 30px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform: translateY(0);
  opacity: 0;
}

.feature-box.animated {
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-box:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-box:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background: white;
}

.service-card {
  padding: 2.5rem;
  border-radius: 12px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(40, 65, 148, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: var(--primary-orange);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Solutions Section */
.solutions-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.solution-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  background: white;
  transform: translateY(0);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.solution-card .card-body {
  padding: 40px 30px;
}

/* Projects Section */
.projects-section {
  padding: var(--section-padding);
  background: white;
}

.project-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  background: white;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-card .card-body {
  padding: 40px 30px;
}

.badge {
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.bg-orange {
  background-color: var(--primary-orange) !important;
}

/* Partners Section */
.partners-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.partner-logo {
  height: 80px;
  margin: 20px;
  filter: grayscale(100%) contrast(0.5);
  opacity: 0.7;
  transition: var(--transition);
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: white;
}

.contact-info-box {
  background-color: white;
  border-radius: 12px;
  padding: 15px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  background: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-card .card-body {
  padding: 40px 30px;
}

.blog-date {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--light-orange)
  );
}

/* روابط الفوتر الأساسية */
.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
  position: relative;
  padding-left: 25px; /* مساحة للسهم */
  padding-right: 0;
}

body[dir="rtl"] .footer-links a {
  padding-left: 0;
  padding-right: 25px; /* مساحة للسهم */
}

/* السهم */
.footer-links a::before {
  position: absolute;
  opacity: 0;
  transition: var(--transition, 0.3s ease);
  font-weight: bold;
}

/* LTR */
body[dir="ltr"] .footer-links a::before {
  content: "→";
  left: 5px; /* قريب من النص */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: left 0.3s ease, opacity 0.3s ease;
}

/* RTL */
body[dir="rtl"] .footer-links a::before {
  content: "←";
  right: 5px; /* قريب من النص */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
}

/* عند التحريك (hover) */
body[dir="ltr"] .footer-links a:hover::before {
  opacity: 1;
  left: 0; /* يتحرك 5px للخارج */
}

body[dir="rtl"] .footer-links a:hover::before {
  opacity: 1;
  right: 0; /* يتحرك 5px للخارج */
}

.footer-links a:hover {
  color: rgb(63, 63, 63);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-orange);
  text-decoration: none;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-orange);
  color: #f8f9fa;
  transform: translateY(-3px);
}
.social-links a {
  text-decoration: none;
}

/* Form Styles */
.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.25rem rgba(33, 62, 126, 0.25);
}

.input-group .btn {
  border-radius: 0 8px 8px 0 !important;
}

/* Section Headings */
.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-heading span {
  color: var(--primary-orange);
}

.section-subheading {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero {
    padding: 120px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* services and service details */

/* Services Page Styles */
.hero-services {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  position: relative;
}

.service-card {
  border-radius: 8px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-card-image {
  position: relative;
}

.service-card-image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
}

.service-features {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
}

.service-features li::before {
  content: "";
  color: var(--primary-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Service Detail Page Styles */
.hero-service-detail {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.service-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.service-content h2 {
  color: var(--primary-orange);
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.service-content h3,
.service-content h4 {
  margin: 30px 0 15px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.how-it-works .step {
  display: flex;
  margin-bottom: 30px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.benefit-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-meta {
  list-style: none;
  padding: 0;
}

.service-meta li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-meta li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-meta strong {
  color: var(--primary-orange);
  display: block;
  margin-bottom: 5px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(30, 49, 99, 0.05);
  color: var(--primary-orange);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(30, 49, 99, 0.25);
}

@media (max-width: 768px) {
  .hero-services,
  .hero-service-detail {
    padding: 100px 0 60px;
  }

  .service-content {
    font-size: 1rem;
  }

  .service-content h2 {
    font-size: 1.5rem;
  }
}

/* solutions and solution details */

/* Solutions Page Styles */
.hero-solutions {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  position: relative;
}

.solution-card {
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.solution-card.featured {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(30, 49, 99, 0.2) !important;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.solution-card .card-header {
  border-bottom: none;
}

.solution-icon {
  font-size: 3rem;
  color: var(--primary-orange);
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.solution-features li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.solution-price h4 {
  font-weight: 700;
}

.table th {
  background-color: var(--primary-orange);
  color: white;
}

.table td {
  vertical-align: middle;
}

/* Solution Detail Page Styles */
.hero-solution-detail {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.solution-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.solution-content h2 {
  color: var(--primary-orange);
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.process-steps .step {
  display: flex;
  margin-bottom: 30px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.solution-meta {
  list-style: none;
  padding: 0;
}

.solution-meta li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-meta li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.solution-meta strong {
  color: var(--primary-orange);
  display: block;
  margin-bottom: 5px;
}

.resource-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.resource-list a:hover {
  color: var(--primary-orange);
}

.resource-list a:last-child {
  border-bottom: none;
}

.solution-expert {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .solution-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-solutions,
  .hero-solution-detail {
    padding: 100px 0 60px;
  }

  .solution-content {
    font-size: 1rem;
  }

  .solution-content h2 {
    font-size: 1.5rem;
  }
}

/* projects and project details */

/* Projects Page Styles */
.hero-projects {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  position: relative;
}

.projects-filter {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.btn-filter {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  margin: 0 5px 10px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
  background: var(--primary-orange);
  color: white;
}

.project-card {
  border-radius: 8px;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.project-card-image {
  position: relative;
}

.project-card-image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
}

.project-date {
  font-weight: 500;
  color: var(--primary-orange);
}

.project-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--dark-text);
}

/* Project Detail Page Styles */
.hero-project-detail {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.project-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.project-content h2 {
  color: var(--primary-orange);
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.tech-stack {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-stack-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tech-stack-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.project-gallery {
  margin-top: 40px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.project-testimonials {
  background: var(--light-bg);
  padding: 60px 0;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.testimonial-quote {
  position: relative;
  padding-left: 20px;
}

.testimonial-quote:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-orange);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.project-cta {
  background: linear-gradient(135deg, var(--primary-orange), #e67e22);
  color: white;
  padding: 80px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-projects,
  .hero-project-detail {
    padding: 100px 0 60px;
  }

  .projects-filter {
    padding: 20px;
  }

  .project-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-item {
    margin-bottom: 15px;
  }
}

/* FAQ */

/* FAQ Page Styles */
.hero-projects {
  background: linear-gradient(
      135deg,
      rgba(30, 49, 99, 0.9),
      rgba(15, 26, 54, 0.9)
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
}

.accordion .card {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion .card-header {
  padding: 0;
  border-bottom: 0;
}

.accordion .btn-link {
  width: 100%;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 600;
  padding: 20px;
  position: relative;
}

.accordion .btn-link:hover {
  color: var(--primary-orange);
}

.accordion .btn-link:not(.collapsed) i {
  transform: rotate(180deg);
}

.accordion .btn-link i {
  transition: transform 0.3s ease;
}

.accordion .card-body {
  padding: 20px;
  background-color: rgba(245, 247, 250, 0.5);
}

/* Nested accordion styles */
.accordion .accordion .card {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion .accordion .btn-link {
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 20px;
}

.accordion .accordion .card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-text);
}

body.rtl {
  direction: rtl;
  text-align: right;
  font-family: "Almarai", sans-serif;
}

/* لوجو يمين والايقونة شمال في RTL فقط على الشاشات الصغيرة */
@media (max-width: 991.98px) {
  body.rtl .navbar .container {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body.rtl .navbar-brand,
  body.rtl #menuToggleBtn {
    margin: 0 !important;
  }

  @media (max-width: 991.98px) {
    .lang-dropdown-mobile {
      margin-bottom: 20px !important;
      /* يمكنك تغيير القيمة حسب رغبتك */
    }
  }
}
.list-unstyled li a{
  color: #0f1a36 !important;
}

