@font-face {
  font-family: 'CairoSemiBold';
  src: url('../webfonts/Cairo-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'LabradorA';
  src: url('../webfonts/LabradorA-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ------- NAVBAR STYLING -------- */
.navbar-brand svg{
  width: 100%;
  max-width: 120px; 
  height: auto;
}
.navbar {
  padding-top: 0;  /* قلل المسافة فوق */
  padding-bottom: 0; /* قلل المسافة تحت */
  background-color: #0a1e32;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
/* -------- END NAVBAR STYLING -----------*/



body{
  margin: 0;
  padding: 0;
  background-color: #011c3a;
}

/* ============================
   HERO SECTION
============================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: #011c3a; /* لون الخلفية الأساسي */
  overflow: hidden; /* عشان النقط متخرجش برا السيكشن */
  display: flex;
  align-items: center;
  color: #fff;
}

/* #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
  background-image: radial-gradient(
    circle at center,
    rgba(0, 153, 255, 0.1),
    transparent 100%
  );
} */

#hero-plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(1, 28, 58, 0.4); */
  z-index: 1
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 2;
}
@media (max-width: 768px) {
    .hero {
        /* بدل min-height: 100vh الثابتة، هنخليها تتمدد مع الكلام */
        min-height: 100vh; 
        height: auto;
        padding-top: 100px; /* مسافة عشان الـ Navbar */
        padding-bottom: 60px;
        /* نظبط الصورة عشان ماتبقاش مضغوطة */
        background-size: cover !important;
        background-position: 80% center; /* بيحرك فوكس الصورة شوية لليمين عشان يدي مساحة للكلام */
    }

    .hero-badge {
        font-size: 11px !important;
        padding: 5px 12px !important;
        margin-bottom: 15px !important;
    }

    /* 2. تحجيم العنوان عشان ميقطعش */
    .hero h1 {
        font-size: 2.2rem !important; /* حجم مثالي للموبايل */
        margin-bottom: 15px !important;
    }

    /* 3. تنسيق النص الوصفي */
    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        padding: 0 10px; /* عشان ميبقاش لازق في الحواف */
    }

    /* 4. تظبيط الزراير */
    .hero-buttons {
        flex-direction: column; /* الزراير تحت بعض عشان العرض */
        gap: 15px !important;
    }

    .hero-buttons .btn {
        width: 100%; /* الزرار ياخد العرض كله لسهولة الضغط */
    }
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 153, 255, 0.15);
  color: #c5d7e7;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #4da9ff;
}

.hero p {
  font-size: 18px;
  color: #cfd8e3;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #fff;
  color: #011c3a;
}

.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.secondary {
  border: 2px solid #4da9ff;
  color: #4da9ff;
}

.btn.secondary:hover {
  background: #4da9ff;
  color: #011c3a;
}

/* ============================
   Stats
============================ */

.stats {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #011c3a; /* نفس خلفية الهيرو لضمان التناسق */
}

.stat-item h3 {
  font-size: clamp(32px, 5vw, 48px); /* حجم خط مرن يتناسب مع الشاشة */
  font-weight: 700;
  color: #4da9ff;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 20px;
  color: white;
  text-transform: uppercase; /* لمسة جمالية للـ Data Analyst */
  letter-spacing: 1px;
}

/* تعديل بسيط للموبايل لضمان عدم تداخل الأرقام */
@media (max-width: 576px) {
  .stats {
    padding: 40px 0;
  }
  .stat-item h3 {
    font-size: 28px;
  }
}

/* ============================
   SERVICES SECTION
============================ */


.services-section {
  background-color: #011C3A;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-header .sub-title {
  color: #0F7EFF;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 36px;
  margin: 10px 0;
}

.section-header p {
  font-size: 16px;
  color: #B0BEC5;
  max-width: 600px;
  margin: 0 auto 50px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #0B2246;
  padding: 30px 20px;
  border-radius: 12px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card .icon {
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    padding: 0;
    background-color: rgba(15, 126, 255, 0.1);
    border-radius: 25%;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: #B0BEC5;
  margin-bottom: 20px;
}

.learn-more {
  color: #0F7EFF;
  text-decoration: none;
  font-weight: 500;
}


/* ============================
    Why Shark
============================ */



.why-shark {
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
}

.why-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin: 0 auto;
}

/* الجزء الأيسر */
.text-side { flex: 1; }

.sub-title {
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}

.text-side h1 {
    font-size: 42px;
    margin: 20px 0;
    font-weight: 800;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    color: #3498db;
    font-size: 24px;
    background: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 8px;
    height: fit-content;
}

.feature-text h3 { margin: 0; font-size: 18px; }
.feature-text p { color: #a0aec0; margin-top: 5px; }

/* الجزء الأيمن (البطاقات) */
.stats-side { flex: 1; }

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 في الصف */
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
    background: #0a192f;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
}

.stat-card h2 {
    color: #3498db;
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-card p {
   color: #a0aec0; 
   font-size: 14px;
   }

/* Responsive للموبايل */
@media (max-width: 992px) {
    .why-content { flex-direction: column; text-align: center; }
    .feature-item { justify-content: center; text-align: left; }
}

/* partneers Section */
.partners-section.py-5{
  background-color: #011c3a; 
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.text-muted small.text-uppercase.fw-bold{
  letter-spacing: 2px;
}
/* Testmonials Section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: #0d6efd; 
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #a3b3c2;
}

/* CTA Styling */
.cta-section {
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1) 0%, #011c3a 70%);
    position: relative;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif; /
}

/* زرار التوهج (Glow Effect) */
.btn-glow {
    background-color: #fff;
    color: #011c3a;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    background-color: #f8f9fa;
}

/* السهم الصغير */
.btn-glow i {
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: translateX(5px);
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.03); /* شفافية خفيفة جداً */
    border: 1px solid rgba(255, 255, 255, 0.1); /* إطار خفيف جداً */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px); /* تأثير رفعة خفيفة عند الماوس */
    border-color: rgba(13, 110, 253, 0.5); /* تغيير لون الإطار للأزرق عند الهوفر */
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1); /* خلفية زرقاء خفيفة للأيقونة */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.lead-sm {
    line-height: 1.8;
    font-size: 1.05rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease-in-out;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0d6efd; /* اللون الأزرق عند الوقوف بالماوس */
    transform: translateY(-8px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* لضمان تناسق حجم النصوص */
.value-card p {
    line-height: 1.6;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0d6efd;
    transform: translateY(-15px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: #0a1e32;
    padding: 5px;
    border: 2px dashed rgba(13, 110, 253, 0.3);
    border-radius: 50%;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    letter-spacing: 0.5px;
}


.cta-actions .btn-primary {
    background-color: #0d6efd;
    border: none;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.cta-actions .btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
}

/* حركة خفيفة للأيقونة داخل الزر */
.cta-actions .btn-primary i {
    transition: transform 0.3s ease;
}

.cta-actions .btn-primary:hover i {
    transform: translateX(5px);
}


.services-page .display-3 {
    letter-spacing: -1px;
    line-height: 1.1;
}

.services-page .text-secondary {
    color: #a0aec0 !important; /* لون رمادي باهت ليعطي عمق للتصميم */
}

/* إضافة أنيميشن خفيف عند ظهور الصفحة */
.services-page .container {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثيرات زر Get Started */
.btn-outline-primary {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateX(5px);
    background-color: #0d6efd;
    color: white;
}

/* تنسيق الأيقونات في القائمة */
.bi-check-circle-fill {
    font-size: 1.1rem;
}

/* تباعد الأسطر في القائمة */
.list-unstyled li {
    font-size: 1.05rem;
}



.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0d6efd;
    transform: translateY(-5px);
}

.process-card h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

/* تنسيق الأسهم بين الكروت */
.process-card i.bi-arrow-right {
    font-size: 1.5rem;
}


.display-1 {
    letter-spacing: -4px;
    line-height: 1;
}

.icon-square {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-square:hover {
    background: rgba(13, 110, 253, 0.2) !important;
    transform: scale(1.1);
}

/* تظبيط الخطوط الثانوية */
.features-list p {
    line-height: 1.5;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.shadow-glow:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    background-color: #fff;
}

/* زرار View Pricing */
.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}
.contact-page .custom-input {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-page .custom-input:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.15);
    outline: none;
}

.contact-page .custom-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-page h1.display-3 {
    letter-spacing: -2px;
}

/* الكروت الأساسية */
.contact-card, .info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* شكل الـ Inputs */
.contact-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-input:focus {
    border-color: #0d6efd !important;
    box-shadow: none;
}

/* دايرة الأيقونة في الجزء اليمين */
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* زرار الإرسال الأبيض */
.btn-light {
    background: #fff;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}


.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #0d6efd;
}


.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.contact-info-list i {
    font-size: 1.1rem;
}




/* الكارت الأساسي */
.news-card-main {
    background: #020d1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.news-card-main:hover {
    transform: translateY(-10px);
    border-color: #0d6efd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* صورة الكارت */
.news-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-main:hover .news-image {
    transform: scale(1.1);
}

/* بادج التاريخ */
.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d6efd;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    font-size: 14px;
}

.date-badge span {
    font-size: 10px;
    display: block;
}

/* محتوى الكارت */
.news-body {
    padding: 20px;
}

.author {
    color: #4da9ff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* يخلي العنوان سطرين بس مهما كان طوله */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.excerpt {
    color: #a0aab5;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* زرار Read More */
.read-more {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #4da9ff;
    border-bottom-color: white;
}

/* الترقيم (Pagination) */
.pagination-wrapper .page-numbers {
    color: white;
    padding: 8px 16px;
    background: #020d1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 4px;
    text-decoration: none;
    border-radius: 4px;
}

.pagination-wrapper .page-numbers.current {
    background: #0d6efd;
    border-color: #0d6efd;
}

/* تنسيق صفحة المقال المنفردة بالخلفية البيضاء */
.portfolio-container {
    background-color: #ffffff !important; /* لون الخلفية أبيض */
    color: #333333; /* لون النص أسود أو رمادي غامق للقراءة */
    min-height: 100vh; /* عشان يغطي طول الشاشة بالكامل */
    padding: 60px 20px;
}

/* تعديل ألوان العناوين جوه الصفحة البيضاء */
.portfolio-container h1, 
.portfolio-container h2, 
.portfolio-container h3 {
    color: #000000;
}
.portfolio-featured-image {
    text-align: center; /* سنترة الصورة في نص الصفحة */
	max-width: 1200px;
	margin: auto;
}

/* تنسيق الصورة عشان تمشي مع الخلفية البيضاء */
.portfolio-featured-image img {
	width: 100%; /* عشان تاخد عرض الـ Container اللي هو 800px */
    height: 400px; /* الحفاظ على أبعاد الصورة عشان ما تمطش */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); /* ظل أنعم بكتير على الخلفية البيضاء */
}
.portfolio-content {
    direction: rtl !important;      /* الاتجاه من اليمين للشمال */
}

/* التأكد من أن جميع العناصر بالداخل تتبع نفس القاعدة */
.portfolio-content p, 
.portfolio-content h1, 
.portfolio-content h2, 
.portfolio-content h3, 
.portfolio-content h4, 
.portfolio-content li {
    text-align: right !important;
}