* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.dropdown-toggle .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 100;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1e3a8a;
    transition: background 0.3s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 20px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu>ul>li {
        border-bottom: 1px solid #f1f5f9;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 10px 0 0 20px;
        margin-top: 10px;
        background: #f8fafc;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu li {
        padding: 0;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:not([style*="background-image"]) {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.slide[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

/* Products */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-section.alt-bg {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.products-with-category {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.category-column {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-height: 400px;
}

.category-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.category-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.category-column h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 900;
}

.category-column p {
    font-size: 16px;
    opacity: 0.95;
}

.category-arrow {
    font-size: 32px;
    font-weight: 900;
    margin-top: 20px;
}

/* Swiper للمنتجات */
.products-swiper {
    padding: 20px 50px;
    overflow: hidden;
}

.products-swiper .swiper-wrapper {
    display: flex;
}

.products-swiper .swiper-slide {
    width: calc(50% - 15px) !important;
    flex-shrink: 0;
}

.products-swiper .product-card {
    width: 100%;
    max-width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    background: #000;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #2563eb;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.swiper-horizontal {
    width: 103%;
}

@media (max-width: 768px) {
    .products-swiper {
        padding: 20px 40px !important;
    }

    .products-swiper .swiper-slide {
        width: 100% !important;
    }

    .products-swiper .product-card {
        width: 100%;
        max-width: 100%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-swiper {
        padding: 20px 30px !important;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.product-badge.sale {
    background: #ef4444;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em;
    /* Fixed height for 2 lines */
    line-height: 1.6;
}

.product-category {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
    /* Fixed height for 2 lines approx */
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: auto;
    /* Push to bottom if content above is short, though heights are fixed now */
}

.price {
    font-size: 28px;
    /* Slightly smaller to fit better */
    color: #2563eb;
    font-weight: 900;
}

.unit {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: auto;
    /* Ensure button is always at the bottom */
}

.btn-product:hover {
    background: #1e40af;
}

/* Features */
.full-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
}

.feature-item h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 900;
}

.feature-item p {
    color: #000;
    line-height: 1.8;
    font-weight: 600;
}

/* About */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 900;
}

.lead {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: #000;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.about-feature span:last-child {
    color: #000;
    font-weight: 700;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #000;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    overflow: hidden;
}

/* تنسيق الصورة داخل الـ avatar */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    color: #000;
    margin-bottom: 5px;
    font-weight: 900;
}

.testimonial-author span {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
}

.btn-white {
    background: white;
    color: #2563eb;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 900;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 32px;
}

.contact-item strong {
    display: block;
    color: #000;
    margin-bottom: 5px;
    font-weight: 900;
}

.contact-item p {
    color: #000;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: white;
}

.social-links .social-link i {
    font-size: 16px;
}

/* Facebook */
.social-links .social-link:nth-child(1) {
    background-color: #1877f2;
}

.social-links .social-link:nth-child(1):hover {
    background-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* Twitter */
.social-links .social-link:nth-child(2) {
    background-color: #1da1f2;
}

.social-links .social-link:nth-child(2):hover {
    background-color: #1a91da;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

/* LinkedIn */
.social-links .social-link:nth-child(3) {
    background-color: #0077b5;
}

.social-links .social-link:nth-child(3):hover {
    background-color: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Instagram */
.social-links .social-link:nth-child(4) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links .social-link:nth-child(4):hover {
    background: linear-gradient(45deg, #e8852e 0%, #d55a33 25%, #c92238 50%, #bb1c5a 75%, #ab177a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-link {
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s;
}

.social-link:hover {
    background: #1e40af;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer-section p {
    line-height: 1.8;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 12px 24px;
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-weight: 700;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1e40af;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-with-category {
        grid-template-columns: 1fr;
    }

    .category-column {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding-right: 20px;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .social-link {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .products-swiper {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}




.client-image {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: block;
}




.testimonials-grid {
    display: flex; /* استخدام flex */
    flex-wrap: wrap; /* يسمح بالتفاف البطاقات */
    gap: 20px; /* مسافة بين البطاقات */
    justify-content: flex-start; /* محاذاة البداية، أو center للتوسيط */
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px); /* 3 بطاقات في الصف مع مراعاة الفراغ */
    box-sizing: border-box;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 280px; /* الحد الأدنى للعرض */
}

/* للتجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%; /* بطاقة تأخذ كامل الشريط على الشاشات الصغيرة */
    }
}
