:root {
  --d-bg: #f7faff;
  --d-bg-2: #edf4ff;
  --d-panel: rgba(255, 255, 255, 0.76);
  --d-panel-solid: #ffffff;
  --d-text: #10284d;
  --d-heading: #0a1f41;
  --d-muted: #657797;
  --d-line: rgba(72, 112, 177, 0.16);
  --d-blue: #4f7cff;
  --d-cyan: #4fc9ff;
  --d-blue-dark: #2f5de5;
  --d-success: #17b878;
  --d-danger: #d64f64;
  --d-shadow: 0 26px 84px rgba(48, 82, 140, 0.13);
  --d-shadow-soft: 0 14px 42px rgba(54, 89, 151, 0.09);
  --d-radius-xl: 34px;
  --d-radius-lg: 26px;
  --d-radius-md: 18px;
  --d-shell: min(1180px, calc(100% - 32px));
  --d-transition: 260ms ease;
}

html[data-doroob-theme="dark"] {
  --d-bg: #06101f;
  --d-bg-2: #0b1930;
  --d-panel: rgba(12, 27, 49, 0.76);
  --d-panel-solid: #0d1b30;
  --d-text: #e8f2ff;
  --d-heading: #ffffff;
  --d-muted: #9eb0cc;
  --d-line: rgba(157, 192, 242, 0.16);
  --d-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --d-shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--d-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(83, 150, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(78, 201, 255, 0.10), transparent 24%),
    var(--d-bg);
  transition: background var(--d-transition), color var(--d-transition);
}
body.admin-bar .doroob-header { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(79, 124, 255, 0.22); }

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 99999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--d-blue);
}

.doroob-shell { width: var(--d-shell); margin-inline: auto; }
.doroob-glass {
  background: var(--d-panel);
  border: 1px solid var(--d-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--d-shadow);
}
.doroob-section { padding: 88px 0; position: relative; }
.doroob-section-compact { padding: 48px 0; }
.doroob-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.doroob-section-header > div:first-child { max-width: 680px; }
.doroob-section-header h2,
.doroob-page-header h1 {
  margin: 12px 0 0;
  color: var(--d-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.24;
  letter-spacing: -1.2px;
}
.doroob-section-header p { max-width: 540px; margin: 0; color: var(--d-muted); line-height: 1.9; }
.doroob-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid var(--d-line);
  border-radius: 999px;
  color: var(--d-blue-dark);
  background: var(--d-panel);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--d-shadow-soft);
}
html[data-doroob-theme="dark"] .doroob-eyebrow { color: #96bdff; }
.doroob-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--d-cyan);
  box-shadow: 0 0 0 6px rgba(79, 201, 255, 0.13);
}
.doroob-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  transition: transform var(--d-transition), box-shadow var(--d-transition), background var(--d-transition), border-color var(--d-transition);
}
.doroob-button:hover { transform: translateY(-2px); }
.doroob-button-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--d-blue), var(--d-cyan));
  box-shadow: 0 13px 32px rgba(76, 124, 255, 0.27);
}
.doroob-button-secondary {
  color: var(--d-text);
  border-color: var(--d-line);
  background: var(--d-panel);
}
.doroob-icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--d-text);
  border: 1px solid var(--d-line);
  border-radius: 14px;
  background: var(--d-panel);
  transition: transform var(--d-transition), background var(--d-transition);
}
.doroob-icon-button:hover { transform: translateY(-2px); }

/* Header */
.doroob-header {
  position: sticky;
  top: 10px;
  z-index: 1000;
  padding: 10px 0 0;
}
.doroob-navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 12px 9px 17px;
  border-radius: 24px;
}
.doroob-brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.doroob-brand-logo { display: block; }
.doroob-brand-logo img { width: 66px; max-height: 54px; object-fit: contain; display: block; }
.doroob-brand-copy strong { display: block; color: var(--d-heading); font-size: 17px; line-height: 1.2; }
.doroob-brand-copy span { display: block; margin-top: 3px; color: var(--d-muted); font-size: 11px; }
.doroob-primary-nav { margin-inline: auto; }
.doroob-menu,
.doroob-mobile-menu-list,
.doroob-footer-links,
.doroob-footer-contact { list-style: none; padding: 0; margin: 0; }
.doroob-menu { display: flex; align-items: center; gap: 27px; }
.doroob-menu > li { position: relative; }
.doroob-menu a { display: block; padding: 12px 0; color: var(--d-text); font-size: 14px; font-weight: 700; }
.doroob-menu > li > a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--d-blue), var(--d-cyan));
  transition: width var(--d-transition);
}
.doroob-menu > li:hover > a::after,
.doroob-menu .current-menu-item > a::after { width: 100%; }
.doroob-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: -18px;
  display: none;
  min-width: 220px;
  padding: 12px;
  list-style: none;
  border: 1px solid var(--d-line);
  border-radius: 18px;
  background: var(--d-panel-solid);
  box-shadow: var(--d-shadow-soft);
}
.doroob-menu li:hover > .sub-menu { display: block; }
.doroob-menu .sub-menu a { padding: 9px 10px; border-radius: 10px; }
.doroob-menu .sub-menu a:hover { background: rgba(79, 124, 255, 0.08); }
.doroob-nav-actions { display: flex; align-items: center; gap: 9px; }
.doroob-language-switch { font-size: 12px; font-weight: 800; }
.doroob-menu-toggle { display: none; grid-template-rows: repeat(3, 2px); align-content: center; gap: 4px; }
.doroob-menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.doroob-mobile-nav { margin-top: 8px; padding: 12px; border-radius: 20px; }
.doroob-mobile-menu-list li + li { border-top: 1px solid var(--d-line); }
.doroob-mobile-menu-list a { display: block; padding: 13px 8px; font-weight: 700; }

/* Hero */
.doroob-hero-wrap { padding: 18px 0 0; }
.doroob-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 64px 64px 54px;
  border: 1px solid var(--d-line);
  border-radius: var(--d-radius-xl);
  background:
    linear-gradient(120deg, rgba(246, 250, 255, 0.97) 0%, rgba(255,255,255,0.80) 46%, rgba(232, 244, 255, 0.78) 100%);
  box-shadow: var(--d-shadow);
}
html[data-doroob-theme="dark"] .doroob-hero {
  background: linear-gradient(120deg, rgba(9, 23, 44, 0.98), rgba(8, 17, 31, 0.92) 48%, rgba(14, 35, 60, 0.90));
}
.doroob-hero-video,
.doroob-hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.doroob-hero-video { object-fit: cover; opacity: 0.20; }
.doroob-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248,251,255,0.96) 0%, rgba(248,251,255,0.86) 45%, rgba(248,251,255,0.26) 100%),
    radial-gradient(circle at 80% 20%, rgba(79, 124, 255, 0.18), transparent 28%);
}
html[data-doroob-theme="dark"] .doroob-hero::before {
  background: linear-gradient(90deg, rgba(6,16,31,0.98) 0%, rgba(6,16,31,0.80) 50%, rgba(6,16,31,0.20) 100%);
}
.doroob-hero-copy,
.doroob-hero-visual { position: relative; z-index: 2; }
.doroob-hero-copy h1 {
  margin: 23px 0 18px;
  color: var(--d-heading);
  font-size: clamp(49px, 6vw, 82px);
  line-height: 1.08;
  letter-spacing: -2.2px;
}
.doroob-gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #102a56 8%, #7d9abd 45%, #0f264d 76%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-doroob-theme="dark"] .doroob-gradient-text {
  background: linear-gradient(135deg, #ffffff 5%, #8ac6ff 48%, #e4f1ff 82%);
  -webkit-background-clip: text;
  background-clip: text;
}
.doroob-hero-copy > p { max-width: 590px; margin: 0; color: var(--d-muted); font-size: 18px; line-height: 2; }
.doroob-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.doroob-hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--d-muted); font-size: 13px; }
.doroob-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.doroob-hero-trust span::before { content: "✓"; color: var(--d-success); font-weight: 800; }
.doroob-hero-visual { min-height: 505px; }
.doroob-portrait {
  position: absolute;
  inset: 14px 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 150px 28px 74px 28px;
  background: linear-gradient(135deg, #edf5ff, #fff);
  box-shadow: 0 34px 92px rgba(44, 85, 151, 0.24);
}
.doroob-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; transform: scale(1.04); }
.doroob-floating-card {
  position: absolute;
  z-index: 3;
  min-width: 178px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--d-panel);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--d-shadow-soft);
  animation: doroobFloat 6s ease-in-out infinite;
}
.doroob-floating-card small { display: block; color: var(--d-muted); font-size: 12px; }
.doroob-floating-card strong { display: block; margin-top: 3px; color: var(--d-heading); font-size: 27px; }
.doroob-card-growth { bottom: 82px; left: -25px; }
.doroob-card-trust { right: -19px; bottom: 10px; animation-delay: -2s; }
.doroob-3d-cube {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(112,173,255,0.24));
  box-shadow: inset -18px -18px 38px rgba(58,130,255,0.14), 0 25px 70px rgba(63,127,226,0.22);
  transform: rotate(17deg);
  animation: doroobCube 6.5s ease-in-out infinite;
}
.doroob-3d-cube::before { content: "DA"; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(39,82,146,0.58); font-size: 27px; font-weight: 800; transform: rotate(-17deg); }
.doroob-orbit {
  position: absolute;
  width: 260px;
  height: 95px;
  right: -46px;
  top: 120px;
  border: 1px solid rgba(79,124,255,0.26);
  border-radius: 50%;
  transform: rotate(-25deg);
}
.doroob-orbit::after { content: ""; position: absolute; width: 13px; height: 13px; top: 2px; left: 73px; border-radius: 50%; background: var(--d-cyan); box-shadow: 0 0 24px var(--d-cyan); }
@keyframes doroobFloat { 50% { transform: translateY(-14px); } }
@keyframes doroobCube { 50% { transform: translateY(-13px) rotate(20deg); } }

/* Statistics */
.doroob-stats { margin-top: 20px; padding: 26px 24px; border-radius: 26px; display: grid; grid-template-columns: repeat(4, 1fr); }
.doroob-stat { text-align: center; padding: 8px 16px; border-inline-end: 1px solid var(--d-line); }
.doroob-stat:last-child { border-inline-end: 0; }
.doroob-stat strong { display: block; color: var(--d-heading); font-size: 31px; line-height: 1.25; }
.doroob-stat span { display: block; margin-top: 4px; color: var(--d-muted); font-size: 13px; }

/* Cards and services */
.doroob-grid { display: grid; gap: 17px; }
.doroob-services-grid { grid-template-columns: repeat(4, 1fr); }
.doroob-service-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 25px;
  border-radius: 24px;
  transition: transform var(--d-transition), border-color var(--d-transition), box-shadow var(--d-transition);
}
.doroob-service-card:hover { transform: translateY(-8px); border-color: rgba(79,124,255,0.35); }
.doroob-service-number { color: var(--d-blue); font-size: 12px; font-weight: 800; }
.doroob-service-icon {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 31px;
  background: linear-gradient(135deg, rgba(79,201,255,0.31), rgba(255,255,255,0.58));
  transform: rotate(26deg);
  box-shadow: inset -12px -15px 28px rgba(79,124,255,0.12);
}
.doroob-service-icon::before { content: attr(data-letter); position: absolute; inset: 0; display: grid; place-items: center; color: rgba(38,80,143,0.48); font-size: 27px; font-weight: 800; transform: rotate(-26deg); }
.doroob-service-card h3 { margin: 54px 0 10px; color: var(--d-heading); font-size: 20px; }
.doroob-service-card p { margin: 0; color: var(--d-muted); font-size: 14px; line-height: 1.9; }
.doroob-service-card a { display: inline-flex; margin-top: 18px; color: var(--d-blue-dark); font-size: 13px; font-weight: 800; }

/* Process */
.doroob-process-grid { grid-template-columns: repeat(4, 1fr); }
.doroob-process-step { padding: 27px 23px; border-radius: 24px; }
.doroob-process-step > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--d-blue), var(--d-cyan)); box-shadow: 0 12px 30px rgba(76,124,255,0.23); }
.doroob-process-step h3 { margin: 20px 0 8px; color: var(--d-heading); }
.doroob-process-step p { margin: 0; color: var(--d-muted); font-size: 14px; line-height: 1.85; }

/* Projects */
.doroob-projects-grid { grid-template-columns: 1.18fr 0.91fr 0.91fr; }
.doroob-project-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(155deg, #193862, #07182f);
  box-shadow: var(--d-shadow-soft);
}
.doroob-project-card:nth-child(2n) { background: linear-gradient(155deg, #8da0b8, #243c60); }
.doroob-project-card:nth-child(3n) { background: linear-gradient(155deg, #244e88, #65aaff); }
.doroob-project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.52; transition: transform 650ms ease; }
.doroob-project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,32,0.92), rgba(3,15,32,0.05) 72%); }
.doroob-project-card:hover img { transform: scale(1.055); }
.doroob-project-content { position: relative; z-index: 2; }
.doroob-project-content small { opacity: 0.76; }
.doroob-project-content h3 { margin: 8px 0 7px; font-size: 24px; }
.doroob-project-content p { margin: 0; opacity: 0.86; font-size: 14px; line-height: 1.8; }

/* Client logos */
.doroob-logo-marquee { overflow: hidden; padding: 20px 0; border-radius: 23px; }
.doroob-logo-track { width: max-content; display: flex; align-items: center; gap: 64px; padding-inline: 32px; animation: doroobMarquee 28s linear infinite; }
.doroob-logo-marquee:hover .doroob-logo-track { animation-play-state: paused; }
.doroob-client-logo { min-width: 150px; height: 58px; display: grid; place-items: center; color: var(--d-muted); font-weight: 800; filter: grayscale(1); opacity: 0.75; }
.doroob-client-logo img { max-width: 138px; max-height: 54px; object-fit: contain; }
@keyframes doroobMarquee { to { transform: translateX(50%); } }
.doroob-lang-en .doroob-logo-track { animation-direction: reverse; }

/* Testimonials */
.doroob-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.doroob-testimonial { padding: 25px; border-radius: 24px; }
.doroob-testimonial-stars { color: #f0b843; letter-spacing: 2px; }
.doroob-testimonial blockquote { margin: 16px 0 20px; color: var(--d-text); font-size: 15px; line-height: 1.95; }
.doroob-testimonial-person { display: flex; align-items: center; gap: 11px; }
.doroob-testimonial-person img { width: 47px; height: 47px; object-fit: cover; border-radius: 15px; }
.doroob-testimonial-person strong { display: block; color: var(--d-heading); }
.doroob-testimonial-person span { display: block; color: var(--d-muted); font-size: 12px; }

/* FAQ */
.doroob-faq-list { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.doroob-faq-item { border-radius: 18px; overflow: hidden; }
.doroob-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; border: 0; color: var(--d-heading); background: transparent; text-align: start; font-weight: 800; }
.doroob-faq-question::after { content: "+"; flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; color: var(--d-blue); background: rgba(79,124,255,0.10); font-size: 21px; transition: transform var(--d-transition); }
.doroob-faq-item.is-open .doroob-faq-question::after { transform: rotate(45deg); }
.doroob-faq-answer { display: none; padding: 0 21px 20px; color: var(--d-muted); line-height: 1.9; }
.doroob-faq-item.is-open .doroob-faq-answer { display: block; }

/* CTA */
.doroob-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
  padding: 50px 54px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(79,124,255,0.14), rgba(79,201,255,0.05)), var(--d-panel);
}
.doroob-cta::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -65px;
  bottom: -185px;
  border: 1px solid rgba(79,124,255,0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(79,201,255,0.13);
}
.doroob-cta h2 { margin: 15px 0 12px; color: var(--d-heading); font-size: clamp(34px,4vw,48px); line-height: 1.3; }
.doroob-cta p { max-width: 650px; margin: 0 0 23px; color: var(--d-muted); line-height: 1.9; }
.doroob-cta-crystal { position: relative; min-height: 250px; }
.doroob-cta-crystal > div {
  position: absolute;
  width: 190px;
  height: 190px;
  top: 25px;
  left: 20%;
  border-radius: 45px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(85,153,255,0.23));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: inset -28px -34px 60px rgba(58,130,255,0.18), 0 32px 90px rgba(63,127,226,0.24);
  transform: rotate(25deg);
  animation: doroobCube 7s ease-in-out infinite;
}
.doroob-cta-crystal > div::after { content: "DA"; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(26,69,136,0.52); font-size: 45px; font-weight: 800; transform: rotate(-25deg); }

/* About */
.doroob-page-intro { padding: 44px 0 20px; }
.doroob-page-intro-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 52px;
  border-radius: 32px;
}
.doroob-page-intro-card::after { content: ""; position: absolute; width: 340px; height: 340px; left: -100px; bottom: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(79,201,255,0.25), transparent 70%); }
.doroob-page-intro-card h1 { max-width: 820px; margin: 20px 0 12px; color: var(--d-heading); font-size: clamp(43px,5vw,68px); line-height: 1.2; }
.doroob-page-intro-card p { max-width: 740px; margin: 0; color: var(--d-muted); font-size: 17px; line-height: 2; }
.doroob-about-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.doroob-about-copy,
.doroob-about-values { padding: 34px; border-radius: 27px; }
.doroob-about-copy h2 { color: var(--d-heading); font-size: 38px; margin: 0 0 15px; }
.doroob-about-copy p { color: var(--d-muted); line-height: 2; }
.doroob-values-list { display: grid; gap: 14px; }
.doroob-value { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: start; }
.doroob-value > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg,var(--d-blue),var(--d-cyan)); font-weight: 800; }
.doroob-value h3 { margin: 0 0 4px; color: var(--d-heading); font-size: 17px; }
.doroob-value p { margin: 0; color: var(--d-muted); font-size: 13px; line-height: 1.8; }

/* Contact and forms */
.doroob-contact-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.doroob-contact-info { padding: 28px; border-radius: 25px; position: sticky; top: 108px; }
.doroob-contact-info h2 { margin: 0 0 10px; color: var(--d-heading); font-size: 30px; }
.doroob-contact-info > p { margin: 0 0 22px; color: var(--d-muted); line-height: 1.9; }
.doroob-contact-item { display: flex; gap: 12px; padding: 15px 0; border-top: 1px solid var(--d-line); }
.doroob-contact-item:first-of-type { border-top: 0; }
.doroob-contact-item > span { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; color: var(--d-blue); background: rgba(79,124,255,0.10); }
.doroob-contact-item strong { display: block; color: var(--d-heading); }
.doroob-contact-item small { color: var(--d-muted); }
.doroob-form-card { padding: 30px; border-radius: 27px; }
.doroob-tabs { display: flex; gap: 9px; margin-bottom: 24px; }
.doroob-tab { flex: 1; min-height: 45px; padding: 8px 15px; border: 1px solid var(--d-line); border-radius: 13px; color: var(--d-text); background: transparent; font-weight: 800; }
.doroob-tab.is-active { color: #fff; border-color: transparent; background: linear-gradient(100deg,var(--d-blue),var(--d-cyan)); }
.doroob-tab-panel[hidden] { display: none !important; }
.doroob-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.doroob-field { display: grid; gap: 7px; }
.doroob-field-full { grid-column: 1 / -1; }
.doroob-field label { color: var(--d-heading); font-size: 13px; font-weight: 700; }
.doroob-field input,
.doroob-field select,
.doroob-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--d-text);
  border: 1px solid var(--d-line);
  border-radius: 13px;
  outline: 0;
  background: rgba(255,255,255,0.52);
  transition: border-color var(--d-transition), box-shadow var(--d-transition);
}
html[data-doroob-theme="dark"] .doroob-field input,
html[data-doroob-theme="dark"] .doroob-field select,
html[data-doroob-theme="dark"] .doroob-field textarea { background: rgba(8,19,35,0.52); }
.doroob-field input:focus,
.doroob-field select:focus,
.doroob-field textarea:focus { border-color: var(--d-blue); box-shadow: 0 0 0 4px rgba(79,124,255,0.10); }
.doroob-field textarea { min-height: 125px; resize: vertical; }
.doroob-file-note { color: var(--d-muted); font-size: 11px; }
.doroob-form-status { min-height: 24px; margin: 14px 0 0; font-size: 13px; }
.doroob-form-status.is-success { color: var(--d-success); }
.doroob-form-status.is-error { color: var(--d-danger); }
.doroob-form .doroob-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.doroob-map { min-height: 410px; overflow: hidden; border-radius: 28px; }
.doroob-map iframe { width: 100%; height: 410px; border: 0; display: block; }

/* Generic pages */
.doroob-page-shell { min-height: 60vh; }
.doroob-page-header { padding: 76px 0 30px; }
.doroob-page-content:not(.is-elementor) { padding-bottom: 80px; }
.doroob-prose { max-width: 900px; }
.doroob-prose p,
.doroob-prose li { color: var(--d-muted); line-height: 2; }
.doroob-prose h2,
.doroob-prose h3 { color: var(--d-heading); }
.doroob-prose a { color: var(--d-blue-dark); text-decoration: underline; }
.doroob-archive { padding: 70px 0; }
.doroob-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.doroob-post-card { overflow: hidden; border-radius: 24px; }
.doroob-post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.doroob-post-card > div { padding: 22px; }
.doroob-error-page { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.doroob-error-page > div { width: min(650px,100%); padding: 55px 30px; border-radius: 30px; }
.doroob-error-page span { color: var(--d-blue); font-size: 76px; font-weight: 800; }
.doroob-error-page h1 { color: var(--d-heading); }
.doroob-error-page p { color: var(--d-muted); }

/* Footer */
.doroob-footer { padding: 30px 0 36px; }
.doroob-footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 34px; padding: 34px; border-radius: 28px; }
.doroob-footer-brand .doroob-brand-logo img { width: 125px; max-height: 76px; }
.doroob-footer-brand p { max-width: 430px; margin: 14px 0 0; color: var(--d-muted); line-height: 1.9; }
.doroob-footer h2 { margin: 0 0 12px; color: var(--d-heading); font-size: 17px; }
.doroob-footer-links li + li,
.doroob-footer-contact li + li { margin-top: 8px; }
.doroob-footer-links a,
.doroob-footer-contact { color: var(--d-muted); font-size: 13px; }
.doroob-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 4px 0; color: var(--d-muted); font-size: 12px; }
.doroob-legal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.doroob-floating-whatsapp {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 19px;
  background: #25d366;
  box-shadow: 0 14px 40px rgba(37,211,102,0.34);
  transition: transform var(--d-transition);
}
.doroob-lang-en .doroob-floating-whatsapp { right: auto; left: 22px; }
.doroob-floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); }
.doroob-floating-whatsapp svg { width: 28px; height: 28px; }
.doroob-audio-control { position: fixed; z-index: 1190; right: 22px; bottom: 90px; }
.doroob-lang-en .doroob-audio-control { right: auto; left: 22px; }
.doroob-cookie-banner {
  position: fixed;
  z-index: 1300;
  left: 50%;
  bottom: 18px;
  width: min(920px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 18px;
  border: 1px solid var(--d-line);
  border-radius: 20px;
  background: var(--d-panel-solid);
  box-shadow: var(--d-shadow);
}
.doroob-cookie-banner strong { color: var(--d-heading); }
.doroob-cookie-banner p { margin: 4px 0 0; color: var(--d-muted); font-size: 12px; line-height: 1.7; }
.doroob-cookie-actions { display: flex; flex: 0 0 auto; gap: 9px; }

/* Reveal */
[data-doroob-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 720ms ease, transform 720ms ease; }
[data-doroob-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-doroob-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .doroob-primary-nav { display: none; }
  .doroob-menu-toggle { display: grid; }
  .doroob-hero { grid-template-columns: 1fr; padding: 52px 35px; }
  .doroob-hero-copy { max-width: 760px; }
  .doroob-hero-visual { min-height: 460px; }
  .doroob-portrait { inset: 10px 8% 0; }
  .doroob-services-grid,
  .doroob-process-grid { grid-template-columns: repeat(2, 1fr); }
  .doroob-projects-grid { grid-template-columns: 1fr 1fr; }
  .doroob-project-card:first-child { grid-column: 1 / -1; }
  .doroob-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .doroob-contact-grid { grid-template-columns: 1fr; }
  .doroob-contact-info { position: static; }
}

@media (max-width: 782px) {
  body.admin-bar .doroob-header { top: 46px; }
  .doroob-section { padding: 68px 0; }
  .doroob-section-header { display: block; }
  .doroob-section-header p { margin-top: 12px; }
  .doroob-desktop-cta,
  .doroob-brand-copy { display: none; }
  .doroob-navbar { padding: 8px 10px; }
  .doroob-brand-logo img { width: 58px; }
  .doroob-hero { min-height: auto; padding: 46px 25px 34px; }
  .doroob-hero-copy h1 { font-size: 52px; }
  .doroob-hero-copy > p { font-size: 15px; }
  .doroob-hero-visual { min-height: 390px; }
  .doroob-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .doroob-stat:nth-child(2) { border-inline-end: 0; }
  .doroob-stat:nth-child(-n+2) { border-bottom: 1px solid var(--d-line); }
  .doroob-testimonials-grid { grid-template-columns: 1fr; }
  .doroob-cta { grid-template-columns: 1fr; padding: 38px 28px; }
  .doroob-cta-crystal { display: none; }
  .doroob-about-grid { grid-template-columns: 1fr; }
  .doroob-page-intro-card { padding: 38px 27px; }
  .doroob-footer-grid { grid-template-columns: 1fr 1fr; }
  .doroob-footer-brand { grid-column: 1 / -1; }
  .doroob-cookie-banner { align-items: flex-start; flex-direction: column; }
  .doroob-cookie-actions { width: 100%; }
  .doroob-cookie-actions .doroob-button { flex: 1; }
}

@media (max-width: 560px) {
  :root { --d-shell: min(100% - 18px, 1180px); --d-radius-xl: 26px; }
  .doroob-nav-actions { gap: 6px; }
  .doroob-icon-button { width: 41px; height: 41px; }
  .doroob-hero { padding: 40px 18px 27px; border-radius: 26px; }
  .doroob-hero-copy h1 { font-size: 44px; letter-spacing: -1.2px; }
  .doroob-hero-actions .doroob-button { flex: 1; min-width: 145px; }
  .doroob-hero-trust { gap: 8px 14px; }
  .doroob-hero-visual { min-height: 340px; }
  .doroob-portrait { inset: 24px 0 0; border-radius: 90px 22px 55px 22px; }
  .doroob-3d-cube { width: 82px; height: 82px; }
  .doroob-3d-cube::before { font-size: 22px; }
  .doroob-floating-card { min-width: 140px; padding: 11px 13px; }
  .doroob-floating-card strong { font-size: 21px; }
  .doroob-card-growth { left: 0; bottom: 58px; }
  .doroob-card-trust { right: 0; }
  .doroob-stats { padding: 16px 12px; }
  .doroob-stat { padding: 13px 8px; }
  .doroob-stat strong { font-size: 25px; }
  .doroob-services-grid,
  .doroob-process-grid,
  .doroob-projects-grid,
  .doroob-form-grid,
  .doroob-post-grid { grid-template-columns: 1fr; }
  .doroob-project-card:first-child { grid-column: auto; }
  .doroob-project-card { min-height: 330px; }
  .doroob-section-header h2 { font-size: 34px; }
  .doroob-tabs { flex-direction: column; }
  .doroob-form-card,
  .doroob-contact-info { padding: 22px 17px; }
  .doroob-field-full { grid-column: auto; }
  .doroob-footer-grid { grid-template-columns: 1fr; padding: 26px 20px; }
  .doroob-footer-brand { grid-column: auto; }
  .doroob-footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .doroob-floating-whatsapp { width: 54px; height: 54px; right: 12px; bottom: 12px; }
  .doroob-lang-en .doroob-floating-whatsapp { left: 12px; }
  .doroob-audio-control { right: 12px; bottom: 76px; }
  .doroob-lang-en .doroob-audio-control { left: 12px; }
}
.doroob-contact-item svg{width:21px;height:21px}.doroob-button svg{width:17px;height:17px}.doroob-social-links{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.doroob-social-links a{padding:6px 9px;border:1px solid var(--d-line);border-radius:9px;color:var(--d-muted);font-size:11px}.doroob-social-links a:hover{color:var(--d-blue);border-color:rgba(79,124,255,.34)}

/* =========================================================
   Doroob Arabia 1.2 — editor stability, leadership, music,
   registration and non-visual performance improvements.
   ========================================================= */

/* Elementor editor: reveal animations must never hide editable sections. */
body.doroob-elementor-preview [data-doroob-reveal],
body.elementor-editor-active [data-doroob-reveal],
.elementor-editor-active [data-doroob-reveal],
.elementor-editor-preview [data-doroob-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
body.doroob-elementor-preview .doroob-section,
body.doroob-elementor-preview .doroob-section-compact {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}
body.doroob-elementor-preview .doroob-hero-video,
body.doroob-elementor-preview .doroob-player-frame {
  display: none !important;
}

/* Offscreen rendering optimization. It does not alter layout or visual design. */
@supports (content-visibility: auto) {
  body:not(.doroob-elementor-preview) .doroob-section,
  body:not(.doroob-elementor-preview) .doroob-section-compact {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }
  body:not(.doroob-elementor-preview) .doroob-hero-wrap,
  body:not(.doroob-elementor-preview) .doroob-footer {
    content-visibility: visible;
  }
}

/* Cookie banner: author CSS must not override the hidden attribute. */
.doroob-cookie-banner[hidden] { display: none !important; }

/* Music player inside the hero. */
.doroob-hero-player {
  position: relative;
  width: min(520px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 44px minmax(88px, 122px);
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 16px 46px rgba(49, 86, 147, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
html[data-doroob-theme="dark"] .doroob-hero-player {
  background: rgba(11, 27, 49, 0.68);
  border-color: rgba(157,192,242,0.18);
}
.doroob-player-art {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 11px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 32%),
    linear-gradient(145deg, rgba(79,124,255,0.88), rgba(79,201,255,0.76));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.42);
}
.doroob-player-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,31,65,0.24));
}
.doroob-player-art span {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  top: 9px;
  right: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.88);
}
.doroob-player-art i {
  position: relative;
  z-index: 2;
  width: 4px;
  height: 15px;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  transform-origin: bottom;
  animation: doroobAudioBars 980ms ease-in-out infinite alternate;
  animation-play-state: paused;
}
.doroob-player-art i:nth-of-type(2) { height: 26px; animation-delay: -300ms; }
.doroob-player-art i:nth-of-type(3) { height: 20px; animation-delay: -560ms; }
.doroob-player-art i:nth-of-type(4) { height: 31px; animation-delay: -160ms; }
.doroob-hero-player.is-playing .doroob-player-art i { animation-play-state: running; }
@keyframes doroobAudioBars { from { transform: scaleY(.45); opacity: .65; } to { transform: scaleY(1); opacity: 1; } }
.doroob-hero-player.is-external-provider { grid-template-columns: 54px minmax(0, 1fr) 44px; }
.doroob-player-open { text-decoration: none; font-size: 20px; }
.doroob-player-copy { min-width: 0; }
.doroob-player-copy small { display: block; color: var(--d-muted); font-size: 10px; font-weight: 700; }
.doroob-player-copy strong { display: block; overflow: hidden; margin-top: 2px; color: var(--d-heading); font-size: 13px; white-space: nowrap; text-overflow: ellipsis; }
.doroob-player-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--d-blue), var(--d-cyan));
  box-shadow: 0 10px 24px rgba(76,124,255,.24);
}
.doroob-player-toggle .doroob-player-pause { display: none; }
.doroob-hero-player.is-playing .doroob-player-toggle .doroob-player-play { display: none; }
.doroob-hero-player.is-playing .doroob-player-toggle .doroob-player-pause { display: inline; }
.doroob-player-volume { display: flex; align-items: center; gap: 7px; color: var(--d-muted); }
.doroob-player-volume input { width: 100%; accent-color: var(--d-blue); }
.doroob-player-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  inset: auto auto 0 0;
  border: 0;
  opacity: .001;
  pointer-events: none;
}
.doroob-player-editor-note {
  position: absolute;
  inset-inline: 12px;
  bottom: 3px;
  color: var(--d-muted);
  font-size: 9px;
  text-align: center;
}

/* Founders / leadership cards. */
.doroob-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.doroob-founder-card {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--d-line);
  border-radius: 30px;
  background: var(--d-panel-solid);
  box-shadow: var(--d-shadow-soft);
}
.doroob-founder-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 510px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #17345f;
  text-align: start;
}
.doroob-founder-media,
.doroob-founder-media img,
.doroob-founder-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.doroob-founder-media img { object-fit: cover; object-position: center top; transition: filter 500ms ease, transform 700ms ease; }
.doroob-founder-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.84);
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.23), transparent 27%),
    linear-gradient(145deg, #244d85, #0b203f);
  font-size: 110px;
  font-weight: 800;
}
.doroob-founder-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(5,19,42,.9) 100%);
  transition: background 450ms ease;
}
.doroob-founder-front,
.doroob-founder-overlay {
  position: absolute;
  z-index: 2;
  inset-inline: 28px;
  bottom: 28px;
}
.doroob-founder-front { transition: opacity 320ms ease, transform 420ms ease; }
.doroob-founder-front strong,
.doroob-founder-overlay strong { display: block; font-size: 28px; line-height: 1.35; }
.doroob-founder-front small,
.doroob-founder-overlay small { display: block; margin-top: 4px; color: rgba(255,255,255,.76); font-size: 13px; }
.doroob-founder-front em,
.doroob-founder-overlay em { display: block; margin-top: 12px; color: rgba(255,255,255,.62); font-size: 11px; font-style: normal; }
.doroob-founder-overlay {
  top: 50%;
  bottom: auto;
  opacity: 0;
  transform: translateY(-38%);
  transition: opacity 350ms ease, transform 480ms ease;
}
.doroob-founder-overlay span { display: block; max-width: 520px; margin-top: 17px; color: rgba(255,255,255,.9); font-size: 14px; line-height: 2; }
.doroob-founder-card.is-open .doroob-founder-media img { filter: blur(13px) brightness(.52); transform: scale(1.08); }
.doroob-founder-card.is-open .doroob-founder-placeholder { filter: blur(12px) brightness(.55); transform: scale(1.06); }
.doroob-founder-card.is-open .doroob-founder-toggle::after { background: rgba(6,22,45,.56); }
.doroob-founder-card.is-open .doroob-founder-front { opacity: 0; transform: translateY(18px); }
.doroob-founder-card.is-open .doroob-founder-overlay { opacity: 1; transform: translateY(-50%); }

/* Footer payment and registration area. */
.doroob-footer-trust {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 24px;
  margin-top: 16px;
  padding: 24px 28px;
  border-radius: 24px;
}
.doroob-payment-area > strong,
.doroob-registration-area strong { display: block; color: var(--d-heading); font-size: 14px; }
.doroob-payment-image { width: min(560px, 100%); max-height: 72px; margin-top: 14px; object-fit: contain; object-position: right center; }
.doroob-lang-en .doroob-payment-image { object-position: left center; }
.doroob-payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.doroob-payment-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid var(--d-line);
  border-radius: 11px;
  color: var(--d-text);
  background: rgba(255,255,255,.46);
  font-size: 11px;
  font-weight: 800;
}
html[data-doroob-theme="dark"] .doroob-payment-badges span { background: rgba(8,19,35,.48); }
.doroob-registration-area { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.doroob-registration-area > div { min-width: 0; }
.doroob-registration-area span { display: block; margin-top: 6px; color: var(--d-muted); font-size: 11px; }
.doroob-tax-certificate { width: 84px; flex: 0 0 auto; text-align: center; }
.doroob-tax-certificate img { width: 84px; height: 64px; display: block; object-fit: cover; border: 1px solid var(--d-line); border-radius: 11px; background: #fff; }
.doroob-tax-certificate span { margin-top: 5px; font-size: 9px; }

@media (max-width: 782px) {
  .doroob-hero-player { grid-template-columns: 48px minmax(0,1fr) 42px; }
  .doroob-player-art { width: 48px; height: 48px; }
  .doroob-player-volume { grid-column: 1 / -1; padding-inline: 3px; }
  .doroob-founders-grid { grid-template-columns: 1fr; }
  .doroob-founder-card,
  .doroob-founder-toggle { min-height: 470px; }
  .doroob-footer-trust { grid-template-columns: 1fr; }
  .doroob-registration-area { justify-content: space-between; }
}

@media (max-width: 560px) {
  .doroob-hero-player { margin-top: 18px; border-radius: 17px; }
  .doroob-founder-card,
  .doroob-founder-toggle { min-height: 430px; }
  .doroob-founder-front,
  .doroob-founder-overlay { inset-inline: 21px; }
  .doroob-founder-front strong,
  .doroob-founder-overlay strong { font-size: 24px; }
  .doroob-footer-trust { padding: 22px 18px; }
}
