body {
    font-family: 'Cairo', sans-serif;
}

h1, h2, h3, .navbar-brand {
    font-weight: 700;
}

.main-title {
    font-weight: 900;
    letter-spacing: -1px; 
}


.navbar-nav .nav-link {
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
    background-color: #ffc107;
    color: #000 !important;
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffc107;
}

.dropdown-item:hover {
    background-color: #ffc107 !important;
    color: #000 !important;
}
/* navbar end ***************************** */

.hero-section {
    background: #0b0d10;
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./photos/hero.jpeg'); /* غير المسار لصورتك */
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 2s ease-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1);
}

.tracking-widest { letter-spacing: 0.2rem; }

.animate-up { animation: fadeInUp 1s forwards; opacity: 0; }
.animate-up-delayed { animation: fadeInUp 1s 0.3s forwards; opacity: 0; }
.animate-up-more { animation: fadeInUp 1s 0.6s forwards; opacity: 0; }

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

.custom-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.particle {
    position: absolute;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 2px;
}

/* second section start *********** */
.service-card {
    border-radius: 15px;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #ffc107;
}
.icon-box i {
    display: block;
}

/* second section End *********** */

/* Section Three Start  */
    
    .project-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .project-item.show {
        opacity: 1;
        transform: translateY(0);
    }

    .project-card {
        transition: transform 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background-color: #2b3035 !important; /* لون بوتستراب Dark */
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
    }

    .project-img {
        height: 250px;
        object-fit: cover;
    }

    .btn-warning {
        font-weight: bold;
        border-radius: 50px;
    }
/* Section Three End  */
/* Five Section Start  */
.testimonial-card {
    max-width: 700px;
    border-bottom: 4px solid #ffc107;
    transition: all 0.4s ease;
}

/* تأثير التكبير الخفيف للسلايدر النشط */
.carousel-item.active .testimonial-card {
    transform: scale(1.02);
}

.quote-icon i {
    opacity: 0.3;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
/* Five Section End  */

/* Footer Start  */
/* زر الواتساب */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* تأثيرات الروابط في الفوتر */
.footer-links a:hover {
    color: #ffc107 !important;
    padding-right: 10px;
    transition: all 0.3s ease;
}

/* تعديل اتجاه الأيقونات في الـ RTL */
[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}
/* Footer End  */


/* sticky logo start  */
/* كلاس مخصص لتثبيت اللوجو في الزاوية */
.fixed-top-start {
    position: fixed;
    top: 80px; /* ليظهر أسفل النافبار */
    left: 20px; /* أو right: 20px حسب رغبتك */
    transition: transform 0.3s ease-in-out;
}

/* تأثير عند تمرير الماوس لجعل الموقع تفاعلي */
.fixed-top-start:hover {
    transform: scale(1.1);
}

/* إذا كان الشعار يغطي النص في الموبايل، نتحكم في ظهوره */
@media (max-width: 768px) {
    .fixed-top-start {
        top: 70px;
        left: 10px;
    }
    .fixed-top-start img {
        width: 70px !important; /* تصغير الحجم في الجوال */
    }
}
/* sticky logo end  */

