/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0068b6;
  --primary-dark: #0b2b44;
  --primary-light: #e6f2ff;
  --secondary-orange: #ff8106;
  --secondary-teal: #009688;
  --accent-green: #4CAF50;
  --accent-red: #F44336;
  --text-dark: #333333;
  --text-medium: #5b6b7a;
  --text-light: #777777;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f5f7fa;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), #0091ea);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005a9c, #0077cc);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary-orange);
  color: white;
}

.btn-secondary:hover {
  background: #e67605;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), #1a3d5f);
  color: white;
  padding: 5px 0;
  font-size: 0.85rem;
}

.top-bar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.welcome-text i {
  color: var(--secondary-orange);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang {
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

.lang-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
.header {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}


/* حركة خفيفة تعطي حياة */
.header:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* محتوى الهيدر */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0; /* أنحف */
}

/* ===== LOGO ===== */
.logo-box {
  transition: transform 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-2px);
}


.logo-img {
  height: 60px; /* أصغر وأفخم */
  width: auto;
}

.logo-text h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* ربط الهيدر بالهيرو */
.header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.header::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-orange)
  );
  opacity: 0.8;
}

/* ===== RIGHT SIDE ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ===== STOCK TICKER ===== */
.stock-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.04);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  border: 1px solid rgba(0,0,0,0.06);
}
.stock-ticker:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* للـ LTR داخل RTL */
.force-ltr {
  direction: ltr !important;
  unicode-bidi: isolate;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stock-price {
  font-weight: 600;
  font-size: 1rem;
}

.stock-change.up {
  color: var(--accent-green);
}

.stock-change.down {
  color: var(--accent-red);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 10px;
  }

  .header-right {
    gap: 15px;
  }

  .stock-ticker {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .logo-text h1 {
    font-size: 1.4rem;
  }

  .logo-img {
    height: 55px;
  }
}


/* ===== NAVIGATION ===== */
/* ===== NAVIGATION ===== */
.nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  position: relative;
}

/* خط ربط ناعم مع الهيرو */
.nav::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,104,182,0.45),
    transparent
  );
}

/* القائمة */
.nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* الروابط */
.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover */
.nav-list a:hover {
  color: var(--primary-blue);
  transform: translateY(-2px);
}



/* خط الـ Active المتحرك */

/* Animation */
@keyframes navLine {
  from { width: 0; }
  to   { width: 100%; }
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}


/* ===== HERO BANNER ===== */
.hero-banner {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  max-height: 800px;
  position: relative;
  overflow: hidden;
}

.hero-banner .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-banner .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* الصور مع الشفافية */
.slide-1 { 
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('assets/smart.jpg'); 
}

.slide-2 { 
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('assets/smart1.jpg'); 
}

.slide-3 { 
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('assets/smart2.jpg'); 
}

.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.slide-desc {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* النقاط */
.swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.7);
  opacity: 1;
  margin: 0 8px !important;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #0068b6;
  transform: scale(1.3);
}

/* أزرار التالي والسابق */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0,0,0,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-top: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0,0,0,0.6);
}

/* زر البنر */
.hero-banner .btn-primary {
  background: linear-gradient(135deg, #ff8106, #ff9e40);
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 129, 6, 0.3);
  transition: all 0.3s ease;
}

.hero-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 129, 6, 0.4);
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.intro-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header {
  padding: 25px 30px 15px;
  background: linear-gradient(90deg, var(--primary-blue), #0086d4);
  color: white;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.divider {
  height: 3px;
  width: 50px;
  background: var(--secondary-orange);
  border-radius: 2px;
}

.card-body {
  padding: 30px;
}

.card-body h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.achievements {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.achievement {
  text-align: center;
}

.achievement-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.stock-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.stock-price-display h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.currency {
  font-size: 1rem;
  color: var(--text-light);
}

.stock-details h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stock-exchange {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.stock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: var(--text-dark);
}

.card-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-orange);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.1rem;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.industry-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #d4e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.industry-icon i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.industry-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.industry-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== LIFECYCLE SECTION ===== */
.lifecycle-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.lifecycle-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.lifecycle-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-teal));
}

.lifecycle-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), #0086d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,104,182,0.3);
}

.step-content {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1;
  transition: var(--transition);
}

.step-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0b2b44, #1a3d5f);
  color: white;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-orange);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-about .footer-logo img {
  height: 50px;
  width: auto;
}

.footer-about .footer-logo h3 {
  font-size: 1.3rem;
  color: white;
}

.footer-desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a::before {
  content: '›';
  margin-right: 8px;
  color: var(--secondary-orange);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

.contact-info i {
  margin-right: 12px;
  color: var(--secondary-orange);
  width: 20px;
  text-align: center;
}

.contact-info .address {
  margin-left: 32px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #005a9c;
  transform: translateY(-3px);
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] {
  text-align: right;
}



[dir="rtl"] .lifecycle-timeline::before {
  left: auto;
  right: 30px;
}

[dir="rtl"] .step-number {
  margin-right: 0;
  margin-left: 30px;
}

[dir="rtl"] .step-content:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

[dir="rtl"] .footer-links a::before {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .contact-info i {
  margin-right: 0;
  margin-left: 12px;
}

[dir="rtl"] .contact-info .address {
  margin-left: 0;
  margin-right: 32px;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .nav-list a span {
    font-size: 0.8rem;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar .wrapper {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .top-right {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .header-main {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo-box {
    flex-direction: column;
    text-align: center;
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .nav {
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    background: white;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-list li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-list a {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px;
    gap: 15px;
  }
  
  .nav-list a i {
    margin-bottom: 0;
    width: 24px;
  }
  
  .hero-banner {
    height: 60vh;
    min-height: 500px;
  }
  
  .slide-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-desc {
    font-size: 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .lifecycle-timeline::before {
    display: none;
  }
  
  .lifecycle-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 0 15px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  
  .slide-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .stock-stats {
    grid-template-columns: 1fr;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}/* تأكد من هذي الكلاسات موجودة */
.hero-banner .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}



/* الصورة */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* الشفافية فوق الصورة */


/* النص */
.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

/* ===== ABOUT PAGE ===== */
.page-banner {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  background: url('assets/about1.png') center/cover no-repeat;
}





.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.banner-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.about-content-section {
  padding: 80px 0;
  background: #fff;
}

.about-intro {
  margin-bottom: 40px;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.intro-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-blue);
}

.intro-highlight i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.intro-highlight h3 {
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.highlight-text {
  color: var(--secondary-orange);
  font-weight: 500;
}

.about-text {
  max-width: 900px;
  margin: 0 auto 50px;
}
.about-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-medium);
}

.about-text strong {
  color: var(--primary-dark);
}







.focus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.focus-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-blue);
}

.focus-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #d4e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.focus-icon i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.focus-card h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.focus-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
}

.global-reach {
  text-align: center;
  padding: 50px 0;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-top: 50px;
}

.global-reach h3 {
  color: var(--primary-dark);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.regions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.region i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.region span {
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .intro-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .regions {
    gap: 20px;
  }
}
/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
              url('assets/ser.png') center/cover no-repeat;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Services Intro */
.services-intro {
  padding: 60px 0;
  background: var(--bg-light);
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 40px;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 5px;
}

/* Services Grid */
.services-grid-section {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), #d4e7ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.service-title {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-desc {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-more-btn {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.service-more-btn:hover {
  background: var(--primary-blue);
  color: white;
}

/* Service Modal */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.service-modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1001;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  z-index: 1002;
}

.modal-close:hover {
  background: var(--accent-red);
  color: white;
}

.modal-header {
  padding: 40px 40px 20px;
  background: linear-gradient(135deg, var(--primary-blue), #0091ea);
  color: white;
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-subtitle {
  opacity: 0.9;
  font-size: 1.1rem;
}

.modal-body {
  padding: 30px 40px;
  overflow-y: auto;
  max-height: 50vh;
}

.modal-section {
  margin-bottom: 30px;
}

.modal-section h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 8px;
}

.modal-section p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 15px;
}

.modal-section ul {
  list-style: none;
  margin-left: 20px;
}

.modal-section li {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.modal-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.modal-footer {
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.modal-contact-btn,
.modal-back-btn {
  flex: 1;
  min-width: 200px;
}

/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--primary-dark), #1a3d5f);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 20px;
  }
  
  .modal-footer {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .intro-stats {
    gap: 30px;
  }
}
.service-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
}

.service-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-desc {
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 0.85rem;
  color: #495057;
  font-weight: 500;
}

.service-more-btn {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto; /* هذا يدفع الزر لأسفل البطاقة */
}

.service-more-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.service-more-btn i {
  transition: transform 0.3s ease;
}

.service-more-btn:hover i {
  transform: translateX(4px);
}
.osp-card::before {
  content: '';
  background-image: url('osp-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  margin-bottom: 10px;
}
.ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  text-align: left;
}


/* ===== PROJECTS PAGE STYLES ===== */
.banner-content h1,
.banner-content p {
  opacity: 0;
  transform: translateY(20px);
  animation: bannerFade 0.8s ease forwards;
}

.banner-content p {
  animation-delay: 0.2s;
}

@keyframes bannerFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro-highlight {
  transition: all 0.3s ease;
}

.intro-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1); 
}

.intro-highlight i {
  transition: transform 0.3s ease;
}

.intro-highlight:hover i {
  transform: scale(1.15);
}

.hero-content h1,
.hero-content p,
.hero-content .breadcrumb {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease forwards;
}

.hero-content p { animation-delay: 0.15s; }
.hero-content .breadcrumb { animation-delay: 0.3s; }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.plus {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-left: 2px;
}

.stat {
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .intro-stats {
    flex-direction: column;
    gap: 30px;
  }
}
.intro-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}
.intro-stats {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.intro-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: auto !important;
}
img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
  padding: 0 16px;
}
@media (max-width: 768px) {

  h1 { font-size: 28px; }
  h2 { font-size: 22px; }

  .grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

}
.about-main {
  display: grid;
  grid-template-columns: 1fr 420px; /* ⬅️ حجم ثابت للصورة */
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.about-image img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block; 
  transition: transform 0.6s ease;
  border-radius: 20px 6px 20px 6px;
  
}

.about-image img:hover {
  transform: scale(1.02);
}
/* للجوال */
@media (max-width: 768px) {
  .about-main {
    grid-template-columns: 1fr;
  }
}
.about-image {
  background: none !important;
  padding: 0 !important;
}







.slide-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.slide-content h2 { animation-delay: 0.1s; }
.slide-content p  { animation-delay: 0.25s; }
.slide-content a  { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-line {
  display: block;
  width: 80px;
  height: 3px;
  margin: 20px auto;
  background: linear-gradient(90deg, #ff8106, #ffc266);
  animation: lineGrow 1s ease forwards;
}

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 80px; }
}
/* زر الشات بوت */
.chat-bot-toggle {
  position: fixed;
  bottom: 100px;   
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-bot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.chat-notification {
  display: none;
}


/* نافذة الشات بوت */
.chat-bot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chat-bot-window.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-title h3 {
  margin: 0;
  font-size: 18px;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.chat-close:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

.message.bot {
  justify-content: flex-start;
}

.message.user {
  justify-content: flex-end;
}

.message-content {
  max-width: 70%;
  padding: 10px 15px;
  border-radius: 18px;
  word-wrap: break-word;
}

.message.bot .message-content {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 18px 18px 18px 4px;
}

.message.user .message-content {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  border-radius: 18px 18px 4px 18px;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

#chatUserInput {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  transition: border-color 0.3s;
}

#chatUserInput:focus {
  outline: none;
  border-color: #1a237e;
}

#sendMessage {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}

#sendMessage:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* للغة العربية */
html[dir="rtl"] .chat-bot-toggle {
  right: auto;
  left: 30px;
}

html[dir="rtl"] .chat-bot-window {
  right: auto;
  left: 30px;
}
.nav-list li::marker {
  display: none;
}
.stock-ticker {
  opacity: 0.85;
}

.stock-ticker:hover {
  opacity: 1;
}
.nav-list a {
  letter-spacing: 0.3px;
}
.nav-list li.active a {
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-list li.active a::after {
  height: 3px;
  bottom: -10px;
}
.nav-list a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover {
  transform: translateY(-1px);
}





/* ===== Header reacts on scroll ===== */
.header.scrolled {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
}

/* ===== HERO STAGGERED REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  animation: revealUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== NAV UNDERLINE EFFECT ===== */

/* ===== STOCK TICKER INTERACTION ===== */
.stock-ticker {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stock-ticker:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
@keyframes stockPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.stock-ticker {
  animation: stockPulse 1.2s ease;
}




/* ===== HERO BACKGROUND MICRO ANIMATION ===== */
.hero-banner .swiper-slide {
  animation: heroMove 18s ease-in-out infinite alternate;
}

@keyframes heroMove {
  from {
    background-size: 105%;
    background-position: center; 
  }
  to {
    background-size: 115%;
    background-position: center top;
  }
}



.about-text p {
  line-height: 1.9;
  font-size: 1.05rem;
}
.about-text p:first-child {
  font-size: 1.15rem;
}
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.focus-card h4 {
  font-weight: 700;
}







@media (max-width: 768px) {
  .about-main {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: 2;
    margin-top: 20px;
  }

  .about-text {
    order: 1;
  }
}
@media (max-width: 768px) {
  .about-image img {
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .focus-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .focus-card {
    padding: 22px;
  }

  .focus-icon {
    width: 56px;
    height: 56px;
  }

  .focus-card h4 {
    font-size: 1.15rem;
  }

  .focus-card p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .about-content-section {
    padding: 50px 0;
  }

  .about-intro {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.1rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}





.focus-card:hover .focus-icon {
  transform: scale(1.12) rotate(2deg);
}

.section-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--secondary-orange);
  display: block;
  margin-top: 8px;
}
.intro-highlight:hover {
  transform: translateX(6px);
}
.hero-banner {
  background-attachment: fixed;
}
.hero-banner {
  background-attachment: fixed;
}

/* توحيد سلوك الـ active menu */
.nav-list li.active::after,
.nav-list li.active a::after {
  display: none;
}
.company-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 22px;
  margin-top: 10px;

  background: linear-gradient(135deg, #0a66c2, #0d8bf2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.25);

  transition: all 0.3s ease;
}

.company-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.35);
  background: linear-gradient(135deg, #084d96, #0a66c2);
}

.company-profile-btn i {
  font-size: 14px;
}
:root {
  --primary-blue: #0068b6;
  --primary-dark: #0b2b44;
  --secondary-orange: #ff8106;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f0f0f0;
  --text-dark: #333;
  --text-medium: #666;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --transition: all 0.3s ease;
  --primary-light: #e6f2ff;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), #1a3d5f);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.welcome-text i {
  color: var(--secondary-orange);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang {
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

.lang-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text h1 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stock-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
  background: var(--bg-gray);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.stock-price {
  font-weight: 600;
  font-size: 1.1rem;
}

.stock-change.up {
  color: #4CAF50;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

.nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  flex: 1;
  text-align: center;
}

.nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px;
  color: var(--text-medium);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}

.nav-list a i {
  font-size: 1.2rem;
  margin-bottom: 6px;
  transition: var(--transition);
}

.nav-list a span {
  font-size: 0.9rem;
}

.nav-list a:hover {
  color: var(--primary-blue);
  background: var(--primary-light);
}

.nav-list a:hover i {
  transform: translateY(-2px);
}

.nav-list li.active a {
  color: var(--primary-blue);
  background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.nav-list li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 20%;
  left: 20%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  text-align: left;
}

.header-main {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s;
}
.mobile-menu-btn:hover {
  background: var(--bg-light);
}

/* ===== MOBILE SIDE DRAWER ===== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}
.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: white;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.drawer-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.drawer-close:hover {
  background: rgba(255,255,255,0.3);
}

.drawer-nav {
  list-style: none;
  padding: 10px 0;
  flex: 1;
  overflow-y: auto;
}
.drawer-nav li {
  border-bottom: 1px solid #f0f0f0;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  text-decoration: none;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}
.drawer-nav a:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
  padding-right: 30px;
}
.drawer-nav li.active a {
  color: var(--primary-blue);
  background: rgba(0,104,182,0.05);
  border-right: 4px solid var(--primary-blue);
}
.drawer-nav i {
  width: 24px;
  text-align: center;
  color: var(--primary-blue);
}

.drawer-footer {
  padding: 20px;
  background: var(--bg-light);
  border-top: 1px solid #eee;
}
.drawer-footer p {
  font-size: 0.8rem;
  color: var(--text-medium);
  text-align: center;
}

/* ===== اخفاء النافبار وإظهار الزر على شاشات < 992px ===== */
@media (max-width: 991.98px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav {
    display: none;
  }
}