@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
/* Base Styles */
:root {
  --blue-clr: #4a5dd8;
  --dark-blue-clr: #e8eff4;
  --container-width: 90%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
.overF {
  overflow-y: hidden;
}
body {
  margin: 0;
  font-family: "Alexandria", sans-serif;
  background-color: #ffffff;
  color: var(--text-gray);
  direction: rtl;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--heading-clr);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.container {
  width: min(14 00px, 92%);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

section {
  position: relative;
}

/* Header */

header .header-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}

.header-logo {
  width: 30%;
  cursor: pointer;
}

.header-logo svg {
  width: 48px;
  height: 48px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  gap: 12px;
}

.header-actions button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  background-color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.header-actions button.search {
  background-color: var(--heading-clr);
  color: #ffffff;
  border-color: var(--heading-clr);
}

.header-actions a:hover,
.header-actions button:hover {
  background-color: #eef2ff;
  border-color: var(--heading-clr);
  color: var(--heading-clr);
}

nav {
  align-items: center;
  gap: 24px;
}

nav a {
  color: #374151;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--heading-clr);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.header-logo img {
  object-fit: cover;
  width: 100%;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 16px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a3aff, #7c6fff);
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  background-color: rgba(59, 91, 255, 0.05);
}

/* Dropdown Menu RTL */
.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  width: max-content;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  text-align: right;
  margin: 0;
  width: 100%;
}

.dropdown-menu a {
  width: 100%;
  text-align: right;
  display: flex;
  gap: 12px;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 6px;
  color: #374151;
}

.dropdown-menu a:hover {
  background-color: #eef2ff;
}

.dropdown-arrow {
  display: inline-flex;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.desktop-nav .dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.desktop-nav .has-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Search Bar */
.search-bar {
  width: 100%;
  background-color: rgba(74, 58, 255, 0.05);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-bar.active {
  padding: 20px 0;
  max-height: 100px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.search-form input:focus {
  outline: none;
  border-color: var(--heading-clr);
  box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.1);
}

.search-form button {
  padding: 12px 20px;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form button:hover {
  background-color: #3a2acc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 58, 255, 0.3);
}

/* Search Toggle Button */
.search-toggle {
  background: none;
  border: 1px solid #d1d5db;
}

.search-toggle:hover {
  border-color: var(--heading-clr);
  background-color: rgba(59, 91, 255, 0.05);
}

/* Hero */
.hero {
  background-color: var(--brand-light-gray);
  padding: 120px 0 180px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: clamp(2.8rem, 3vw, 3.2rem);
  color: var(--brand-dark-blue);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: #4b5563;
}

.hero-illustration {
  flex: 1;
  max-width: 540px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

/* Services */
.services {
  padding: 70px 0;
  background-color: #ffffff;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-clr);
  font-weight: 600;
  margin-top: 70px;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--brand-dark-blue);
  margin: 16px 0 40px;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
}

.service-card-body {
  padding: 24px;
  text-align: center;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
  margin-bottom: 12px;
}

.service-card-description {
  font-size: 0.95rem;
  color: #6b7280;
}

.primary-button {
  background-color: var(--blue-clr);
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: -8px 8px #3244b5;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  span {
    color: #fff;
  }
  svg {
    color: #fff;
  }
}

.primary-button:hover {
  background-color: #3730a3;
  box-shadow: 0 12px 28px rgba(55, 48, 163, 0.25);
}

/* slider */
/**
 * OWL CAROUSEL STYLES - CARD SLIDER
 */

/* Owl Carousel Override Styles */

.card-slider .owl-nav {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}

.card-slider .owl-nav button {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  color: #1a202c !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 1px solid #000 !important;
  pointer-events: auto !important;
  z-index: 10 !important;
  margin: 0 !important;
  span {
    font-size: 40px;
    padding-bottom: 8px;
  }
}

/* Branches */
.branches {
  background-color: var(--brand-light-gray);
}

.branches-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.branch-card {
  background-color: #eef2ff;
  border-radius: 24px;
  width: 160px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.25);
}

.branch-card span {
  font-weight: 600;
  color: #374151;
}

/* About */
.about {
  margin: 3rem 0;
  padding: 100px 0;
  background-color: var(--dark-blue-clr);
}

.about p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b5563;
}

.about .controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.circle-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.circle-button:hover {
  background-color: #f3f4f6;
  color: var(--heading-clr);
}

/* Slider */
.image-slider {
  padding: 60px 0 80px;
  background-color: #ffffff;
}

.slider-frame {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.slider-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  transition: background-color 0.2s ease;
}

.slider-dot.active {
  background-color: var(--heading-clr);
}

/* Pricing */
.pricing {
  background-color: var(--brand-light-gray);
  padding: 100px 0;
}

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  width: min(320px, 100%);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--heading-clr);
  box-shadow: 0 30px 50px rgba(74, 58, 255, 0.35);
}

.pricing-card header {
  background-color: var(--heading-clr);
  color: #ffffff;
  text-align: center;
  padding: 32px 20px;
}

.pricing-card header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.pricing-card header p {
  margin: 12px 0 0;
  font-size: 3rem;
  font-weight: 900;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
}

.pricing-card footer {
  padding: 24px 32px 32px;
}

.pricing-card button {
  width: 100%;
  padding: 14px 0;
  border-radius: 12px;
  background-color: var(--heading-clr);
  color: #ffffff;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.pricing-card button:hover {
  background-color: #3730a3;
}

.section-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  p {
    font-size: 1.5rem;
    color: var(--blue-clr);
    svg {
      margin-left: 10px;
      width: 20px;
      height: 20px;
      transition: 0.5s;
      animation: star 2s linear infinite;
    }
  }
}
@keyframes star {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
/* FAQ */
.faq {
  background-color: var(--brand-light-gray);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background-color: rgba(74, 58, 255, 0.08);
  color: var(--heading-clr);
}

.breadcrumb {
  background: linear-gradient(
    135deg,
    rgba(74, 58, 255, 0.05) 0%,
    rgba(74, 58, 255, 0.02) 100%
  );
  border-bottom: 2px solid rgba(74, 58, 255, 0.1);
  padding: 16px 0;
  margin-bottom: 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d1d5db" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>')
    no-repeat center;
  background-size: contain;
  transform: scaleX(-1);
}

.breadcrumb a,
.breadcrumb-text {
  color: #6b7280;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.breadcrumb-home svg {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.breadcrumb-home:hover {
  color: var(--heading-clr);
  background-color: rgba(74, 58, 255, 0.08);
}

.breadcrumb-home:hover svg {
  color: var(--heading-clr);
}

.breadcrumb a:hover {
  color: var(--heading-clr);
}

/* Category cards */
.category-hero {
  background-color: var(--brand-light-gray);
  padding: 80px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.main-service-detail-page {
  height: 100%;
  width: 100%;
}
.article .primary-button {
  background-color: var(--brand-green);
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  margin: 16px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.article .primary-button:hover {
  background-color: #15803d;
}
.article {
  margin-top: 3rem;
  width: 85%;
  padding: 3rem 2rem !important;
  border-radius: 1rem;
  border: 1px solid #0000002a;
  height: 100%;
}
.article-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-radius: 32px;
  margin-bottom: 60px;
}

.article-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #102259;
  border-radius: 1rem;
}
.article-hero-media img {
  width: 80%;
  height: 100%;
  object-fit: contain;
}

.secondary-button {
  background-color: transparent;
  color: var(--heading-clr);
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid var(--heading-clr);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
  background-color: var(--heading-clr);
  color: #ffffff;
}

.article-section {
  margin-top: 72px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.two-column.reverse .media {
  order: -1;
}

.inline-link {
  color: var(--brand-green);
  font-weight: 600;
}

.article-highlights {
  background-color: var(--brand-light-gray);
  padding: 60px;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.section-subtitle {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--brand-dark-blue);
  margin-bottom: 32px;
  font-weight: 800;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.highlight-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #f8fafc;
  font-weight: 600;
  color: var(--brand-dark-blue);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background-color: #f9fafb;
  padding: 32px 40px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.faq details {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.faq summary {
  font-weight: 700;
  color: var(--brand-dark-blue);
  cursor: pointer;
}

@media (max-width: 768px) {
  .article {
    width: 100%;
    margin: 0;
    padding: 0 2rem !important;
    border: none;
  }
  .service-page-faq-container img {
    display: none;
  }
  .article-section {
    margin-top: 56px;
  }

  .article-highlights {
    padding: 40px 24px;
  }

  .price-list li {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .cta-panel {
    padding: 24px;
  }
  .branches-wrapper {
    flex-direction: column;
    margin-bottom: 3rem;
    .branch-card {
      width: 90%;
    }
  }
}

.article ul,
.article ol {
  padding-right: 24px;
  color: #4b5563;
}

.article strong {
  color: var(--brand-dark-blue);
}

/* Footer */
footer {
  background-color: #0b1428;
  color: #e2e8ff;
  padding: 80px 0;
  margin-top: 100px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  align-items: start;
  gap: 64px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
  align-items: start;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8ff;
  font-weight: 600;
}

.footer-links a {
  color: #e2e8ff;
  font-weight: 600;
}

.footer-links a:hover {
  color: #9faeff;
}

.footer-link-icon {
  order: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9faeff;
}

.footer-link-text {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-brand {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-description {
  line-height: 1.9;
  color: #cad4ff;
}

/* Footer Widgets Styling */
.footer-widget {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-widget h3,
.footer-widget h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  padding: 0;
}

.footer-widget-title {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-widget li {
  color: #cad4ff;
  font-weight: 500;
}

.footer-widget li a {
  color: #e2e8ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-widget li a:hover {
  color: #9faeff;
}

.footer-widget p {
  color: #cad4ff;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

footer .footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

footer .footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #9faeff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

footer .footer-social a:hover {
  background-color: rgba(159, 174, 255, 0.2);
  color: #ffffff;
}

footer .footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.95rem;
  color: #8191c9;
}

@media (max-width: 991px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .footer-logo,
  footer .footer-social {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
    align-items: center;
  }

  .footer-links li {
    justify-content: center;
  }
}

/* Floating buttons */
.scroll-top,
.whatsapp-button {
  position: fixed;
  bottom: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.scroll-top {
  left: 32px;
  background-color: var(--blue-clr);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-4px);
}

.whatsapp-button {
  right: 32px;
  background-color: #22c55e;
}

/* Responsive */
@media (min-width: 768px) {
  .header-actions {
    justify-content: end;
  }
  .hero-content {
    flex-direction: row;
  }

  .features-content {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  header .header-top {
    flex-direction: column;
    gap: 20px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 80px 0 140px;
  }

  .services-grid,
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .pricing-card header p {
    font-size: 2.5rem;
  }
}
/* start my edits */
/* start service details page */
.service-page-container {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px 1px #7e7d7d21;
}

.service-page-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-page-description {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.service-page-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #27ae60;
  color: white;
  padding: 15px;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.service-page-whatsapp-btn:hover {
  background-color: #20ba5a;
}

.service-page-whatsapp-icon {
  width: 18px;
  height: 18px;
}

.service-page-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.service-page-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #3b82f6;
  color: white;
  padding: 15px;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-page-call-btn:hover {
  background-color: #2563eb;
}

.service-page-call-icon {
  width: 18px;
  height: 18px;
}

.service-page-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .service-page-container {
    padding: 0;
    box-shadow: none;
  }
  .service-page-heading {
    font-size: 22px;
  }

  .service-page-description {
    font-size: 15px;
  }

  .service-page-whatsapp-btn,
  .service-page-call-btn {
    font-size: 16px;
    padding: 10px 25px;
  }

  .service-page-cta-buttons {
    gap: 10px;
  }
}
/* second section */
.service-page-content-section {
  margin: 40px 0;
  width: 100%;
  ul {
    width: 100%;
    margin-bottom: 30px;
    li {
      margin-bottom: 5px;
    }
  }
}

.service-page-section-title {
  text-align: right;
  font-size: 22px;
  font-weight: bold;
  color: var(--heading-clr);
  margin: 30px 0;
}

.service-page-paragraph {
  text-align: right;
  font-size: 14px;
  color: var(--dark-blue-clr);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 10px;
  a {
    color: var(--heading-clr);
  }
}

.service-page-highlight {
  font-weight: bold;
  color: #000000;
}

@media (max-width: 768px) {
  .service-page-content-section {
    padding: 20px;
  }

  .service-page-section-title {
    font-size: 24px;
    text-align: center;
  }

  .service-page-paragraph {
    font-size: 16px;
  }
}
/* third section */
.service-page-cta-section {
  width: 100%;
}

.service-page-cta-banner {
  background: #102259;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.service-page-cta-content {
  flex: 1;
  text-align: right;
}

.service-page-cta-heading {
  text-align: right;
  color: #ffffff;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-page-cta-text {
  text-align: right;
  color: #e8e8e8a4;
  font-size: 14px;
  line-height: 1.8;
  width: 100%;
}
/* fourth section */
.service-page-image-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.service-page-image-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.service-page-car-image {
  width: 40%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-page-cta-banner {
    flex-direction: column-reverse;
    padding: 30px 25px;
    gap: 25px;
  }

  .service-page-cta-content {
    text-align: center;
  }

  .service-page-cta-heading {
    font-size: 22px;
  }

  .service-page-cta-text {
    font-size: 14px;
    margin: 0 auto;
  }

  .service-page-whatsapp-btn {
    padding: 12px 28px;
    font-size: 16px;
  }

  .service-page-car-image {
    max-width: 100%;
  }

  .service-page-image-caption {
    font-size: 16px;
    padding: 0 15px;
  }
}
/* table section style */
.service-page-table-container {
  width: 100%;
  background-color: white;
}

.service-page-pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d1d5db;
}

.service-page-pricing-table th,
.service-page-pricing-table td {
  width: 50%;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #d1d5db;
  font-size: 14px;
  color: var(--dark-blue-clr);
  font-weight: 400;
}

.service-page-pricing-table tr:nth-child(even) {
  background-color: #ffffff;
}

.service-page-pricing-table tr:nth-child(odd) {
  background-color: #f9fafb;
}

.service-page-table-label {
  background-color: #f9faff !important;
  text-align: right !important;
  font-size: 14px;
  color: var(--dark-blue-clr);
  font-weight: 400;
}

.service-page-table-value {
  background-color: #f9faff !important;
  text-align: right !important;
  font-size: 14px;
  color: var(--dark-blue-clr);
  font-weight: 400;
}

.service-page-phone-link {
  text-align: right;
  font-size: 14px;
  color: var(--dark-blue-clr);
  font-weight: 400;
}

.service-page-phone-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .service-page-table-title {
    font-size: 22px;
  }

  .service-page-pricing-table th,
  .service-page-pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .service-page-pricing-table th {
    font-size: 16px;
  }
}
/* FAQ section style */
.service-page-faq-container {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }
}
.service-page-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-page-faq-item {
  border: 1px solid #e0e0e0af;
  border-radius: 1rem;
  padding: 20px;
}

.service-page-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.service-page-faq-question-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-clr);
  text-align: right;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-page-faq-number {
  font-weight: bold;
  color: #666;
}

.service-page-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 300;
  color: #666;
  transition: all 0.2s linear;
  flex-shrink: 0;
}

.service-page-faq-icon.active {
  color: #4169e1;
  transform: rotate(0deg);
}

.service-page-faq-answer {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease;
  opacity: 0;
}

.service-page-faq-answer.active {
  height: auto;
  opacity: 1;
  padding-top: 15px;
}

.service-page-faq-answer-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  text-align: right;
}

@media (max-width: 768px) {
  .service-page-faq-title {
    font-size: 24px;
  }

  .service-page-faq-question-text {
    font-size: 16px;
  }

  .service-page-faq-answer-text {
    font-size: 14px;
  }
}
/* end service details page */

/* ============================================================
   SINGLE POST/SERVICE PAGE STYLES - RTL
   ============================================================ */

.entry-content ul,
.entry-content ol {
  margin: 20px 30px 20px 0;
  text-align: right;
}

.entry-content li {
  margin-right: 0;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .entry-content ul,
  .entry-content ol {
    margin-left: 0;
    margin-right: 0;
  }

  .entry-meta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tags-list {
    justify-content: center;
  }
}

/* ============================================================
   MOBILE MENU STYLES - RTL
   ============================================================ */

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--heading-clr);
  background-color: rgba(59, 91, 255, 0.05);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* card slider */

.card-container {
  position: relative;
  width: 100%;
}

.icon-circle {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: white;
  border: 6px solid #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

.icon-circle svg {
  width: 50px;
  height: 50px;
  fill: var(--blue-clr);
}

.card {
  background: white;
  border-radius: 30px;
  padding: 60px 20px 35px;
  text-align: center;
  margin-top: 120px;
}

.card h1 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.card p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 600px) {
  .card {
    padding: 70px 30px 40px;
  }

  .card h1 {
    font-size: 26px;
  }

  .card p {
    font-size: 14px;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
    top: -50px;
  }

  .icon-circle svg {
    width: 60px;
    height: 60px;
  }
}

/* CSS Variables for slider configuration */
:root {
  --slider-animation-duration: 30s;
  --slider-transition-duration: 0.5s;
}

/* Infinite carousel animations for RTL */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes infiniteScrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.mob-container {
  height: 100%;
  background: white;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.mob-close-btn:hover {
  background: #e0e0e0;
}

.mob-services-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: right;
}

.mob-services-list li {
  padding: 7px 0;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mob-services-list li:last-child {
  border-bottom: none;
}

.mob-contact-section-title {
  color: #0066ff;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  margin: 30px 0 25px 0;
}

.mob-contact-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;

  padding: 8px 0;
  color: #333;
  font-size: 14px !important;
  text-decoration: none;
}
.mob-contact-item a {
  font-size: 15px !important;
  font-weight: normal;
}
.mob-contact-item:hover {
  color: #0066ff;
}

.mob-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mob-social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
  padding-top: 20px;
}

.mob-social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #666;
  font-size: 20px;
  svg {
    width: 20px;
    height: auto;
  }
}
.slider-wrapper {
  display: flex;
  width: 200%;
  animation: infiniteScrollRTL var(--slider-animation-duration) linear infinite;
  transition: transform var(--slider-transition-duration) ease-in-out;
}

.slider-wrapper:hover {
  animation-play-state: paused;
}

.slider-wrapper.manual-control {
  animation: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a202c;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn-prev {
  left: 20px;
}

.slider-btn-next {
  right: 20px;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background-color: #4a3aff;
  width: 28px;
  border-radius: 5px;
}

.slider-dot:hover {
  background-color: #cbd5e0;
}

@media (max-width: 1024px) {
  .slider-wrapper {
    width: 200%;
    animation: infiniteScrollRTL var(--slider-animation-duration) linear
      infinite;
  }

  .card-container {
    flex: 0 0 10%;
    min-width: 10%;
  }
}

@media (max-width: 768px) {
  .slider-wrapper {
    width: 200%;
    animation: infiniteScrollRTL var(--slider-animation-duration) linear
      infinite;
  }

  .card-container {
    flex: 0 0 10%;
    min-width: 10%;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn-prev {
    left: 12px;
  }

  .slider-btn-next {
    right: 12px;
  }
}

/* Mobile Menu Container */
.mobile-nav {
  display: none;
  flex-direction: column;
  width: fit-content;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
  z-index: 100;
}

.mobile-nav.active {
  height: 100vh;
  width: 100%;
  display: flex;
}

/* Mobile Menu List */
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid var(--border-gray);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

/* Mobile Menu Links */
.mob-services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #374151;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background-color: rgba(59, 91, 255, 0.08);
  color: var(--primary-clr);
}

/* Mobile Submenu */
.mobile-has-submenu > a {
  padding-right: 12px;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  background-color: #f9fafb;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-has-submenu.open > .mobile-submenu {
  display: flex;
}

.mobile-submenu li {
  margin: 0;
  border: none;
}

.mobile-submenu a {
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.mobile-submenu a:hover {
  background-color: rgba(59, 91, 255, 0.06);
  color: var(--heading-clr);
}

/* Mobile Dropdown Toggle Icon */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-has-submenu.open > a .mobile-dropdown-toggle {
  transform: rotate(180deg);
}

/* Show Menu Toggle on Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }

  .desktop-nav {
    display: none !important;
  }
  .header-logo-main {
    display: none !important;
  }
}

/* Hide Mobile Menu on Desktop */
@media (min-width: 769px) {
  .header-logo-mob {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* Tablet Adjustments */
@media (max-width: 1024px) {
  .desktop-nav {
    margin: 0 20px !important;
  }
}

.owl-carousel .owl-item img {
  width: 50px;
}
.floating-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-icons a {
  display: block;
  transition: transform 0.3s ease;
  position: relative;
}
.floating-icons img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 2px;
  object-fit: cover;
}
.floating-icons svg,
.floating-icons img {
  width: 50px !important;
  height: 50px !important;
}
