
@font-face {
  font-family: 'Miryad';
  src: url('../fonts/Miryad-Regular.woff2') format('woff2'),
       url('../fonts/Miryad-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

        /* CSS Reset */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .hero-title {
    white-space: nowrap;   /* يمنع النص من النزول لسطر جديد */
}
.about-list {
    list-style-type: disc;   /* نقطة دائرية قبل كل عنصر */
    padding-right: 25px;     /* فراغ من اليمين حتى يكون مرتب */
    line-height: 1.8;        /* مسافة بين العناصر */
    font-size: 18px;
    text-align: right;       /* حتى ينسجم مع النص العربي */
}

        /* Variables */
        :root {
            --primary-color: #000000;
            --secondary-color: #D4AF37;
            --accent-color: #D4AF37;
            --text-color: #e0e0e0;
            --light-text: #ffffff;
            --dark-text: #121212;
            --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
            --section-padding: 5rem 2rem;
        }
        .logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* مسافة بين الشعار والنص */
}

.logo-image {
  width: 80px; /* حجم الشعار */
}

.logo-text {
  display: flex;
  flex-direction: column;
}

/*الخط الي بصف الشعار الي يفصل بين الكلام */
.main-text {
  font-size: 22px;
  font-weight: bold;
  color: #D4AF37;
  display: inline-block;       /* حتى يضبط البوردر */
  border-bottom: 2px solid #D4AF37; /* الخط */
  padding-bottom: 6px;          /* المسافة بين النص والخط */
}


.sub-text {
  font-size: 14px;
  color: #666;
  margin-top: 5px; /* مسافة صغيرة بين النص الأول والثاني */
}

        /* Base Styles */
        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-color);
            background-color: var(--primary-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 3rem;
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .header.scrolled {
            padding: 1rem 3rem;
            background: rgba(0, 0, 0, 0.95);
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: var(--light-text);
            text-decoration: none;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .nav-toggle:hover {
            color: var(--secondary-color);
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            gap: 3rem;
        }
        
        .nav-link {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 3rem 3rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
        }
        :root{
  --qabas-gold:#FFD700;
  --qabas-dark:#0f0f10;
}
.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(90deg,#0b0f14,#121926);
  border: 1px solid rgba(212,175,55,0.2); /* ذهبي خفيف */
  padding: 15px 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.marquee__inner {
  display: flex;
  flex-shrink: 0;
  gap: 25px; /* فراغ أنيق */
  animation: scroll-rtl 30s linear infinite;
}

.partner-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.07); /* ذهبي شفاف */
  border: 1px solid rgba(255,215,0,0.3);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all .35s ease;
}

.partner-pill i {
  color: #ffd700;
  font-size: 18px;
}

.partner-pill:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255,215,0,0.15);
  border-color: #ffd700;
  color: #ffd700;
  box-shadow: 0 6px 18px rgba(255,215,0,0.25);
}

@keyframes scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* موبايل */
@media (max-width: 768px) {
  .marquee__inner { 
    gap: 15px; 
    animation: scroll-rtl 18s linear infinite;
  }
  .partner-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.clients-strip{
  background: var(--qabas-dark);
  padding: 10px 0;
  overflow: hidden;
}

.strip-title{
  color: var(--qabas-gold);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

.strip-viewport{
  display: flex;
  overflow: hidden;
  position: relative;
}

.strip-track{
  display: flex;
  gap: 40px;
  animation: scroll-left 25s linear infinite;
}

.client{
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
}

@keyframes scroll-left{
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519751138087-5be79d305d14?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center;
            background-size: cover;
            opacity: 0.15;
            z-index: 0;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            flex: 1;
            padding: 3rem;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 1s ease-out forwards;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--light-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        .hero-title span {
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: right;
            animation: underline 1.5s ease-in-out forwards 1s;
        }
        
        .hero-text {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 600px;
            line-height: 1.8;
        }
        
        .btn-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background: var(--secondary-color);
            color: var(--dark-text);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            border: 2px solid var(--secondary-color);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            background: transparent;
            color: var(--secondary-color);
        }
        .scroll-animate{opacity:0;transform:translateY(12px);transition:opacity .6s ease,transform .6s ease}
.scroll-animate._in{opacity:1;transform:translateY(0)}

        .btn-secondary {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }
        
        .btn-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
            background: var(--secondary-color);
            color: var(--dark-text);
        }
        
        .btn i {
            margin-right: 0.5rem;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            padding: 2rem;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .feature-card:nth-child(1) { animation: fadeUp 0.8s ease-out 0.3s forwards; }
        .feature-card:nth-child(2) { animation: fadeUp 0.8s ease-out 0.6s forwards; }
        .feature-card:nth-child(3) { animation: fadeUp 0.8s ease-out 0.9s forwards; }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }
        
        .feature-icon {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--light-text);
        }
        
        .feature-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* Slider */
        .hero-slider {
            flex: 1;
            position: relative;
            height: 80vh;
            min-height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 1s ease-out 0.3s forwards;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            transform: scale(0.95);
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.906) 0%, rgba(250, 244, 244, 0.963) 100%);
        }
        
        .slide-content {
            position: absolute;
            bottom: 15%;
            right: 10%;
            color: var(--light-text);
            max-width: 500px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 1rem;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .slide-text {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }
        
        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background: var(--secondary-color);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .slider-arrow:hover {
            background: var(--secondary-color);
            color: var(--dark-text);
            border-color: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }
        
        .arrow-prev {
            right: 30px;
        }
        
        .arrow-next {
            left: 30px;
        }
        
        /* Animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes underline {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                flex-direction: column-reverse;
                text-align: center;
            }
            
            .hero-content {
                padding: 3rem 1rem;
                margin-top: 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-text {
                margin-left: auto;
                margin-right: auto;
            }
            
            .btn-group {
                justify-content: center;
            }
            
            .hero-slider {
                width: 100%;
                max-width: 800px;
                height: 60vh;
                min-height: 500px;
            }
        }
        
        @media (max-width: 992px) {
            .header {
                padding: 1.5rem 2rem;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .nav-list {
                position: fixed;
                top: 90px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 90px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                transition: var(--transition);
                backdrop-filter: blur(10px);
                border-left: 1px solid rgba(212, 175, 55, 0.1);
            }
            
            .nav-list.active {
                right: 0;
            }
            
            .hero {
                padding-top: 6rem;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 1.2rem;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 6rem 1.5rem 1.5rem;
            }
            
            .hero-slider {
                height: 50vh;
                min-height: 400px;
            }
            
            .slide-content {
                right: 5%;
                left: 5%;
                bottom: 10%;
                text-align: center;
            }
            
            .btn-group {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slider {
                height: 45vh;
                min-height: 350px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
            }
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 50%;
            animation: float 15s infinite linear;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
         @font-face {
  font-family: 'Miryad';
  src: url('fonts/Miryad-Regular.ttf') format('truetype'),
       url('fonts/Miryad-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
         body {
             font-family: 'Miryad', 'Tajawal', sans-serif;
           background: #ffffff;
           color: #333; 
         }

        body {
            font-family: 'Miryad', sans-serif;
            background: #ffffff;
            color: white;
        }

        .logo-wrapper {
            padding-right: 100px;
            text-align: right;
        } 

        .logo {
            font-size: 28px;
            background-color: #ffffff;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 8px;
        }
      
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* يمكنك إضافة المزيد من التنسيقات هنا مثل الخلفية أو الحشو (padding) */
}

.hero-content {
  flex: 1; /* يمكنك أيضًا تعديل هذا حسب التصميم */
  text-align: center; /* يمكنك تعديل محاذاة النص */
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #333;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700;800;900&display=swap');

@font-face {
  font-family: 'Miryad';
  src: url('fonts/Miryad-Regular.ttf') format('truetype'),
       url('fonts/Miryad-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
body {
  font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}
@font-face {
  font-family: 'Miryad';
  src: url('../fonts/Miryad-Regular.woff2') format('woff2'),
       url('../fonts/Miryad-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.hero {
    position: relative; 
    overflow: hidden; /* Ensures the water effect doesn't spill out */
    /* Add any existing background or padding for .hero here */
    display: flex;
    flex-direction: row;
    
}

.water-effect {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for perfect centering */
    width: 80%; /* Adjust as needed, e.g., 90% or a fixed px value */
    height: 70%; /* Adjust as needed, e.g., 60% or a fixed px value */
 
    border-radius: 15px; /* Slightly rounded corners for a softer look */
 
    z-index: 0; /* Ensures it stays behind the content */
    animation: waterRipple 8s infinite ease-in-out; /* Apply the animation */
}
/* As a background image on the body or a div */
body {
    background-image: url('path/to/shape.png');
    background-repeat: no-repeat;
    background-position: top right; /* Or other position */
    /* ... other styles ... */
}

/* Or using a gradient for a shape */
.main-content {
    position: relative;
    /* ... */
}
.main-content::before {
    content: '';
    position: absolute;
    top: -100px; /* Adjust position */
    right: -100px; /* Adjust position */
    width: 400px;
    height: 400px;
    background-color: #f5f5dc; /* Light color */
    border-radius: 50%; /* Makes it circular */
    z-index: -1; /* Puts it behind content */
    /* ... other styles ... */
}
/* Optional: Add a subtle ripple animation */
@keyframes waterRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02); /* Slight expansion */
        opacity: 0.9; /* Slight transparency change */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
.fade-in-text {
    opacity: 0; /* يبدأ العنصر مخفياً */
    transform: translateY(20px); /* يبدأ العنصر من أسفل قليلاً */
    animation: fadeInSlideUp 1s ease-out forwards; /* تطبيق الأنميشن */
}

.delay-1 {
    animation-delay: 0.5s;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    background-color: #333;
    padding: 10px;
}

.main-menu > li {
    position: relative;
}

.main-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #444;
    min-width: 150px;
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out; /* انتقال سلس */
    z-index: 100; /* للتأكد من ظهوره فوق المحتوى الآخر */
}

.main-menu li:hover .dropdown-menu {
    opacity: 1; /* يظهر عند التحويم */
    visibility: visible; /* يصبح مرئياً */
    transform: translateY(0); /* يعود إلى مكانه الطبيعي */
}

.dropdown-menu li a:hover {
    background-color: #555;
}
.hero{
    padding: 0 12vh;
    
}

.hero-content {
  text-align: right;
  margin-right: 10vh;
  direction: rtl; /* للتأكد من أن اتجاه النص عربي */
}
.hero-content a {
    width:
    margin-right
}


/* Adjust styles for shadowed-text if needed for better readability */
.shadowed-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Enhances readability over the water effect */
}
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.stat-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}
@keyframes pulse {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.9); }
    100% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
}

.stat-value {
    animation: pulse 2s infinite;
}

:root {
    --primary-color: #2a5a78; /* أزرق داكن (Navy Blue) */
    --secondary-color: #0d4e67; /* أزرق غامق (Dark Teal) */
    --accent-color: #e8b417; /* ذهبي/عنبري نابض بالحياة (Vibrant Amber) */
    --text-color-dark: #333;
    --text-color-light: #555;
    --bg-light: #f8f9fa; /* خلفية فاتحة جدًا */
    --card-bg: #ffffff; /* خلفية البطاقة بيضاء نقية */
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08); /* ظل خفيف */
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12); /* ظل أكبر */
    --transition-speed: 0.4s;
    --transition-timing: ease-in-out;
}
.typing-effect {
  animation: none;
  border-right: none;
}

/* إعادة تعيين أساسي للعناصر */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* إضافة سلاسة للتمرير */
}

body {
    font-family: 'Miryad', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color-dark);
    line-height: 1.8;
    padding: 40px 0; /* زيادة المسافة الرأسية */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* لجعل الفوتر يلتصق بالأسفل */
}

/* التخطيط العام للصفحة */
.page-header,
.values-section,
.page-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* لتوفير مسافة داخلية على الجوانب */
    width: 100%;
}

/* عنوان الصفحة */
.page-header {
    text-align: center;
    margin-bottom: 60px; /* مسافة أكبر تحت العنوان */
    padding-top: 20px;
}


.page-header h1 {
    font-size: 3.2em; /* حجم أكبر للعنوان الرئيسي */
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block; /* لكي يعمل pseudo-element بشكل صحيح */
}
.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* لتوسيط الخط السفلي */
    transform: translateX(-50%); /* لتوسيط الخط السفلي */
    width: 80px; /* طول الخط السفلي */
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* إخفاء المحتوى عن الشاشة ولكن إتاحته لقارئات الشاشة */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* شبكة القيم */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* تعديل الحد الأدنى لعرض البطاقة */
    gap: 30px;
    padding: 40px 0;
}

/* بطاقة القيمة الفردية */
.value-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 35px; /* زيادة التباعد الداخلي */
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--accent-gold); /* زيادة سمك الخط العلوي */
    display: flex; /* لترتيب المحتوى داخله */
    flex-direction: column; /* لترتيب المحتوى داخله عموديًا */
    align-items: flex-start; /* محاذاة العناصر إلى اليمين (في اتجاه RTL) */
}

.value-card:hover {
    transform: translateY(-12px); /* زيادة حركة الرفع */
    box-shadow: var(--shadow-lg);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 90, 120, 0.15) 0%, rgba(13, 78, 103, 0.08) 100%); /* زيادة شفافية التدرج */
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s var(--transition-timing);
}

.value-card:hover::before {
    opacity: 1;
}

/* أيقونة القيمة */
.value-icon-wrapper {
    font-size: 45px; /* حجم أكبر للأيقونة */
    color: var(--accent-color);
    margin-bottom: 25px; /* مسافة أكبر تحت الأيقونة */
    display: inline-flex; /* للحفاظ على حجم الصندوق حول الأيقونة */
    align-items: center;
    justify-content: flex-end;
    width: 70px; /* لإنشاء دائرة حول الأيقونة */
    height: 70px; /* لإنشاء دائرة حول الأيقونة */
    border-radius: 50%;
    background-color: rgba(232, 180, 23, 0.1); /* خلفية خفيفة للأيقونة */
    box-shadow: 0 0 0 8px rgba(232, 180, 23, 0.05); /* إطار حول الأيقونة */
}

/* عنوان القيمة */
.value-card .value-title {
    color: var(#D4AF37);
    font-size: 2.2em; /* حجم أكبر لعنوان البطاقة */
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px; /* مسافة للخط السفلي */
}

.value-card .value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px; /* طول الخط السفلي */
    height: 4px; /* سمك الخط السفلي */
    background: var(--accent-color);
    transition: width 0.3s var(--transition-timing);
    border-radius: 2px;
}

.value-card:hover .value-title::after {
    width: 100%;
}

/* وصف القيمة */
.value-card .value-description {
    font-size: 1.15em; /* حجم خط أكبر للوصف */
    color: var(--text-color-light);
    position: relative;
    z-index: 1;
    flex-grow: 1; /* لجعل النص يأخذ المساحة المتاحة ويدفع الفوتر للأسفل */
}

/* النص المميز */
.highlight {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 2px; /* لتجنب تداخل الخط مع النص */
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0; /* لتثبيت الخط تحت النص مباشرة */
    right: 0;
    width: 100%;
    height: 8px; /* سمك خط التظليل */
    background: rgba(232, 180, 23, 0.35); /* شفافية أكبر للون التظليل */
    z-index: -1;
    transition: height 0.2s var(--transition-timing);
    border-radius: 2px;
}

.value-card:hover .highlight::after {
    height: 14px; /* زيادة سمك خط التظليل عند التمرير */
}

/* الفوتر */
.page-footer {
    text-align: center;
    margin-top: 60px; /* مسافة أكبر فوق الفوتر */
    padding-bottom: 20px;
    color: var(--text-color-light);
    font-size: 0.9em;
}

/* استجابة التصميم */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-header h1 {
        font-size: 2.8em;
    }

    .value-card .value-title {
        font-size: 1.9em;
    }

    .value-card .value-description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 0;
    }
/* في ملف style.css الخاص بك */

:root {
    /* (تأكد من وجود المتغيرات الأساسية هنا) */
    --primary-color: #2a5a78; /* أزرق داكن */
    --accent-color: #e8b417; /* لون مميز/ذهبي */
    --secondary-color: #0d4e67; /* أزرق أغمق */
    --card-bg: #ffffff;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.4s ease-out;
}

/* تحسينات على بطاقة القيمة */
.value-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--accent-gold); /* خط علوي مميز */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* لضمان محاذاة المحتوى من الأعلى */
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02); /* رفع وتكبير خفيف عند التحويم */
    box-shadow: var(--shadow-lg);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.value-card:hover::before {
    opacity: 1;
}

/* أيقونة القيمة وحاويتها */
.value-icon-wrapper {
    font-size: 45px;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(232, 180, 23, 0.1); /* خلفية شفافة فاتحة */
    box-shadow: 0 0 0 8px rgba(232, 180, 23, 0.05); /* إطار خارجي شفاف */
    transition: all var(--transition-fast);
}

.value-card:hover .value-icon-wrapper {
    background-color: rgba(232, 180, 23, 0.2); /* خلفية أغمق قليلاً عند التحويم */
    box-shadow: 0 0 0 12px rgba(232, 180, 23, 0.1);
    transform: scale(1.05); /* تكبير الأيقونة قليلاً */
}

/* عنوان القيمة */
.value-card .value-title {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.value-card .value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.value-card:hover .value-title::after {
    width: 100%;
}

/* وصف القيمة */
.value-card .value-description {
    font-size: 1.1em;
    color: #555;
    position: relative;
    z-index: 1;
    line-height: 1.7; /* لتحسين قابلية القراءة */
}

/* النص المميز */
.highlight {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 3px; /* مسافة داخلية صغيرة */
    transition: background var(--transition-fast); /* انتقال للخلفية */
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; /* ليكون أسفل النص مباشرة */
    right: 0;
    width: 100%;
    height: 6px;
    background: rgba(232, 180, 23, 0.3); /* خلفية خفيفة */
    z-index: -1;
    transition: height var(--transition-fast), background var(--transition-fast);
    border-radius: 2px;
}

.value-card:hover .highlight::after {
    height: 12px;
    background: rgba(232, 180, 23, 0.5); /* خلفية أغمق عند التحويم */
}

/* يمكنك إضافة أنماط لـ .scroll-animate هنا إذا كنت تستخدم مكتبة للرسوم المتحركة عند التمرير */
/*
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
*/
    .page-header h1 {
        font-size: 2.4em;
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .value-card {
        padding: 30px;
    }

    .value-icon-wrapper {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }

    .value-card .value-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2em;
    }

    .value-card {
        padding: 25px;
    }

    .value-card .value-title {
        font-size: 1.6em;
    }
}
/* --- استيراد الخط: RTL-Mocha Yemen Sadah --- */
@font-face {
  font-family: 'Miryad';
  src: url('../fonts/Miryad-Regular.woff2') format('woff2'),
       url('../fonts/Miryad-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* style.css */

.service-card ul li::before {
    content: ''; /* Remove the Font Awesome icon content */
    display: inline-block; /* Make it a block/inline-block to give it width/height */
    width: 12px; /* Width of the square */
    height: 12px; /* Height of the square */
    border: 2px solid var(--accent-gold); /* Golden border for the square */
    background-color: transparent; /* Transparent fill */
    margin-left: 8px; /* Space between the square and the text */
    border-radius: 2px; /* Slightly rounded corners for a softer square look */
    position: absolute; /* Keep absolute positioning for alignment */
    right: 0;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}
/* هذا هو الكود الحالي لـ .service-icon في style.css */
.service-icon {
    /* ... خصائص أخرى ... */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* هذا هو الظل الافتراضي */
    /* ... خصائص أخرى ... */
}
/* Optional: Add a fill color on hover */
.service-card:hover ul li::before {
    background-color: var(--accent-gold); /* Fill the square with gold on hover */
    /* You might want to change the border color too if desired */
}
/* ... (Your existing :root variables and global styles like * and body) ... */

/* --- القسم الرئيسي (Hero Section) --- */
/* ... (existing Hero section CSS) ... */

/* --- How It Works Section (UPDATED) --- */
.how-it-works .section-title h2 {
    font-size: 48px; /* Maintain large size */
    color: var(--text-dark); /* Use dark text color as seen in the image */
    font-weight: 800; /* Make it bold as in the image */
    font-family: 'Miryad', sans-serif !important; /* Apply Cairo font, with !important to override */
    text-shadow: none; /* Remove any previous text shadow */
    letter-spacing: 0.5px; /* Adjust letter spacing for better appearance */
}

.how-it-works .steps-subheading {
     font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
    font-weight: 700; /* Make it bold */
    font-size: 1.2rem; /* Slightly larger */
    color: var(--text-light); /* Lighter dark text */
    letter-spacing: 1px;
}

.step-card h3 {
     font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
    font-weight: 800;
    font-size:50px; /* Adjust size */
    color: var(--text-dark); /* Dark color for step titles */
}

.step-card p {
    /* Keep the original font for descriptions, unless you explicitly want Cairo */
    font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
    font-size: 16px;
    color: var(--text-light);
}

/* ... (Rest of your how-it-works section CSS) ... */

/* You might want to update the styling of the step numbers (01, 02, etc.) as well,
   to match the bold, condensed look of Cairo if that's your goal. */
.step-number {
    /* ... existing styles ... */
     font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
    font-weight: 800;
}

/* ... (Rest of your style.css) ... */
footer a,
.footer-links a { /* Target links specifically within the footer */
    font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}
link rel                                                                                                 
/* Also, ensure no other rules are setting font-family on generic 'a' tags */
a 

body {
  font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

:root {
    --primary-bg-color: #f8f8f8; /* لون خلفية أساسي فاتح جداً (رمادي خفيف جداً/أبيض تقريباً) */
    --secondary-bg-color: #eef0f2; /* لون خلفية ثانوي أغمق قليلاً للبطاقات والأقسام البديلة */
    --accent-gold: #D4AF37; /* اللون الذهبي اللامع للمسات المميزة */
    --text-dark: #333333; /* لون نص داكن جداً للقراءة الجيدة على الخلفيات الفاتحة */
    --text-light: #555555; /* لون نص أفتح قليلاً للوصف والتفاصيل */
    --header-footer-bg: #000000; /* لون خلفية أبيض نقي للهيدر والفوتر */
    --border-light: #dddddd; /* لون حدود فاتح جداً */

    /* ألوان خاصة بالبطاقات Hover (تحول إلى أسود خفيف) */
    --card-default-bg: #ffffff; /* لون خلفية البطاقة الأساسي (أبيض) */
    --card-hover-bg: #222222; /* أسود خفيف/رمادي داكن جداً عند التحويم */
    --card-icon-bg-hover: #000000; /* أسود نقي لدائرة الأيقونة عند التحويم */
    --card-text-on-dark-bg: #ffffff; /* نص أبيض ليتناسق مع خلفية التحويم الداكنة */
    --card-description-on-dark-bg: #cccccc; /* رمادي فاتح لوصف النص على خلفية التحويم الداكنة */

    --cream-color: #F8F4EA; /* لون كريمي للزينة الخلفية المستوحاة من الصورة */
}

/* --- إعادة تعيين الأنماط الأساسية وتطبيق الخط عالمياً --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* تطبيق الخط الرئيسي على جميع العناصر */
    font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}
body {
    background-color: var(--primary-bg-color); /* تطبيق لون الخلفية الأساسي */
    color: var(--text-dark); /* تطبيق لون النص الأساسي */
    line-height: 1.8;
    overflow-x: hidden; /* لمنع شريط التمرير الأفقي */
}
/* --- الأنماط العامة للحاويات --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- شريط الرأس (Header) --- */
header {
    background-color: var(--header-footer-bg); /* لون خلفية الهيدر */
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-gold); /* حدود سفلية ذهبية */
    position: fixed; /* لتثبيت الهيدر عند التمرير */
    width: 100%;
    top: 0;
    z-index: 1000; /* لضمان ظهوره فوق المحتوى الآخر */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ظل خفيف احترافي */
    transition: background-color 0.6s ease, box-shadow 0.6s ease; /* انتقال أبطأ للخلفية والظل */
}

/* تأثير الهيدر عند التمرير (Scrolled State) */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.95); /* شفافية خفيفة عند التمرير */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* ظل أوضح قليلاً */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* شعار الشركة (Logo) */
.logo-container {
    display: flex;
    align-items: center;
    direction: rtl; /* لضمان المحاذاة الصحيحة للشعار والنص العربي */
}

.logo-image {
    width: 50px; /* حجم الشعار */
    height: auto;
    margin-left: 15px; /* مسافة بين الشعار والنص */
  
    transition: transform 0.5s ease-in-out; /* انتقال أبطأ للتكبير والدوران */
}

.logo-image:hover {
    transform: scale(1.1) rotate(7deg); /* تأثير تكبير ودوران عند التحويم */
}

.logo-text {
    color: var(--accent-gold); /* لون ذهبي لنص الشعار */
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 1px;
    text-shadow: none; /* إزالة الظل للنص ليتناسق مع الخلفية الفاتحة */
}

/* قائمة التنقل (Navigation) */
nav ul {
    display: flex;
    list-style: none; /* إزالة نقاط القائمة */
}

nav ul li {
    margin-left: 30px; /* المسافة بين عناصر القائمة */
}

nav ul li a {
  color: white; /* لون أبيض */
    text-decoration: none; /* إزالة التسطير */
    font-size: 19px;
    font-weight: 500;
    transition: color 0.4s ease, transform 0.4s ease; /* انتقال أبطأ للون والتحويل */
    position: relative;
    padding-bottom: 5px; /* مسافة للخط السفلي المتحرك */
}

nav ul li a:hover {
    color: var(--accent-gold); /* لون ذهبي عند التحويم */
    transform: translateY(-4px); /* رفع الرابط قليلاً عند التحويم */
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--accent-gold); /* خط سفلي ذهبي */
    bottom: 0;
    right: 0; /* يبدأ من اليمين للنص العربي */
    transition: width 0.4s ease; /* انتقال أبطأ لعرض الخط */
}

nav ul li a:hover::after {
    width: 100%; /* يتمدد الخط بالكامل عند التحويم */
    right: auto; /* يعود إلى التنسيق الافتراضي */
    left: 0; /* يتمدد من اليسار لليمين */
}
.glowing-text-pro {
  color: #FEE715; /* لون الخط الأساسي: أصفر ذهبي فاتح */
  font-family: 'Miryad', sans-serif; /* اختر خطًا نظيفًا وواضحًا */
  font-size: 3em; /* لتكبير النص وتوضيح التأثير */
  text-align: center;
  
  /* التوهج الأولي (عند ذروة التوهج) */
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.7), /* توهج أبيض ناعم جداً */
    0 0 15px rgba(255, 231, 21, 0.8), /* توهج أصفر ذهبي مركز */
    0 0 25px rgba(255, 231, 21, 0.6),
    0 0 40px rgba(255, 231, 21, 0.4);
    
  animation: professional-glow 2s infinite alternate ease-in-out; /* حركة احترافية */
}

@keyframes professional-glow {
  0% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.7),
      0 0 15px rgba(255, 231, 21, 0.8),
      0 0 25px rgba(255, 231, 21, 0.6),
      0 0 40px rgba(255, 231, 21, 0.4);
  }
 e {
    font-family: 'Miryad';
    src: url('fonts/Miryad-Bold.woff2') format('woff2'), /* تأكد من المسار الصحيح لملف الخط */
         url('fonts/Miryad-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
/* ثم يأتي باقي كود CSS */
  50% {
    /* التوهج الخافت (لا يختفي تماماً، بل يقل) */
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.3),
      0 0 5px rgba(255, 231, 21, 0.4), 
      0 0 10px rgba(255, 231, 21, 0.2);
  }

  100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.7),
      0 0 15px rgba(255, 231, 21, 0.8),
      0 0 25px rgba(255, 231, 21, 0.6),
      0 0 40px rgba(255, 231, 21, 0.4);
  }
}

/* قائمة الجوال (Mobile Menu) */
.mobile-menu {
    display: none; 
    font-size: 30px;
    color: var(--accent-gold);
    cursor: pointer;
    transition: transform 0.4 ease; 
}

.mobile-menu:hover {
    transform: scale(1.18); 
}

.menu {
  position: fixed;
  top: 0;
  right: -100%; /* مخفية خارج الشاشة */
  width: 250px;
  height: 100%;
  background: #000;
  color: #fff;
  transition: 0.3s ease;
  padding: 20px;
}

.menu.show {
  right: 0; /* تظهر */
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* --- القسم الرئيسي (Hero Section) --- */
.hero {
    height: 100vh; 
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 65px; /* حجم خط أكبر قليلاً للعنوان */
    margin-bottom: 30px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); /* ظل أنعم وأكثر احترافية */
    font-weight: 900;
}

.hero p {
    font-size: 24px; /* حجم خط أكبر قليلاً للفقرة */
    margin-bottom: 50px;
    color: #000000; /* نص داكن للقراءة على الخلفية الفاتحة */
    opacity: 0.9;
    animation: fadeInUp 1.5s ease-out 0.5s backwards; /* حركة صعود أبطأ مع تأخير */
}

/* الأزرار (Buttons) */
.btn {
    display: inline-block;
    background-color: var(--accent-gold); /* لون ذهبي للخلفية */
    color: #ffffff; /* نص أبيض */
    padding: 16px 40px; /* حجم أكبر للزر */
    border-radius: 50px; /* حواف دائرية جداً */
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.6s ease; /* انتقال أبطأ لجميع الخصائص */
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25); /* ظل أنعم وأكثر انتشاراً */
    animation: zoomIn 1.5s ease-out 1s backwards; /* حركة تكبير أبطأ مع تأخير */
}

.btn:hover {
    background-color: transparent; /* خلفية شفافة عند التحويم */
    color: var(--accent-gold); /* نص ذهبي عند التحويم */
    transform: translateY(-6px) scale(1.03); /* رفع وتكبير طفيف عند التحويم */
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); /* ظل أكثر بروزاً عند التحويم */
}

.btn:active {
    transform: translateY(-3px) scale(0.97); /* تأثير الضغط */
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* --- قسم "من نحن" (About Us) --- */
.about {
    padding: 120px 0; /* مسافة علوية وسفلية موحدة */
    background-color: var(--secondary-bg-color); /* خلفية رمادية فاتحة */
    position: relative;
    overflow: hidden;
}

/* أنماط لقائمة أرقام الهاتف */
.phone-list-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-bg-color, #eef0f2);
}

.phone-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-item {
    background-color: var(--card-default-bg, #ffffff);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color, #2a5a78);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.phone-list-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark, #333333);
}


/* الأشكال الزخرفية في الخلفية (مستوحاة من الصورة الكريمية) */
.about::before {
    content: '';
    position: absolute;
    top: -80px; /* تعديل الموضع */
    right: -80px; /* تعديل الموضع */
    width: 200px; /* حجم أكبر */
    height: 200px; /* حجم أكبر */
    background: rgba(212, 175, 55, 0.1); /* لون ذهبي شفاف جداً */
    border-radius: 50%;
    z-index: 0;
    animation: rotate 25s linear infinite; /* دوران أبطأ جداً */
}
.text-container-with-light-shadow {
  /* هذه بعض الأنماط الأساسية للعنصر الحاوي على النص */
  display: inline-block; /* لجعل العنصر يأخذ عرض المحتوى فقط */
  padding: 10px 20px; /* لإضافة مسافة داخلية بين النص والظل */
  background-color: transparent; /* أو لون خلفية العنصر إذا كان موجودًا */
  color: #ffffff; /* لون النص نفسه، كمثال: أبيض */

}
.about::after {
    content: '';
    position: absolute;
    bottom: -100px; /* تعديل الموضع */
    left: -100px; /* تعديل الموضع */
    width: 150px; /* حجم أكبر */
    height: 150px; /* حجم أكبر */
    background: var(--cream-color); /* استخدام اللون الكريمي */
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate; /* حركة عائمة أبطأ جداً */
}
.shadowed-text {
  /* This is the primary color of your text */
  color: #ffffff; /* Example: white text */

  /* The text-shadow property: */
  /* first value: horizontal offset (how far right the shadow goes) */
  /* second value: vertical offset (how far down the shadow goes) */
  /* third value: blur radius (how blurry the shadow is) */
  /* fourth value: color of the shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* You can adjust the values above to fine-tune the shadow: */
  /* - Increase/decrease pixel values for offset to move the shadow */
  /* - Increase/decrease blur radius for more/less blur */
  /* - Change the RGBA color (last value is transparency, 0-1) */
}
/* عناوين الأقسام (Section Titles) */
.section-title {
    text-align: center;
  
    position: relative;
    padding-top: 20px;
}

.section-title h2 {
    font-size: 48px; /* حجم خط أكبر للعنوان */
    color: var(--accent-gold);
    display: inline-block;
    padding-bottom: 18px; /* مسافة للخط السفلي */
    position: relative;
    font-weight: 800; /* وزن خط أثقل */
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 120px; /* خط أطول قليلاً */
    height: 4px;
    background-color: var(--accent-gold);
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px; /* مسافة أكبر بين النص والصورة */
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 36px; /* حجم خط أكبر للعنوان الفرعي */
    margin-bottom: 30px;
    color: var(--accent-gold);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 20px; /* حجم خط أكبر للفقرات */
    line-height: 1.8;
    color: var(--text-dark); /* نص داكن */
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); /* ظل أنعم وأكثر احترافية */
    transition: transform 0.5s ease; /* انتقال أبطأ */
}

.about-image img:hover {
    transform: scale(1.02);
}

/* --- قسم "سياستنا" (Values) --- */
.values {
    padding: 100px 0; /* مسافة علوية وسفلية موحدة */
    background-color: var(--primary-bg-color); /* خلفية رمادية فاتحة */
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: var(--card-default-bg); /* خلفية بيضاء للبطاقات */
    padding: 35px; /* مسافة داخلية أكبر */
    border-radius: 15px; /* حواف دائرية */
    border-bottom: 4px solid var(--accent-gold); /* حدود سفلية ذهبية */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* ظل ناعم جداً */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease; /* انتقال أبطأ وأكثر سلاسة */
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02); /* رفع وتكبير طفيف */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12); /* ظل أكثر بروزاً واحترافية */
    background-color: var(--secondary-bg-color); /* خلفية رمادية أفتح عند التحويم */
}

.value-card i {
    font-size: 50px; /* حجم أيقونة أكبر */
    color: var(--accent-gold);
}

.value-card h3 {
    font-size: 28px; /* حجم خط أكبر للعنوان */
    color: var(--accent-gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.value-card p {
    font-size: 18px; /* حجم خط للفقرة */
    color: var(--text-dark);
    line-height: 1.7;
}

/* --- قسم "خدماتنا التأمينية الشاملة" (Services) --- */
.services {
    padding: 120px 0; /* مسافة علوية وسفلية موحدة */
    background-color: var(--primary-bg-color); /* خلفية رمادية فاتحة */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* مرن، بحد أدنى 280 بكسل */
    gap: 30px; /* مسافة بين البطاقات */
    margin-top: 70px; /* مسافة من العنوان */
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background-color: var(--card-default-bg); /* خلفية بيضاء للبطاقات */
    padding: 35px; /* مسافة داخلية أكبر */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* ظل ناعم جداً */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    /* انتقال أبطأ لجميع الخصائص للحصول على مظهر احترافي */
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* تأثير التحويم لبطاقات الخدمة: أسود خفيف احترافي */
.service-card:hover {
    background-color: var(--card-hover-bg); /* خلفية أسود خفيف عند التحويم */
    transform: translateY(-10px) scale(1.01); /* رفع وتكبير طفيف */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2); /* ظل أكثر بروزاً واحترافية */
    cursor: pointer;
}

.service-icon {
    width: 85px; /* حجم أكبر لدائرة الأيقونة */
    height: 85px; /* حجم أكبر لدائرة الأيقونة */
    border-radius: 50%;
    background-color: var(--accent-gold); /* لون ذهبي لدائرة الأيقونة */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px; /* مسافة أكبر */
    transition: background-color 0.5s ease, transform 0.5s ease; /* انتقال أبطأ */
}

/* تأثير التحويم لدائرة الأيقونة والأيقونة نفسها */
.service-card:hover .service-icon {
    background-color: var(--card-icon-bg-hover); /* أسود نقي لدائرة الأيقونة عند التحويم */
    transform: rotateY(360deg); /* دوران كامل (أكثر جاذبية من 180) */
}

.service-icon i {
    font-size: 45px; /* حجم أكبر للأيقونة */
    color: var(--card-text-on-dark-bg); /* لون أبيض للأيقونة على الخلفية الداكنة */
    transition: color 0.5s ease; /* انتقال أبطأ */
}

.service-card:hover .service-icon i {
    color: var(--accent-gold); /* أيقونة ذهبية عند التحويم */
}

.service-card h3 {
    font-size: 28px; /* حجم خط أكبر */
    margin-bottom: 18px;
    color: var(--accent-gold);
    font-weight: 700;
    transition: color 0.5s ease; /* انتقال أبطأ */
}

.service-card:hover h3 {
    color: var(--card-text-on-dark-bg); /* عنوان أبيض عند التحويم */
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--text-dark); /* نص داكن لقائمة العناصر */
    position: relative;
    padding-right: 25px; /* مسافة لأيقونة الصح */
    transition: color 0.5s ease; /* انتقال أبطأ */
}

.service-card:hover ul li {
    color: var(--card-description-on-dark-bg); /* نص رمادي فاتح لقائمة العناصر عند التحويم */
}

.service-card:hover ul li::before {
    color: var(--card-text-on-dark-bg); /* أيقونة صح بيضاء عند التحويم */
}

.service-card .btn {
    align-self: center;
    margin-top: 20px;
    padding: 12px 30px; /* حجم زر أكبر قليلاً */
    font-size: 17px;
    background-color: var(--accent-gold);
    color: #ffffff;
    border: 2px solid var(--accent-gold);
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease; /* انتقال أبطأ */
}

.service-card .btn:hover {
    background-color: transparent; /* شفافة عند التحويم */
    color: var(--accent-gold); /* نص ذهبي عند التحويم */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* --- قسم "لماذا نحن" (Why Us) --- */
.why-us {
    padding: 120px 0; /* مسافة علوية وسفلية موحدة */
    background-color: var(--secondary-bg-color); /* خلفية رمادية فاتحة */
    text-align: center;
}
/* style.css */

/* ... (بقية الكود الخاص بك) ... */

.value-icon-wrapper {
    width: 80px; /* حجم دائرة الأيقونة */
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0; /* رمادي فاتح */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    /* NEW: إضافة حدود */
    border: 1px solid #ddd;
    /* NEW: ظل خفيف */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: var(--accent-gold); /* لون ذهبي عند التحويم */
}

.value-icon-wrapper i {
    font-size: 40px; /* حجم الأيقونة */
    color: #333; /* لون الأيقونة */
    transition: color 0.3s ease;
}

.value-card:hover .value-icon-wrapper i {
    color: #fff; /* لون أبيض للأيقونة عند التحويم */
}

/* تعديل أيقونات الخدمات بنفس الأسلوب */
.service-card .service-icon {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    background-color: var(--steps-blue-bg); /* لون أزرق عند التحويم */
}

.service-card .service-icon i {
    color: #333;
}

.service-card:hover .service-icon i {
    color: #fff;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.why-us-item {
    background-color: var(--card-default-bg); /* خلفية بيضاء */
    padding: 40px; /* مسافة داخلية أكبر */
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05); /* حدود خفيفة جداً */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* ظل ناعم جداً */
    transition: all 0.5s ease; /* انتقال أبطأ */
}

.why-us-item:hover {
    transform: translateY(-10px) scale(1.02); /* رفع وتكبير طفيف */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12); /* ظل أكثر بروزاً واحترافية */
    background-color: var(--primary-bg-color); /* خلفية رمادية أفتح عند التحويم */
}

.why-us-item i {
    font-size: 60px; /* حجم أيقونة أكبر */
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.why-us-item h3 {
    font-size: 30px; /* حجم خط أكبر */
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-us-item p {
    font-size: 19px; /* حجم خط أكبر */
    color: var(--text-dark);
    line-height: 1.8;
}

/* --- قسم "رؤيتنا ورسالتنا" (Vision) --- */
.vision {
    padding: 120px 0; /* مسافة علوية وسفلية موحدة */
    /* تراكب أبيض/رمادي خفيف مع صورة خلفية ثابتة */
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed; /* لتأثير المنظر */
    text-align: center;
    position: relative;
}

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.20'/%3E%3C/svg%3E");
    animation: gentlePulse 10s ease infinite;
  }

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision .section-title {
    margin-bottom: 50px;
}

.vision p {
    font-size: 21px; /* حجم خط أكبر */
    margin-bottom: 30px;
    line-height: 1.9;
    color: var(--text-dark); /* نص داكن */
}

/* --- قسم "شهادات العملاء" (Testimonials) --- */
.testimonials {
  
    background-color: var(--primary-bg-color); /* خلفية رمادية فاتحة */
    text-align: center;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto; /* للسماح بالتمرير الأفقي لشهادات العملاء */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 30px; /* مسافة سفلية للتمرير */
    margin-top: 70px;
}

.testimonial-card {
    flex: 0 0 400px; /* حجم ثابت للبطاقة (يمكن تعديله) */
    scroll-snap-align: start;
    background-color: var(--card-default-bg); /* خلفية بيضاء */
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* ظل ناعم جداً */
    text-align: right;
    border-bottom: 3px solid var(--accent-gold);
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out; /* انتقال أبطأ */
}

.testimonial-card:hover {
    transform: translateY(-8px); /* رفع طفيف */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* ظل أكثر بروزاً */
}

.testimonial-card p {
    font-style: italic;
    font-size: 19px; /* حجم خط أكبر */
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.testimonial-author img {
    width: 75px; /* حجم صورة أكبر */
    height: 75px; /* حجم صورة أكبر */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    margin-right: 15px;
}

.author-details h4 {
    font-size: 22px; /* حجم خط أكبر */
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.author-details span {
    font-size: 17px; /* حجم خط أكبر */
    color: var(--text-light);
}

/* --- قسم "شركاؤنا" (Partners) --- */
.partners {
  
    background-color: var(--secondary-bg-color); /* خلفية رمادية فاتحة */
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px; /* مسافة أكبر بين الشعارات */
    margin-top: 60px;
    align-items: center;
    justify-items: center;
}

.partner-logo img {
    max-width: 160px; /* حجم شعار أكبر قليلاً */
    filter: grayscale(90%) brightness(60%); /* فلتر لجعله أقرب للرمادي وأقل سطوعاً */
    opacity: 0.8; /* شفافية طفيفة */
    transition: all 0.5s ease; /* انتقال أبطأ */
}

.partner-logo img:hover {
    filter: grayscale(0%) brightness(100%); /* إزالة الفلتر وإعادة السطوع */
    opacity: 1;
    transform: scale(1.15); /* تكبير أكبر عند التحويم */
}

/* --- قسم "تواصل معنا" (Contact) --- */
.contact {
    padding: 120px 0; /* مسافة علوية وسفلية موحدة */
    background-color: var(--primary-bg-color); /* خلفية رمادية فاتحة */
}

.contact-container {
    display: flex;
    gap: 70px; /* مسافة أكبر بين عمود المعلومات والنموذج */
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 320px; /* عرض أدنى أكبر */
    background-color: var(--card-default-bg); /* خلفية بيضاء */
    padding: 45px; /* مسافة داخلية أكبر */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* ظل أنعم وأكثر احترافية */
    border-right: 5px solid var(--accent-gold); /* حدود يمين ذهبية */
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* انتقال أبطأ */
}

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* ظل أكثر بروزاً */
}

.contact-info h3 {
    font-size: 29px; /* حجم خط أكبر */
    margin-bottom: 35px;
    color: var(--accent-gold);
    font-weight: 700;
    text-align: center;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* مسافة أكبر بين التفاصيل */
    font-size: 20px; /* حجم خط أكبر */
    color: var(--text-dark);
}

.contact-details i {
    font-size: 26px; /* حجم أيقونة أكبر */
    color: var(--accent-gold);
    margin-left: 20px;
    width: 35px; /* لضمان محاذاة الأيقونات */
    text-align: center;
}

.contact-info .social-links {
    text-align: center;
}

.social-links a {
    display: inline-block;
    margin: 0 15px; /* مسافة أكبر بين أيقونات التواصل */
    color: var(--text-light); /* نص رمادي فاتح */
    font-size: 32px; /* حجم أيقونة أكبر */
    transition: color 0.4s ease, transform 0.4s ease; /* انتقال أبطأ */
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-6px) scale(1.18); /* رفع وتكبير أكبر */
}

.contact-form {
    flex: 2;
    min-width: 450px; /* عرض أدنى أكبر */
    background-color: var(--card-default-bg); /* خلفية بيضاء */
    padding: 45px; /* مسافة داخلية أكبر */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* ظل أنعم وأكثر احترافية */
    border-left: 5px solid var(--accent-gold); /* حدود يسار ذهبية */
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* انتقال أبطأ */
}

.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* ظل أكثر بروزاً */
}

.contact-form h3 {
    font-size: 34px; /* حجم خط أكبر */
    margin-bottom: 35px;
    color: var(--accent-gold);
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 30px; /* مسافة أكبر بين مجموعات الحقول */
}

.form-group label {
    display: block;
    margin-bottom: 12px; 
    font-weight: 600;
    font-size: 19px; /* حجم خط أكبر للتسمية */
    color: var(--text-dark); /* نص داكن للتسمية */
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px; /* مسافة داخلية أكبر للحقول */
    background-color: var(--primary-bg-color); /* خلفية رمادية فاتحة للحقول */
    border: 1px solid var(--border-light); /* حدود فاتحة */
    border-radius: 8px;
    color: var(--text-dark); /* نص داكن داخل الحقول */
    font-size: 18px; /* حجم خط أكبر داخل الحقول */
    transition: border-color 0.4s ease, box-shadow 0.4s ease; /* انتقال أبطأ */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 0 15px rgba(212, 175, 55, 0.1); /* توهج أنعم وأكثر بروزاً */
    outline: none;
}

.form-group textarea {
    height: 200px; /* ارتفاع أكبر لمربع النص */
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 18px; /* حجم زر أكبر */
    font-size: 22px; /* حجم خط أكبر للزر */
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

/* --- التذييل (Footer) --- */
footer {
    background-color: var(--header-footer-bg); /* خلفية التذييل */
    padding: 50px 0; /* مسافة علوية وسفلية أكبر */
    text-align: center;
    border-top: 2px solid var(--accent-gold); /* حدود علوية ذهبية */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* مسافة أكبر بين العناصر */
}
/*
 * تحديث: تأثير توهج احترافي أكثر ونبض سلس
 * هذا الكود يركز على تحسين جودة التوهج وسلاسة الحركة
 */

.glowing-text-pro {
    /* لون الخط الأساسي: ذهبي مشرق */
    color: #FFD700; /* Gold */
    
    /* خصائص الخط - تأكد من تحميل خط Miryad أو استخدم خطًا آخر */
    font-family: 'Miryad', sans-serif;
    font-weight: 700; /* تأكد أن هذا الوزن متاح لخط Miryad */
    font-size: 3.8em; /* حجم أكبر لجذب الانتباه */
    text-align: center;
    text-transform: capitalize; 
    letter-spacing: 0.08em; /* زيادة تباعد الحروف قليلاً لإحساس الفخامة */
    white-space: nowrap; 
    
    /* ظل خفيف للنص نفسه لإعطائه عمق قبل التوهج */
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.3); /* ظل بسيط للنص نفسه */

    /* التوهج الأساسي (عند ذروة اللمعان) */
    /* ظلال متعددة الطبقات بألوان ذهبية وبيضاء وشفافيات متدرجة */
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),   /* أبيض مشرق لقلب التوهج */
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 215, 0, 0.7),     /* ذهبي ساطع */
        0 0 45px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),     /* ذهبي خفيف منتشر */
        0 0 75px rgba(255, 215, 0, 0.2);

    /* حركة نبض سلسة: يتوهج ويخفت بهدوء */
    animation: professional-smooth-glow 2.5s infinite alternate ease-in-out; /* مدة أطول وحركة أبطأ */
}
/* استيراد خطوط احترافية (مثل Roboto للعربية والإنجليزية) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;700&display=swap'); /* خط عربي أنيق */

/* قسم الإحصائيات الاحترافي */
.stats-section {
    background-color: #f5f7fa; /* خلفية رمادية فاتحة جداً */
    padding: 40px 15px; /* حشوة أقل من الأعلى والأسفل */
    text-align: center;
    direction: rtl; /* اتجاه النص من اليمين لليسار */
    font-family: 'IBM Plex Sans Arabic', 'Roboto', sans-serif; /* استخدام خطوط احترافية */
}

.stats-grid {
    max-width: 1100px; /* أقصى عرض للحاوية */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* توزيع العناصر */
    gap: 20px; /* مسافة أقل بين العناصر */
}

.stat-item {
    flex: 1; /* لتوزيع المساحة */
    min-width: 180px; /* أصغر عرض للعنصر */
    max-width: 250px; /* لتجنب أن تصبح عريضة جداً في الشاشات الكبيرة */
    padding: 25px 15px; /* حشوة داخلية أقل */
    background-color: #ffffff; /* خلفية بيضاء */
    border-radius: 8px; /* زوايا مستديرة أنعم */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* ظل دقيق جداً */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* انتقال سلس */
    display: flex; /* لترتيب القيمة والوصف عمودياً */
    flex-direction: column; /* ترتيب عمودي */
    justify-content: center; /* توسيط المحتوى عمودياً */
    align-items: center; /* توسيط المحتوى أفقياً */
}

.stat-item:hover {
    transform: translateY(-3px); /* رفع العنصر بشكل طفيف جداً */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* زيادة طفيفة في الظل */
}

.stat-value {
    display: block;
    font-size: 2.8em; /* حجم خط أصغر وأكثر احترافية */
    font-weight: 700; /* خط سميك */
    color: #2c3e50; /* لون أزرق داكن/رمادي احترافي */
    margin-bottom: 8px; /* مسافة أقل */
    line-height: 1.2; /* تباعد الأسطر */
}

.stat-description {
    font-size: 1em; /* حجم خط معتدل للوصف */
    color: #607d8b; /* لون رمادي مزرق للدلالة */
    line-height: 1.4;/* استيراد خطوط احترافية (مثل Roboto للعربية والإنجليزية) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;700&display=swap');

/* قسم الإحصائيات الاحترافي */
.stats-section {
    background-color: #fcfcfc; /* خلفية شبه بيضاء جداً */
    padding: 60px 15px; /* حشوة مناسبة */
    text-align: center;
    direction: rtl; /* اتجاه النص من اليمين لليسار */
    font-family: 'IBM Plex Sans Arabic', 'Roboto', sans-serif;
    overflow: hidden; /* لمنع أي تجاوزات محتملة */
}

.stats-grid {
    max-width: 1200px; /* عرض أكبر قليلاً */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px; /* مسافة مناسبة بين العناصر */
}

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px; /* لتجنب أن تصبح عريضة جداً */
    padding: 30px 20px; /* حشوة داخلية مريحة */
    background-color: #ffffff;
    border-radius: 12px; /* زوايا مستديرة أكثر */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* ظل ناعم جداً وموزع */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee; /* إطار خفيف جداً لمظهر أنظف */
}

.stat-item:hover {
    transform: translateY(-5px); /* رفع العنصر بلطف */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* ظل أكثر وضوحاً عند التحويم */
}

.stat-value {
    display: block;
    font-size: 3.2em; /* حجم خط جذاب للأرقام */
    font-weight: 700;
    color: #0d47a1; /* لون أزرق داكن كلاسيكي (يمكنك تغييره للأسود #212121) */
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px; /* تباعد أحرف سالب خفيف لمظهر عصري */
}

.stat-description {
    font-size: 1.1em; /* حجم خط الوصف */
    color: #616161; /* لون رمادي داكن للوصف */
    line-height: 1.5;
    text-transform: capitalize; /* لجعل أول حرف كبير (اختياري) */
    letter-spacing: 0.2px;
}

/* استجابة التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        min-width: 85%;
        max-width: 95%; /* السماح بعرض أكبر */
        padding: 25px 20px;
    }

    .stat-value {
        font-size: 2.5em;
    }

    .stat-description {
        font-size: 1em;
    }
}
    text-transform: uppercase; /* لجعل النص يبدو أكثر رسمية (اختياري) */
    letter-spacing: 0.5px; /* تباعد أحرف طفيف */
}

/* استجابة التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column; /* ترتيب العناصر عمودياً */
        align-items: center;
        gap: 15px; /* تقليل المسافة العمودية */
    }

    .stat-item {
        min-width: 80%; /* زيادة العرض ليناسب الشاشات الصغيرة */
        padding: 20px 15px; /* تقليل الحشوة قليلاً */
    }

    .stat-value {
        font-size: 2.2em; /* تقليل حجم الخط أكثر للشاشات الصغيرة */
    }

    .stat-description {
        font-size: 0.9em; /* تقليل حجم خط الوصف */
    }
}
@keyframes professional-smooth-glow {
    0% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 215, 0, 0.7),
            0 0 45px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3),
            0 0 75px rgba(255, 215, 0, 0.2);
    }
    
    50% {
        /* حالة التوهج الخافت: تقليل الشدة والانتشار، لكن لا يختفي تمامًا */
        text-shadow:
            0 0 5px rgba(255, 255, 255, 0.5),   /* أبيض خافت */
            0 0 10px rgba(255, 215, 0, 0.4),    /* ذهبي خافت */
            0 0 15px rgba(255, 215, 0, 0.2);
    }

    100% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 215, 0, 0.7),
            0 0 45px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3),
            0 0 75px rgba(255, 215, 0, 0.2);
    }
}
.copyright {
    color: var(--text-light); /* نص رمادي فاتح */
    font-size: 17px; /* حجم خط أكبر */
}
h2 {
 
  padding-bottom: 5px; /* Space between the text and the line */
  display: inline-block; /* Makes the border only as wide as the text */
}
.footer-links a {
color: rgb(255, 255, 255); /* White */    margin-right: 30px; /* مسافة أكبر بين الروابط */
    text-decoration: none;
    font-size: 17px;
    transition: color 0.4s ease; /* انتقال أبطأ */
}

body {
  background-color: #000000; /* لون الخلفية أسود */
  color: #FFFFFF; /* تحديد لون النص الافتراضي للصفحة إلى الأبيض ليكون مرئياً */
}
.footer-links a:hover {
    color: var(--accent-gold);
}

.section-description {
    text-align: center;
    font-size: 19px; /* حجم خط أكبر */
    margin-bottom: 45px;
    color: var(--text-dark);
}

/* --- تأثيرات التمرير (Scroll Animations) - أبطأ وأكثر سلاسة --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(70px); /* حركة أكبر قليلاً */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* أبطأ بشكل ملحوظ */
}
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- تعريفات حركات Keyframe (Animations) - جميعها أبطأ --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); } /* بداية من أعلى */
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); } /* بداية من أسفل */
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.6); } /* تبدأ أصغر */
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-25px) translateX(20px); } /* حركة عائمة أكبر */
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* حركة شعارات الشركاء (تظهر من الأسفل) */
.partner-logo.scroll-animate {
    opacity: 0;
    transform: translateY(40px); /* حركة أكبر */
    transition: opacity 1s ease-out, transform 1s ease-out; /* أبطأ */
}
.partner-logo.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* حركة عناوين الأقسام (تظهر من الأعلى) */
.section-title h2.scroll-animate {
    opacity: 0;
    transform: translateY(-40px); /* حركة أكبر */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* أبطأ */
}
.section-title h2.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
.section-title h2::after {
    transition: width 0.8s ease; /* خط متحرك أبطأ */
}

/* حركة بطاقات شهادات العملاء (تظهر من اليمين) */
.testimonial-card.scroll-animate {
    opacity: 0;
    transform: translateX(100px); /* تبدأ من مسافة أبعد لليمين */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* أبطأ */
}
.testimonial-card.scroll-animate.animate {
    opacity: 1;
    transform: translateX(0);
}

/* --- Preloader (شاشة التحميل الأولية) - اختياري --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-default-bg); /* خلفية بيضاء لشاشة التحميل */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease; /* تلاشي أبطأ */
}

.loader {
    border: 8px solid #f3f3f3; /* رمادي فاتح */
    border-top: 8px solid var(--accent-gold); /* ذهبي */
    border-radius: 50%;
    width: 70px; /* حجم أكبر للمحمل */
    height: 70px; /* حجم أكبر للمحمل */
    animation: spin 3s linear infinite; /* دوران أبطأ */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- تصميم متجاوب (Responsive Design) --- */
/* (تم الحفاظ على هذه الأنماط كما هي أو بتعديلات طفيفة لتتناسب مع السرعة الجديدة والألوان) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 55px;
    }
    .hero p {
        font-size: 21px;
    }
    .section-title h2 {
        font-size: 42px;
    }
    .about-content, .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-text, .about-image, .contact-info, .contact-form {
        width: 100%;
        min-width: unset;
    }
    .contact-info, .contact-form {
        padding: 35px;
    }
    .services-grid, .why-us-grid, .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .testimonial-carousel {
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonial-card {
        flex: 0 0 90%;
    }
}
/* style.css (add these rules towards the end of your file) */

/* أنماط لقائمة أرقام الهاتف */
.phone-list-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-bg-color, #eef0f2);
}

.phone-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-item {
    background-color: var(--card-default-bg, #ffffff);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color, #2a5a78);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.phone-list-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark, #333333);
}

/* ... (Your existing styles) ... */

/* أضف هذا الأنميشن لتأثير التحويم على البطاقة */
@keyframes hoverEffect {
    from {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    to {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 85px;
        right: 0;
        background-color: var(--header-footer-bg);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        height: 70vh;
    }
    .hero h1 {
        font-size: 45px;
    }
    .hero p {
        font-size: 19px;
    }
    .logo {
        padding-right: 60px;
        direction: rtl;
        text-align: right;
    }

    .btn {
        padding: 12px 30px;
        font-size: 17px;
    }
    .section-title h2 {
        font-size: 38px;
    }
    .about-text h3, .contact-info h3, .contact-form h3 {
        font-size: 30px;
    }
    .service-card h3, .why-us-item h3, .value-card h3 {
        font-size: 26px;
    }
    .testimonial-card {
        flex: 0 0 95%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 24px;
    }
    .logo img {
        height: 48px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero p {
        font-size: 17px;
    }
    .section-title h2 {
        font-size: 34px;
    }
    .about-text p, .service-card ul li, .why-us-item p, .value-card p, .contact-details div, .form-group label, .form-group input, .form-group textarea, .form-group select {
        font-size: 16px;
    }
    .testimonial-card p {
        font-size: 17px;
    }
    .testimonial-author img {
        width: 65px;
        height: 65px;
    }
    .author-details h4 {
        font-size: 19px;
    }
}

html {
    scroll-behavior: smooth;
}
/* style.css (add these rules towards the end of your file) */

footer a,
.footer-links a { /* Target links specifically within the footer */
    font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}


/* Also, ensure no other rules are setting font-family on generic 'a' tags */
a {
    font-family: 'Miryad', 'Tajawal', 'Noto Sans Arabic', sans-serif;
}

/* style.css */

/* ... (Your existing @font-face and :root variables) ... */

/* إضافة متغيرات جديدة لألوان إضافية أو تأثيرات */
:root {
    /* ... existing variables ... */
    --parallax-overlay-color: rgba(255, 255, 255, 0.7); /* لون تراكب أبيض شفاف للـ parallax */
    --back-to-top-bg: var(--accent-gold); /* لون خلفية زر العودة للأعلى */
    --back-to-top-color: #ffffff; /* لون أيقونة زر العودة للأعلى */
}

/* ... (Your existing global styles and header styles) ... */

/* --- القسم الرئيسي (Hero Section) --- */
.hero {
    /* ... existing styles ... */
    background-attachment: fixed; /* لتأثير Parallax خفيف على خلفية الهيرو */
}

.hero h1 span.typed-text { /* لتهيئة تأثير الكتابة */
    position: relative;
    display: inline-block;
    color: var(--accent-gold); /* يمكن أن يكون نفس لون العنوان أو مختلفاً */
}

/* --- القسم "من نحن" (About Us) --- */
/* يمكن إضافة تأثير Parallax على هذا القسم أيضاً إذا أردت صورة خلفية */
/* .about {
    background-image: url('your-about-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--parallax-overlay-color);
    z-index: 1;
}
.about > .container {
    position: relative;
    z-index: 2;
}
*/

/* --- قسم "الرؤية والرسالة" (Vision Section) --- */
.vision {
    /* ... existing styles ... */
    background-attachment: fixed; /* تأكيد أن الـ parallax موجود هنا */
}

/* --- قسم "كيف نعمل" (How It Works / Steps Section) --- */
.how-it-works {
    /* ... existing styles ... */
    position: relative; /* مهم لـ z-index إذا أردنا أشكال خلفية متحركة */
}

/* تأثير تحويم على الأيقونات داخل الدوائر (يمكن إضافته لأيقونات أخرى) */
.step-circle i {
    /* ... existing styles ... */
    transition: transform 0.3s ease; /* إضافة انتقال لتحريك الأيقونة */
}
.step-card:hover .step-circle i {
    transform: scale(1.1); /* تكبير الأيقونة قليلاً عند التحويم */
}

/* --- زر العودة للأعلى (Back to Top Button) --- */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--back-to-top-bg);
    color: var(--back-to-top-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0; /* مخفي في البداية */
    visibility: hidden; /* مخفي أيضاً لمنع التفاعل */
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease;
    z-index: 999;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--steps-blue-bg); /* لون مختلف عند التحويم */
}


.btn:active {
    transform: translateY(-3px) scale(0.97); 
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}


.social-links a {
  
    transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease;
}
.social-links a:hover {
  
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.step-line path {
    
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.1, 0.25, 1); 
}
@media (max-width: 768px) {
  .hero {
    padding: 200px 15px; /* تقليل البادينغ */
    height: auto; /* إلغاء الارتفاع الكامل */
    text-align: center;
    flex-direction: column;
  }

  .hero-content {
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem; /* تقليل حجم الخط */
    line-height: 1.4;
    word-break: break-word;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .hero-content a {
    width: 80%;
    margin: 20px auto 0;
    display: block;
    font-size: 1rem;
  }
}
