.btn {
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 8px;
}

.btn-primary {
    background-color: #1c3faa;
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: #1633a3;
    color: #fff;
}

/* قسم الهيرو */
.hero-section {
    /*  background: linear-gradient(135deg, #2c82c9, #74b6ec);*/
    background: linear-gradient(135deg, #1c3faa, #1ca9e6);
    padding: 60px 0;
    border-bottom: 1px solid #d0e5f2;
}

.hero-section h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-section p {
    font-size: 1.1rem;
    color: #ffffff;
}

.hero-section .btn-primary {
    background-color: #1c3faa;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 6px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: floatUpDown 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .btn-primary {
        padding: 10px 20px;
    }
}
.why-us-section {
    background: linear-gradient(135deg, #1c3faa, #1ca9e6);
    color: #fff;
}

.why-us-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.why-us-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-us-box img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.why-us-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
#upload-section {
    background-color: #f9fcff;
    padding-bottom: 80px;
}
/* خلفية جذابة للقسم */
.download-app-section {
    background: linear-gradient(135deg, #f0faff, #ffffff);
    border-top: 1px solid #e0eff7;
    border-bottom: 1px solid #e0eff7;
}

/* حركة الصورة تطفو لأعلى وأسفل */
.floating-img {
    animation: floatY 4s ease-in-out infinite;
    will-change: transform;
}

/* حركة الانسياب */
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* تحميل مكتبة animate.css (مرة واحدة فقط في header.html إن لم تكن موجودة) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
.program-windows-section {
    background: linear-gradient(135deg, #3f51b5, #5a91d6);
    border-radius: 12px;
    padding: 60px 20px;
    color: white;
}

.animated-float {
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.our-advantages-section {
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    border-top: 1px solid #e2e8f0;
}

.advantages-list .icon {
    width: 60px;
    height: 60px;
    background-color: #e9f3fc;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantages-list .icon img {
    width: 30px;
    height: 30px;
}

.animated-float {
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
/* SECTION: آراء العملاء */
.testimonials-section {
    background-color: #f9fafb;
    font-family: 'Tajawal', sans-serif;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}
/*.testimonials-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    color: #1c1e21;
}*/
.testimonials-section {
    background: linear-gradient(135deg, #1c3faa, #1ca9e6);
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 15px;
}

.footer-links li a i {
    margin-left: 8px;
    color: #fff;
    font-size: 12px;
    transition: margin 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

.footer-links li a:hover i {
    margin-left: 12px;
    color: #ffffff;
}

<!-- تحسين الشكل الخاص بالأسئلة -- > .accordion-button {
    background-color: #ffffff;
    color: #1c3faa;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #e9f3ff;
    color: #0d47a1;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

.accordion-body {
    background: #fff;
    border-top: 1px solid #eaeaea;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 1rem 1.25rem;
}
.advantages-list .icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.advantages-list .icon {
    width: 52px;
    height: 52px;
    background-color: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnino {
    background-color: #2d72d9;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}
.btnino:hover {
    background-color: #3586ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}
