
/* قسم البداية (Hero) */
.hero-section {
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-section .display-4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 8px;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    z-index: 2;
}

/* الخدمات */
.py-7 { 
    padding-top: 6rem; 
    padding-bottom: 6rem; 
}

.service-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s;
}

.card:hover .service-img {
    transform: scale(1.1);
}

.service-category-badge {
    position: absolute;
    top: -15px;
    right: 20px;
}

/* المناطق الجغرافية */
.region-card {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-10px);
}

.region-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.region-card:hover img {
    transform: scale(1.1);
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.city-chip {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.city-chip:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* الإحصائيات */
.stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

/* ميزات لماذا تختارنا */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.bg-primary-soft { background-color: rgba(26, 82, 118, 0.15); }
.bg-success-soft { background-color: rgba(46, 204, 113, 0.15); }
.bg-warning-soft { background-color: rgba(243, 156, 18, 0.15); }
.bg-info-soft { background-color: rgba(52, 152, 219, 0.15); }

/* قسم المشاريع */
.project-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* قسم الاتصال السريع */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* قسم الخريطة */
.map-overlay-card {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 1;
}

/* الخدمات الشائعة في المنطقة */
.popular-service-badge {
    display: inline-block;
    background-color: rgba(26, 82, 118, 0.1);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.popular-service-badge:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* تأثيرات متحركة للعناصر */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* مسار التنقل المحلي */
.local-breadcrumb {
    display: inline-flex;
    align-items: center;
    background-color: rgba(26, 82, 118, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.local-breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}

.local-breadcrumb i {
    margin: 0 0.5rem;
    color: var(--primary-color);
}

.local-breadcrumb span {
    font-weight: 600;
    color: var(--primary-color);
}

/* تعديلات مستجيبة للهاتف المحمول */
@media (max-width: 767.98px) {
    .hero-section { 
        padding: 4rem 0 3rem; 
    }
    .floating-badge { 
        right: 10px; 
    }
    .map-overlay-card { 
        position: relative; 
        top: 0; 
        right: 0; 
        max-width: 100%; 
        margin-top: 20px; 
    }
    .swiper-button-next, 
    .swiper-button-prev {
        display: none;
    }
}

/* شبكة عرض الخدمات */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 0 1rem;
}

.service-item {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2rem;
  color:rgba(13, 110, 253, 1) ;
  margin-bottom: 0.5rem;
}

.service-title {
  font-weight: 600;
  font-size: 1rem;
}

/* الأعمدة على الشاشات الكبيرة */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
</style>
<!-- Schema.org JSON-LD -->

:root {
    --neon-blue: #00f3ff;
    --cyber-purple: #8a2be2;
    --dark-bg: #0a0a0a;
    --safety-yellow: #FFD700;
}

body {
    background: var(--dark-bg);
    color: rgb(12, 28, 167);
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
}

/* التصميم الهولوغرامي */
.holographic-effect {
    background: radial-gradient(circle at 50% 50%, 
              rgba(0, 243, 255, 0.1), 
              rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(15px);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

/* تأثيرات النيون */
.neon-text {
    text-shadow: 0 0 10px var(--neon-blue),
               0 0 20px var(--neon-blue),
               0 0 30px var(--neon-blue);
}

/* بطاقات الخدمات التفاعلية */
.service-card {
    transition: transform 0.4s, box-shadow 0.4s;
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 243, 255, 0.3);
}

/* تصميم AR */
.ar-container {
    width: 100%;
    height: 600px;
    border: 3px solid var(--neon-blue);
    border-radius: 20px;
    overflow: hidden;
}

/* نموذج الاتصال المستقبلي */
.cyber-input {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: white;
    transition: all 0.3s;
}

.cyber-input:focus {
    box-shadow: 0 0 15px var(--neon-blue);
}

/* زر الطوارئ العائم */
.emergency-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(45deg, #ff4655, #8a2be2);
    padding: 15px 30px;
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: 1000;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}



:root {
    --primary-blue: #2A5C9F;
    --accent-orange: #FF6B35;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--light-gray);
}

.professional-header {
    background: linear-gradient(rgba(42, 92, 159, 0.9), rgba(42, 92, 159, 0.9)),
                url('ac-tech-bg.jpg') center/cover;
    color: white;
    padding: 120px 0;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gallery img {
    transition: transform 0.3s;
    border-radius: 10px;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

.contact-section {
    background: url('contact-pattern.png') var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

