.beneficiaries-section {
    background-color: #f9f9f9;
}

.benefit-card {
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    color: var(--primary);
}

.section-title {
    font-size: 2.4rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}
.benefit-card p{
color:black;
}
        :root {
            --primary: #4361ee;
            --primary-light: #4895ef;
            --secondary: #3f37c9;
            --accent: #4cc9f0;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #495057;
            --gray: #adb5bd;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --gold: #ffd166;
            --purple: #7209b7;
            --success: #06d6a0;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.18);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--light-gray);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(76, 201, 240, 0.05) 0%, transparent 30%);
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0.1;
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* شريط التنقل المحدث */
        .navbar {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 12px 0;
            transition: var(--transition);
            border-bottom: 1px solid var(--glass-border);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }

        .logo-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light-gray);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 10px 18px;
            border-radius: 10px;
            transition: var(--transition);
            display: block;
        }

        .nav-links a:hover {
            color: var(--accent);
            background: rgba(76, 201, 240, 0.1);
        }

        /* إزالة الخط السفلي من الروابط */
        .nav-links a::after {
            display: none;
        }

        .nav-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
        }

        .nav-btn:hover::after {
            opacity: 1;
        }

        /* السلايدر الرئيسي المحدث */
        .hero-slider {
            position: relative;
            height: 100vh;
            min-height: 800px;
            overflow: hidden;
            margin-top: 80px;
            border-radius: 0 0 40px 40px;
        }

        .slides-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 0 30px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .btn {
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            z-index: 1;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary);
            
        }
        
        a.btn {
            text-decoration: none !important;
        }

        .btn-primary::after {
            background: var(--gradient);
            opacity: 0;
        }

        .btn-primary:hover {
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline::after {
            background: var(--white);
            opacity: 0;
        }

        .btn-outline:hover {
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-outline:hover::after {
            opacity: 1;
        }

        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .slider-dot:hover::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--white);
            transform: scale(1.3);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }

        .slider-arrow {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* نظام توكيد الدولي - تصميم حديث */
        .document-system {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .system-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 5px;
            background: var(--gradient);
            border-radius: 5px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .barcode-overlay {
            position: relative;
            max-width: 900px;
            height: 350px;
            margin: 0 auto 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--glass-bg);
            /*var(--glass-bg);*/
            backdrop-filter: blur(10px);
            border-radius: 25px;
            box-shadow: var(--glass-shadow);
            overflow: hidden;
            z-index: 2;
            border: 1px solid var(--glass-border);
        }

        .barcode-overlay::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(67, 97, 238, 0.1), transparent 30%);
            animation: rotate 6s linear infinite;
            z-index: 1;
        }

        .central-logo {
            width: 200px;
            z-index: 3;
            transition: var(--transition);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        .central-logo:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .barcode-animation-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .barcode-pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .barcode-item {
            height: 20px;
            background: rgba(67, 97, 238, 0.03);
            margin: 3px 0;
            animation: barcodeScan 6s linear infinite;
            position: relative;
        }

        .barcode-item:nth-child(2n) {
            background: rgba(63, 55, 201, 0.07);
        }

        .barcode-line-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
            box-shadow: 0 0 20px var(--gold);
            animation: scanLine 4s infinite ease-in-out;
            z-index: 2;
        }

        .system-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 70px;
        }

        .info-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            z-index: 2;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            opacity: 0;
            transform: translateY(30px);
        }

        .info-card.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .info-card:nth-child(1) { animation-delay: 0.1s; }
        .info-card:nth-child(2) { animation-delay: 0.2s; }
        .info-card:nth-child(3) { animation-delay: 0.3s; }
        .info-card:nth-child(4) { animation-delay: 0.4s; }

        .info-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            transition: var(--transition);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .info-card:hover::before {
            height: 100%;
            opacity: 0.1;
        }

        .info-card i {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .info-card:hover i {
            transform: scale(1.15);
            color: var(--gold);
        }

        .info-card h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .info-card p {
            color: var(--light-gray);
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px; /* تقليل المسافة السفلية */
        }

        .feature-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 35px 30px;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-item.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }
        .feature-item:nth-child(6) { animation-delay: 0.6s; }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .feature-item h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-item h4 i {
            width: 55px;
            height: 55px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            transition: var(--transition);
        }

        .feature-item:hover h4 i {
            background: var(--gradient);
            color: var(--white);
            transform: rotate(10deg);
        }

        .feature-item p {
            color: var(--light-gray);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .search-section {
            background: var(--gradient);
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.3);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .search-section.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .search-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            z-index: 1;
        }

        .search-section h2 {
            color: var(--white);
            font-size: 2.2rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .search-box {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            height: 65px;
        }

        .search-input {
            flex: 1;
            border: none;
            padding: 0 25px;
            font-size: 1.15rem;
            outline: none;
            background: transparent;
            font-family: 'Cairo', sans-serif;
        }

        .search-btn {
            background: var(--gold);
            color: var(--dark);
            border: none;
            padding: 0 35px;
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-btn:hover {
            background: #ffc83d;
            padding: 0 40px;
        }

        /* قسم المسار الزمني المحدث */
        .timeline-section {
            padding: 80px 0 120px; /* تقليل المسافة العلوية */
            position: relative;
            overflow: hidden;
        }

        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .timeline-line {
            position: absolute;
            top: 0;
            right: 50%;
            transform: translateX(50%);
            width: 6px;
            height: 100%;
            background: var(--gradient);
            z-index: 1;
            border-radius: 10px;
        }

        .timeline-item {
            position: relative;
            width: 100%;
            margin-bottom: 80px;
            display: flex;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
        }

        .timeline-item.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }

        .timeline-item.right {
            justify-content: flex-end;
        }

        .timeline-item.left {
            justify-content: flex-start;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            right: 50%;
            transform: translateX(50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 6px var(--primary), var(--shadow);
            z-index: 3;
            transition: var(--transition);
        }

        .timeline-dot i {
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-dot {
            transform: translateX(50%) scale(1.1);
            box-shadow: 0 0 0 8px var(--primary), 0 10px 30px rgba(67, 97, 238, 0.4);
        }

        .timeline-item:hover .timeline-dot i {
            color: var(--secondary);
            transform: rotate(15deg);
        }

        .timeline-content {
            width: calc(50% - 70px);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 35px;
            box-shadow: var(--glass-shadow);
            position: relative;
            transition: var(--transition);
            border: 1px solid var(--glass-border);
        }

        .timeline-content::before {
            content: "";
            position: absolute;
            top: 40px;
            width: 25px;
            height: 25px;
            background: var(--glass-bg);
            transform: rotate(45deg);
            box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .timeline-item.right .timeline-content::before {
            right: -12px;
        }

        .timeline-item.left .timeline-content::before {
            left: -12px;
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .timeline-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .timeline-year {
            background: var(--gradient);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 1.2rem;
            margin-left: 15px;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }

        .timeline-title h3 {
            font-size: 1.6rem;
            color:#ffffff;/* var(--white);*/
            font-weight: 700;
        }

        .timeline-text {
            color: var(--light-gray);
            line-height: 1.9;
            font-size: 1.05rem;
        }

        /* Footer - التصميم المحسن */
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 100px 0 20px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(76, 201, 240, 0.1);
        }

        footer::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%230f172a" fill-opacity="1" d="M0,64L80,58.7C160,53,320,43,480,48C640,53,800,75,960,74.7C1120,75,1280,53,1360,42.7L1440,32L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z"></path></svg>');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-title {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--accent);
            position: relative;
            padding-bottom: 12px;
            font-weight: 700;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            border-radius: 3px;
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: var(--accent);
            transform: rotate(5deg);
        }

        .contact-icon i {
            color: var(--accent);
            font-size: 18px;
        }

        .contact-item:hover .contact-icon i {
            color: #0f172a;
        }

        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--accent);
        }

        .contact-details p {
            color: #cbd5e0;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links li:hover {
            transform: translateX(10px);
        }

        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            font-size: 17px;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links a i {
            margin-left: 10px;
            color: var(--accent);
            font-size: 14px;
        }

        .newsletter p {
            color: #cbd5e0;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            background: rgba(255, 255, 255, 0.15);
            outline: none;
            box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.3);
        }

        .newsletter-form input::placeholder {
            color: #a0aec0;
        }

        .newsletter-form button {
            background: linear-gradient(90deg, var(--accent), #4cc9f0);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            color: #0f172a;
            transform: translateY(-5px);
        }

        .map-container {
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: url('https://images.unsplash.com/photo-1587334274535-64e1ca0e34e6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
            position: relative;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 600;
        }

        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            font-size: 15px;
            position: relative;
            z-index: 2;
        }

        .copyright p {
            margin-bottom: 10px;
        }

        .footer-logo {
            width: 120px;
            margin: 0 auto 15px;
            filter: brightness(0) invert(1) opacity(0.8);
        }

        .yemen-pattern {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 200px;
            opacity: 0.05;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="266.7" fill="%23CE1126"/><rect y="266.7" width="1200" height="266.7" fill="%23FFFFFF"/><rect y="533.3" width="1200" height="266.7" fill="%23000000"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* تأثيرات الحركة */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scanLine {
            0% {
                top: 0;
            }
            50% {
                top: 100%;
            }
            100% {
                top: 0;
            }
        }

        @keyframes barcodeScan {
            0% {
                background: rgba(67, 97, 238, 0.03);
            }
            50% {
                background: rgba(67, 97, 238, 0.1);
            }
            100% {
                background: rgba(67, 97, 238, 0.03);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

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

        /* التجاوب مع الأجهزة المختلفة */
        @media (max-width: 1200px) {
            .slide-content h1 {
                font-size: 3.2rem;
            }
            
            .slide-content p {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
            
            .timeline-line {
                right: 40px;
            }
            
            .timeline-item {
                padding-right: 70px;
                justify-content: flex-start !important;
            }
            
            .timeline-item.right, .timeline-item.left {
                justify-content: flex-start;
            }
            
            .timeline-dot {
                right: 40px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-content::before {
                right: -12px !important;
                left: auto !important;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .slide-content h1 {
                font-size: 2.4rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .slider-arrow {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .hero-slider {
                min-height: 700px;
            }
            
            .search-section {
                padding: 35px 20px;
            }
            
            .search-section h2 {
                font-size: 1.7rem;
            }
            
            .search-box {
                height: 55px;
            }
            
            .search-input {
                padding: 0 15px;
                font-size: 1rem;
            }
            
            .search-btn {
                padding: 0 25px;
                font-size: 1.1rem;
            }
        }
        
/* أنماط النافذة المنبثقة */
.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 201, 240, 0.2);
    overflow: hidden;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 25px;
    background: rgba(67, 97, 238, 0.1);
    border-bottom: 1px solid rgba(76, 201, 240, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(76, 201, 240, 0.2);
}

.tech-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tech-feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-left: 20px;
    min-width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tech-feature:hover i {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.tech-feature h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.tech-feature p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.modal-footer {
    padding: 20px 30px;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(76, 201, 240, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-footer .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .tech-feature {
        flex-direction: column;
    }
    
    .tech-feature i {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* أنماط نماذج الحماية */
.protection-samples {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.sample-item {
    display: flex;
    gap: 25px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(76, 201, 240, 0.1);
    transition: var(--transition);
}

.sample-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 201, 240, 0.3);
}

.sample-item img {
    width: 250px;
    object-fit: cover;
    border-right: 1px solid rgba(76, 201, 240, 0.1);
}

.sample-info {
    padding: 20px;
    flex: 1;
}

.sample-info h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(76, 201, 240, 0.3);
}

.sample-info ul {
    list-style: none;
}

.sample-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--light-gray);
}

.sample-info li i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .sample-item {
        flex-direction: column;
    }
    
    .sample-item img {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(76, 201, 240, 0.1);
    }
}



/* أنماط خطوات العملية */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content ul {
    list-style: none;
    margin-top: 10px;
    padding-right: 15px;
}

.step-content li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.step-content li:before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: -5px;
}

/* أنماط ميزات التطبيق */
.app-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.feature:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateY(-3px);
}

.feature i {
    font-size: 1.8rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text);
    font-size: 0.95rem;
}

/* خيارات التحميل */
.download-options {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--primary-light);
}

.download-options h4 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.store {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.store:hover {
    transform: scale(1.1);
}

.store i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.store p {
    font-size: 0.9rem;
    color: var(--text);
}

/* تعديلات للجوال */
@media (max-width: 768px) {
    .process-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature i {
        margin-bottom: 10px;
    }
    
    .stores {
        gap: 20px;
    }
}

  .demo-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .demo-modal.active {
            display: flex;
            opacity: 1;
        }

        .demo-content {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: translateY(50px);
            transition: transform 0.4s ease;
            border: 1px solid rgba(76, 201, 240, 0.2);
        }

        .demo-modal.active .demo-content {
            transform: translateY(0);
        }

        .demo-header {
            background: var(--gradient);
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .demo-header h3 {
            color: var(--white);
            font-size: 1.8rem;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            left: 20px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .demo-body {
            padding: 30px;
        }

        .demo-form .form-group {
            margin-bottom: 20px;
        }

        .demo-form label {
            display: block;
            margin-bottom: 8px;
            color: var(--light-gray);
            font-weight: 500;
        }

        .demo-form input,
        .demo-form textarea {
            width: 100%;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid rgba(76, 201, 240, 0.3);
            background: rgba(15, 23, 42, 0.5);
            color: var(--light-gray);
            font-size: 1rem;
            transition: var(--transition);
        }

        .demo-form input:focus,
        .demo-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.2);
        }

        .demo-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .demo-footer {
            padding: 20px;
            text-align: center;
        }

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

        .logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo img {
            width: 120px;
            height: auto;
            margin-bottom: 15px;
        }

        .logo h1 {
            font-size: 2.5rem;
            color: var(--white);
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--success);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            display: none;
            z-index: 1001;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .download-progress {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(76, 201, 240, 0.2);
            display: none;
            z-index: 1001;
        }

        .download-progress .progress-bar {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 0.4s ease;
        }

        @media (max-width: 768px) {
            .modal-body {
                padding: 20px;
                gap: 20px;
            }
            
            .feature {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .modal-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }


.beneficiaries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.beneficiaries-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234361ee" opacity="0.05" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
    background-size: cover;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #4cc9f0);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider {
    width: 100px;
    height: 2px;
    background: rgba(67, 97, 238, 0.3);
    margin: 30px auto;
}

.beneficiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.beneficiary-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.1);
    z-index: 1;
}

.beneficiary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.beneficiary-card h3 {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 20px;
    position: relative;
}

.beneficiary-card ul {
    list-style: none;
    padding-right: 20px;
}

.beneficiary-card ul li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.6;
}

.beneficiary-card ul li::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #4cc9f0;
    border-radius: 50%;
}

.hover-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beneficiary-card:hover .hover-effect {
    opacity: 1;
}

.partners-logos {
    text-align: center;
    margin-top: 60px;
}

.partners-logos h4 {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 30px;
    font-weight: 500;
}

.logos-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
}

.logos-slider img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logos-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .beneficiaries-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .beneficiaries-section {
        padding: 60px 0;
    }
    
    .beneficiaries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logos-slider {
        gap: 20px;
    }
    
    .logos-slider img {
        height: 40px;
    }
}

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

.beneficiary-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.beneficiary-card:nth-child(1) { animation-delay: 0.1s; }
.beneficiary-card:nth-child(2) { animation-delay: 0.2s; }
.beneficiary-card:nth-child(3) { animation-delay: 0.3s; }
.beneficiary-card:nth-child(4) { animation-delay: 0.4s; }
.beneficiary-card:nth-child(5) { animation-delay: 0.5s; }
.beneficiary-card:nth-child(6) { animation-delay: 0.6s; }