/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 700px;
  margin: 2em auto 0 auto;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2em 1.5em;
}
.faq-accordion-item + .faq-accordion-item {
  margin-top: 1em;
}
.faq-accordion-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: right;
  font-size: 1.15em;
  font-weight: 700;
  color: #1565c0;
  padding: 1em 0.5em;
  cursor: pointer;
  border-bottom: 1px solid #e0e7ef;
  transition: background 0.2s;
  position: relative;
}
.faq-accordion-question::after {
  content: '\25BC';
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 1em;
  color: #1565c0;
}
.faq-accordion-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  background: #f5f8fc;
  color: #333;
  font-size: 1.05em;
  padding: 0 0.5em;
  border-radius: 0 0 1em 1em;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-accordion-question.active + .faq-accordion-answer {
  max-height: 200px;
  padding: 1em 0.5em;
}
/* Remove blue underline from service cards links on services page */
.services-cards-grid .service-card {
  text-decoration: none !important;
  color: inherit !important;
}
.services-cards-grid .service-card:visited {
  color: inherit;
}
.services-cards-grid .service-card * {
  text-decoration: none !important;
}
/* Remove blue underline from service cards links and general links in cards */
.services-cards-home-redesign .service-card {
  text-decoration: none !important;
  color: inherit !important;
}
.services-cards-home-redesign .service-card:visited {
  color: inherit;
}
.services-cards-home-redesign .service-card * {
  text-decoration: none !important;
}
/* Redesigned services quick cards grid */
.services-cards-home-redesign {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5em;
}

.services-cards-home-redesign .service-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2em 1.2em 1.5em 1.2em;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-cards-home-redesign .service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1em;
}
.services-cards-home-redesign .service-card h3 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: #0a3d6b;
}
.services-cards-home-redesign .service-card p {
  font-size: 1em;
  color: #444;
  margin-bottom: 1.2em;
}
.services-cards-home-redesign .service-card-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  border-radius: 2em;
  padding: 0.5em 1.5em;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.services-cards-home-redesign .service-card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,114,255,0.13);
  transform: translateY(-6px) scale(1.03);
}
.services-cards-home-redesign .service-card:hover .service-card-btn {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
}
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@400;500;700&display=swap');
:root {
  --primary: #0A3D6B;
  --primary-light: #1565C0;
  --accent: #00BCD4;
  --accent-warm: #FF6F00;
  --white: #FFFFFF;
  --bg-light: #F5F8FC;
  --text-dark: #1A1A2E;
  --text-muted: #546E7A;
  --border: #E0E7EF;
  --success: #2E7D32;
  --gradient-hero: linear-gradient(135deg, #0A3D6B 0%, #1565C0 50%, #00BCD4 100%);
}
html {
  direction: rtl;
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
}
img[loading="lazy"] {
  filter: blur(0.5px);
  transition: filter 0.3s;
}
img[loading="lazy"].loaded {
  filter: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary {
  background: var(--accent-warm);
  color: var(--white);
  padding: 0.8em 2em;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(255,111,0,0.08);
}
.btn-primary:hover {
  background: #ff9800;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 0.8em 2em;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  margin-right: 1em;
  transition: background 0.2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}
.btn-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1em;
  padding: 0.6em 2em;
  border-radius: 2em;
  display: inline-block;
  transition: background 0.2s;
}
.btn-link:hover {
  background: #f5f8fc;
}
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: all 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } }
@keyframes gradientFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.stagger-children > * { animation-delay: calc(var(--i, 0) * 0.1s); }

/* Standardized single logo brands slider styles */
.single-logo-slider {
  max-width: 160px;
  min-height: 80px;
  margin: 0 auto 2em auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-logo-slider .brands-slider {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(.4,1.3,.6,1);
  will-change: transform;
}
.single-logo-slider .brands-slider img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin: 0 30px;
  display: block;
  filter: grayscale(0.2) brightness(1.1);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.single-logo-slider .brands-slider img:hover {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
}

/* Enhanced single logo brands slider for visibility */
.single-logo-slider {
  max-width: 200px;
  min-height: 110px;
  margin: 0 auto 2em auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  border: 2px solid #e0e7ef;
}
.single-logo-slider .brands-slider img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  margin: 0 40px;
  display: block;
  filter: grayscale(0.1) brightness(1.15);
  opacity: 0.95;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  border: 1.5px solid #e0e7ef;
}

/* Wider single logo brands slider for more impact */
.single-logo-slider {
  max-width: 320px;
  min-height: 120px;
}
.single-logo-slider .brands-slider img {
  width: 260px;
  height: 100px;
  margin: 0 60px;
  font-size: 2.2em;
}

/* Extra wide single logo brands slider */
.single-logo-slider {
  max-width: 480px;
  min-height: 140px;
}
.single-logo-slider .brands-slider img {
  width: 400px;
  height: 120px;
  margin: 0 80px;
  font-size: 2.5em;
}

/* Center the CTA section content and buttons */
.cta-section-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-section-centered .cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1.5em;
}

/* Service areas widget styles */
.service-areas-widget {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2.5em 1.5em 2em 1.5em;
  margin: 2.5em auto 2em auto;
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.service-areas-widget h3 {
  color: #0a3d6b;
  font-size: 1.3em;
  margin-bottom: 1.2em;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
}
.areas-list li {
  background: #f5f8fc;
  border-radius: 2em;
  padding: 0.5em 1.3em;
  color: #1565c0;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 4px 0 rgba(0,188,212,0.04);
}
.service-areas-widget .btn-link {
  margin-top: 1.2em;
  font-size: 1.1em;
}

/* Testimonials section styles */
.testimonials-section {
  background: linear-gradient(135deg, #e0f7fa 0%, #f5f8fc 100%);
  border-radius: 1.5em;
  box-shadow: 0 2px 16px 0 rgba(0,188,212,0.07);
  padding: 3em 1.5em 2.5em 1.5em;
  margin: 3em auto 2em auto;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.testimonials-section h2 {
  color: #0a3d6b;
  font-size: 1.5em;
  margin-bottom: 1.5em;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.testimonial-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px 0 rgba(0,188,212,0.08);
  padding: 2em 1.5em 1.5em 1.5em;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid #00bcd4;
  border-bottom: 2px solid #ff6f00;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,114,255,0.13);
  transform: translateY(-6px) scale(1.03);
}
.testimonial-card p {
  font-size: 1.1em;
  color: #1565c0;
  margin-bottom: 1em;
  font-style: italic;
}
.testimonial-card span {
  color: #ff6f00;
  font-weight: 600;
  font-size: 1em;
}

/* How it works steps as grid */
.how-modern-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5em;
  justify-items: center;
  align-items: stretch;
}

/* Match how-it-works cards to services cards design */
.how-modern-card {
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2em 1.2em 1.5em 1.2em;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 0;
  border-top: none;
  border-bottom: none;
}
.how-modern-card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,114,255,0.13);
  transform: translateY(-6px) scale(1.03);
}
.how-modern-icon {
  width: 64px;
  height: 64px;
  font-size: 2.2em;
  margin-bottom: 1em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0,188,212,0.07);
  margin-left: auto;
  margin-right: auto;
}
.how-modern-card h3 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: #0a3d6b;
}
.how-modern-card p {
  font-size: 1em;
  color: #444;
  margin: 0;
  margin-bottom: 1.2em;
}

.how-modern-title {
  text-align: center !important;
}
