/* ===== Variables & Base ===== */
:root {
  --primary: #1870b8;
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #4b5563;
  --border: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --gov-outer-d: 380px;
  --gov-inner-d: 240px;
  --gov-card: 70px;
  --gov-center-d: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Graphik Arabic';
  src: url('../fonts/GRAPHIK ARABIC MEDIUM.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Base Body Styles */
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(145deg, #030303, #090b10, #0c141d, #10253a);
  line-height: 1.7;
  font-family: 'Graphik Arabic', sans-serif;
}

/* Language-specific body styles */
html:lang(en) body {
  font-family: 'Montserrat', sans-serif;
  direction: ltr;
}

/* English language support */
html:lang(en) {
  direction: ltr;
}

html:lang(en) .container,
html:lang(en) .header-inner,
html:lang(en) .nav-list,
html:lang(en) .hero-inner,
html:lang(en) .about-header,
html:lang(en) .strategy-header,
html:lang(en) .services-header,
html:lang(en) .projects-header,
html:lang(en) .subsidiaries-header,
html:lang(en) .text-section,
html:lang(en) .request-section,
html:lang(en) .contact-info-simple {
  text-align: left;
}

html:lang(en) .nav-link::before {
  right: auto;
  left: 0;
  border-radius: 0 2px 2px 0;
}

html:lang(en) .governance-content .list li {
  padding-right: 0;
  padding-left: 24px;
  text-align: left;
}

html:lang(en) .governance-content .list li::before {
  right: auto;
  left: 0;
}

html:lang(en) .sub-title {
  padding-right: 0;
  padding-left: 15px;
  text-align: left;
}

html:lang(en) .sub-title::before {
  right: auto;
  left: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px dashed var(--primary);
  outline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(2,6,23,0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(2,6,23,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  padding-block: 8px;
  padding-inline: 6px;
  border-block-end: 2px solid transparent;
  color: #fff !important;
  font-weight: 700 !important;
  transition: border-color .15s ease;
}

.nav-link:hover,
.nav-link.active {
  border-block-end-color: #fff;
}

/* Language Switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.site-header.scrolled .lang-switch {
  background: #f5a623;
  border: none;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.25);
}

.site-header.scrolled .lang-switch:hover {
  background: #f5a623;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/Hero-section_L.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  color: #fff;
  text-align: center;
  max-width: 900px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-subtitle {
  margin: 0 auto 32px;
  max-width: 800px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.8;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Hero Badges & CTA */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-block: 40px 60px;
}

.badge {
  font-size: .85rem;
  padding: .5rem .75rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #121315;
  border-color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem; 
  border: 1px solid #f5a623; 
  border-radius: 10px;   
  font-size: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: #121315;
  border-color: #fff;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===== Sections Common Styles ===== */
.section {
  padding-block: 48px;
  border-bottom: 0 !important;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(20px, 3vw, 30px);
  color: #fff;
  text-align: center;
}

/* ===== About Section ===== */
.about-section {
  position: relative;
  background: #060502;
  overflow: hidden;
  text-align: center;
}

.about-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-content {
  line-height: 1.8;
  color: #fff;
}

.about-content p {
  margin-bottom: 20px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fact-card {
  background: #222529;
  border-radius: 16px;
  padding: 50px 20px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(24, 112, 184, 0.15);
}

.icon-circle {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #1870b8, #0f4a7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.icon-circle i {
  color: white;
  font-size: 1.5rem;
}

.fact-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 20px 0 12px;
}

.fact-text {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

/* ===== Strategy Section ===== */
.strategy-section {
  background: #060502;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.strategy-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Horizontal Timeline */
.horizontal-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.timeline-track {
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #1870b8, #f5a623);
  transition: width 1.5s ease;
  border-radius: 2px;
}

.timeline-points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.dot-1, .dot-3 {
  background: linear-gradient(145deg, #1870b8, #0f4a7a);
  box-shadow: 0 4px 15px rgba(24, 112, 184, 0.3);
}

.dot-2, .dot-4 {
  background: linear-gradient(145deg, #f5a623, #d1891a);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.timeline-item.active .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(24, 112, 184, 0.6);
}

.timeline-item.active .dot-2,
.timeline-item.active .dot-4 {
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.6);
}

.pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0;
}

.timeline-item.active .pulse-effect {
  animation: glow-pulse 2s infinite;
}

.dot-1 .pulse-effect,
.dot-3 .pulse-effect {
  border: 2px solid #1870b8;
}

.dot-2 .pulse-effect,
.dot-4 .pulse-effect {
  border: 2px solid #f5a623;
}

@keyframes glow-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.dot-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.timeline-content {
  text-align: center;
  max-width: 250px;
  padding: 0 15px;
}

.timeline-content h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-content h3 {
  color: #1870b8;
  transform: translateY(-5px);
}

.timeline-item.active .dot-2 .timeline-content h3,
.timeline-item.active .dot-4 .timeline-content h3 {
  color: #f5a623;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-content p {
  color: #fff;
  transform: translateY(-5px);
}

/* ===== Services Section ===== */
.services-section {
  position: relative;
  background: #060502;
  background-image: url('../images/service_pattern.svg');
  background-size: contain;
  text-align: center;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #222529;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(24, 112, 184, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card.featured {
  background: #1870b8;
  color: #ffffff;
}

.service-card.featured .service-card-title,
.service-card.featured .service-card-text {
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(24, 112, 184, 0.15);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.service-card-text {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.service-card.featured .service-card-text {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Projects Section ===== */
.projects-section {
  background: #060502;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -390px;
  transform: translateY(-50%);
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 50%,
    rgba(240, 245, 255, 0.06) 0%,
    rgba(60, 90, 130, 0.14) 28%,
    rgba(24, 112, 184, 0.24) 52%,
    rgba(20, 25, 30, 0.88) 86%,
    rgba(8, 10, 12, 0.98) 100%
  );
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 52%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 52%, transparent 100%);
  filter: blur(8px);
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.projects-header {
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.projects-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.project-row {
  display: flex;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

.project-row:first-child {
  border-radius: 20px 20px 0 0;
}

.project-row:last-child {
  border-radius: 0 0 20px 20px;
}

.project-card {
  flex: 1;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060502;
  border-radius: 0;
}

@media (min-width: 769px) {
  .project-card:hover {
    background-color: #222529;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: 3;
  }
  
  .project-card:hover .project-title,
  .project-card:hover .project-description {
    transform: translateY(-3px);
  }
  
  .project-card:hover .project-description {
    color: rgba(255, 255, 255, 0.9);
  }
}

.project-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.project-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 25px;
  line-height: 1.6;
  flex: 1;
  transition: all 0.3s ease;
}

.project-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  border: 2px solid #1870b8;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1870b8;
  transition: left 0.3s ease;
  z-index: -1;
}

.project-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 112, 184, 0.3);
}

.project-btn:hover::before {
  left: 0;
}

/* ===== Subsidiaries Section ===== */
.subsidiaries-section {
  background: #060502;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subsidiaries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.3) 1px, transparent 2px);
  background-size: 300px 300px, 400px 400px, 350px 350px, 320px 320px, 280px 280px, 380px 380px;
  background-position: 0 0, 100px 150px, 200px 300px, 300px 100px, 150px 200px, 250px 50px;
  z-index: 1;
  pointer-events: none;
}

.subsidiaries-section .container {
  position: relative;
  z-index: 2;
}

.subsidiaries-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.subsidiary-card {
  background: #E8E8E8;
  border-radius: 16px;
  padding: 5px 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(24, 112, 184, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

.subsidiary-card.card-down {
  margin-top: 20px;
}

.subsidiary-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(24, 112, 184, 0.2);
}

.subsidiary-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.subsidiary-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  text-align: right;
  flex: 1;
}

/* ===== Governance Section ===== */
.governance-section {
  background: #060502;
  padding: 80px 0;
  color: white;
  overflow: hidden;
}

.governance-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.text-card {
  background: #060502;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.text-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
}

.text-section {
  text-align: right;
}

.governance-content {
  line-height: 1.8;
  color: white;
}

.lead-text {
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  line-height: 1.7;
}

.sub-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0 20px 0;
  position: relative;
  padding-right: 15px;
}

.sub-title::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.governance-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
  line-height: 1.7;
}

.governance-content .list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.governance-content .list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: white;
  line-height: 1.6;
}

.governance-content .list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.indicator-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.indicator-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.indicator-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.indicator-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Governance Circles */
.illustration-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circles-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.outer-circle,
.inner-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.outer-circle {
  width: 380px;
  height: 380px;
  border-color: rgba(255, 255, 255, 0.3);
}

.inner-circle {
  width: 240px;
  height: 240px;
  border-color: rgba(255, 255, 255, 0.2);
}

.circle-rotate {
  animation: rotate-circle 40s linear infinite;
}

.circle-rotate-reverse {
  animation: rotate-circle-reverse 30s linear infinite;
}

@keyframes rotate-circle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-circle-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.circle-card {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #222529;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
}

.circle-card:hover .card-icon i {
  transform: scale(1.2);
  color: var(--primary);
}

.outer-circle .card-1 { top: -35px; left: 50%; transform: translateX(-50%); }
.outer-circle .card-2 { top: 50%; right: -35px; transform: translateY(-50%); }
.outer-circle .card-3 { bottom: -35px; left: 50%; transform: translateX(-50%); }

.inner-circle .card-4 { top: -35px; left: 50%; transform: translateX(-50%); }
.inner-circle .card-5 { top: 50%; right: -35px; transform: translateY(-50%); }
.inner-circle .card-6 { bottom: -35px; left: 50%; transform: translateX(-50%); }

.center-point {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.center-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.center-point:hover .center-logo {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== Contact Section ===== */
.contact-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(to bottom, #060502, #222529);
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  height: 100%;
}

.contact-logo {
  flex-shrink: 0;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-simple {
  text-align: right;
}

.contact-info-simple .contact-info-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 15px;
  line-height: 1.6;
  padding: 8px 0;
}

.contact-info-simple .contact-info-text:first-child {
  font-weight: 600;
  color: #fff;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.request-section {
  text-align: right;
  padding: 0;
}

.request-title {
  font-size: 2rem;
  color: white;
  margin: 0 0 20px;
  font-weight: 700;
}

.request-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 35px;
  line-height: 1.7;
}

.request-cta {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.request-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  border: 2px solid transparent;
}

.request-cta .btn-primary {
  background: var(--primary);
  color: #fff;
}

.request-cta .btn-primary:hover {
  background: #121315;
  border-color: #fff;
}

.request-cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem; 
  border: 1px solid #f5a623; 
  border-radius: 10px;   
  font-size: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.request-cta .btn-ghost:hover {
  background: #121315;
  border-color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .section-title {
    font-size: clamp(24px, 3vw, 28px);
  }
  
  .hero-title {
    font-size: clamp(28px, 4vw, 42px);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .container {
    padding-inline: 15px;
  }
}

@media (max-width: 992px) {
  .hero {
    background-image: url('../images/Hero-section_M.jpg');
  }

  .site-header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: saturate(180%) blur(20px);
  }

  .header-inner {
    min-height: 60px;
  }

  .brand-logo {
    width: auto;
    height: 55px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
  }

  .nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #060502;
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    z-index: 1001;
    overflow-y: auto;
  }

  html:lang(en) .nav {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
  }

  .nav.open {
    display: flex;
    transform: translateX(0);
  }

  html:lang(en) .nav.open {
    transform: translateX(0);
  }

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-brand-logo {
    width: 80px;
    height: 44px;
    object-fit: contain;
  }

  .nav-brand-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .nav-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
  }

  .nav-lang-switch:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 15px 0;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary);
    border-radius: 2px 0 0 2px;
    transition: height 0.3s ease;
  }

  html:lang(en) .nav-link::before {
    right: auto;
    left: 0;
    border-radius: 0 2px 2px 0;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    padding-right: 30px;
  }

  html:lang(en) .nav-link:hover,
  html:lang(en) .nav-link.active {
    padding-right: 25px;
    padding-left: 30px;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
    height: 20px;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
  }

  .nav-overlay.active {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .about-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .fact-title {
    font-size: 1.1rem;
  }
  
  .fact-text {
    font-size: 0.85rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .service-card-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* === التعديل هنا === */
  .projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .project-row {
    display: contents; /* هذا يحل المشكلة */
  }
  
  .project-card {
    min-height: 220px;
    padding: 25px 20px;
    border-radius: 12px !important;
    margin-bottom: 0;
  }
  /* === نهاية التعديل === */

  .project-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .project-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .project-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .subsidiary-card {
    padding: 15px 20px;
    min-height: 90px;
  }
  
  .subsidiary-logo {
    width: 90px;
    height: 90px;
  }
  
  .subsidiary-name {
    font-size: 1rem;
  }

  .governance-content-wrapper {
    gap: 40px;
  }
  
  .text-card {
    padding: 30px 25px;
  }
  
  .lead-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .governance-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .governance-content .list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .sub-title {
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
  }
  
  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  
  .indicator-item {
    padding: 15px 12px;
  }
  
  .indicator-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .indicator-text {
    font-size: 0.8rem;
  }

  .contact-content-wrapper {
    gap: 40px;
  }
  
  .contact-main-content {
    gap: 25px;
  }
  
  .logo-img {
    width: 120px;
  }
  
  .contact-info-simple .contact-info-text {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .contact-info-simple .contact-info-text:first-child {
    font-size: 1.1rem;
  }
  
  .request-title {
    font-size: 1.8rem;
  }
  
  .request-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .request-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .subsidiary-card.card-down {
    margin-top: 0;
  }
  
  .contact-main-content {
    gap: 25px;
  }
  
  .timeline-track {
    left: 5%;
    right: 5%;
  }
  
  .timeline-content {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('../images/Hero-section_S.jpg');
  }

  .nav {
    width: 280px;
  }

  .brand-logo {
    width: auto;
    height: 50px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-header {
    padding: 18px 20px;
  }

  .nav-brand-logo {
    width: 70px;
    height: 38px;
  }

  .nav-brand-text {
    font-size: 1rem;
  }

  .nav-lang-switch {
    padding: 0.45rem 0.7rem;
    font-size: 0.85rem;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .about-content p {
    font-size: 0.9rem;
  }
  
  .fact-title {
    font-size: 1rem;
  }
  
  .fact-text {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-card-title {
    font-size: 1rem;
  }
  
  .service-card-text {
    font-size: 0.8rem;
  }

  /* === التعديل هنا === */
  .project-card {
    min-height: 200px;
    padding: 20px 15px;
  }
  /* === نهاية التعديل === */

  .project-title {
    font-size: 0.95rem;
  }
  
  .project-description {
    font-size: 0.8rem;
  }

  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .subsidiary-card {
    padding: 12px 15px;
    min-height: 80px;
  }
  
  .subsidiary-logo {
    width: 90px;
    height: 90px;
  }
  
  .subsidiary-name {
    font-size: 0.9rem;
  }

  .governance-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .text-card {
    padding: 25px 20px;
  }
  
  .text-section {
    text-align: center;
  }
  
  .governance-content .list li {
    padding-right: 0;
    padding-left: 20px;
    text-align: right;
    font-size: 0.9rem;
  }
  
  .governance-content .list li::before {
    right: auto;
    left: 0;
  }
  
  .indicators-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-section {
    padding: 40px 0;
  }
  
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .logo-img {
    width: 100px;
  }
  
  .contact-info-simple {
    text-align: center;
  }
  
  .contact-info-simple .contact-info-text {
    font-size: 0.9rem;
  }
  
  .request-section {
    text-align: center;
  }
  
  .request-title {
    font-size: 1.6rem;
  }
  
  .request-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .request-cta {
    justify-content: center;
    gap: 10px;
  }
  
  .request-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .circles-container {
    width: 280px;
    height: 280px;
  }
  
  .outer-circle {
    width: 260px;
    height: 260px;
  }
  
  .inner-circle {
    width: 160px;
    height: 160px;
  }
  
  .circle-card {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.1rem;
  }
  
  .center-point {
    width: 90px;
    height: 90px;
  }
  
  .center-icon {
    width: 60px;
    height: 60px;
  }
  
  .horizontal-timeline {
    padding: 30px 0;
  }
  
  .timeline-track {
    display: none;
  }
  
  .timeline-points {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-item {
    flex-direction: row;
    text-align: right;
    gap: 15px;
  }
  
  .timeline-dot {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }
  
  .timeline-content {
    max-width: none;
    flex: 1;
    text-align: right;
    padding: 0;
  }
  
  .timeline-content h3 {
    font-size: 1rem;
  }
  
  .timeline-content p {
    font-size: 0.8rem;
  }
  
  .dot-number {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .nav {
    width: 85%;
    max-width: 300px;
  }

  .nav-header {
    padding: 15px 20px;
  }

  .nav-brand-logo {
    width: 60px;
    height: 33px;
  }

  .nav-brand-text {
    font-size: 0.9rem;
  }

  .nav-lang-switch {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .nav-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .section {
    padding-block: 40px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .about-content p {
    font-size: 0.85rem;
  }
  
  .fact-card,
  .service-card {
    padding: 20px 15px;
  }
  
  /* === التعديل هنا === */
  .project-card {
    min-height: 180px;
    padding: 18px 12px;
  }
  /* === نهاية التعديل === */

  .project-title {
    font-size: 0.9rem;
  }
  
  .project-description {
    font-size: 0.75rem;
  }

  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .subsidiary-card {
    padding: 10px 12px;
    min-height: 70px;
  }
  
  .subsidiary-logo {
    width: 70px;
    height: 70px;
  }
  
  .subsidiary-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav {
    width: 90%;
    max-width: 280px;
    border-left: none;
  }

  html:lang(en) .nav {
    border-right: none;
  }

  .brand-logo {
    width: auto;
    height: 45px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-toggle-bar {
    width: 18px;
  }

  .nav-header {
    padding: 12px 15px;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-brand-logo {
    width: 50px;
    height: 28px;
  }

  .nav-brand-text {
    font-size: 0.85rem;
  }

  .nav-lang-switch {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .container {
    padding-inline: 10px;
  }
  
  .facts-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .fact-card,
  .service-card,
  .subsidiary-card {
    padding: 18px 12px;
  }
  
  /* === التعديل هنا === */
  .project-card {
    min-height: 160px;
    padding: 15px 10px;
  }
  /* === نهاية التعديل === */

  .project-title {
    font-size: 0.85rem;
  }
  
  .project-description {
    font-size: 0.7rem;
  }
  
  .project-btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .subsidiaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .subsidiary-card {
    padding: 8px 10px;
    min-height: 65px;
  }
  
  .subsidiary-logo {
    width: 80px;
    height: 80px;
  }
  
  .subsidiary-name {
    font-size: 0.8rem;
  }

  .service-card-title {
    font-size: 0.9rem;
  }
  
  .service-card-text {
    font-size: 0.75rem;
  }

  .governance-section {
    padding: 40px 0;
  }
  
  .governance-content-wrapper {
    gap: 25px;
  }
  
  .text-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  
  .lead-text {
    font-size: 1rem;
  }
  
  .governance-content p {
    font-size: 0.9rem;
  }
  
  .governance-content .list li {
    font-size: 0.85rem;
  }
  
  .circles-container {
    width: 250px;
    height: 250px;
  }
  
  .outer-circle {
    width: 230px;
    height: 230px;
  }
  
  .inner-circle {
    width: 140px;
    height: 140px;
  }
  
  .circle-card {
    width: 45px;
    height: 45px;
  }
  
  .card-icon i {
    font-size: 1rem;
  }
  
  .center-point {
    width: 80px;
    height: 80px;
  }
  
  .center-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-section {
    padding: 30px 0;
  }
  
  .contact-content-wrapper {
    gap: 25px;
  }
  
  .contact-main-content {
    gap: 15px;
  }
  
  .logo-img {
    width: 80px;
  }
  
  .contact-info-simple .contact-info-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .request-cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .request-cta .btn {
    width: 180px;
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .timeline-dot {
    width: 45px;
    height: 45px;
  }
  
  .dot-number {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  /* === التعديل هنا === */
  .projects-container {
    grid-template-columns: 1fr;
  }
  /* === نهاية التعديل === */

  .project-card {
    min-height: 150px;
  }
  
  .subsidiaries-grid {
    grid-template-columns: 1fr;
  }
  
  .project-title {
    font-size: 0.8rem;
  }
  
  .project-description {
    font-size: 0.65rem;
  }
  
  .subsidiary-name {
    font-size: 0.75rem;
  }
}