/* --- THE FOUNDERS AI - 2025/2026 UI/UX Redesign --- */
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;600;700;800&display=swap');

/* --- 1. Core Variables & Global Styles --- */
:root {
    --bg-color: #1a1a1a;
    --primary-accent: #B80000;
    --primary-accent-hover: #e00000;
    --text-light: #f0f0f0;
    --text-dark: #252525;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(37, 37, 37, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-family: 'Changa', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}
a {
    color:#fff !important;
    text-decoration: underline;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(184, 0, 0, 0.3), transparent 30%),
                radial-gradient(circle at 80% 90%, rgba(184, 0, 0, 0.2), transparent 40%);
    z-index: -1;
    animation: gradient-flow 20s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Glassmorphism Effect --- */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- 3. Header & Hero Section --- */
header {
    padding: 40px 0;
    text-align: center;
}

.logo-img {
    max-width: 220px;
    height: auto;
}

.hero {
    text-align: center;
    padding: 40px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(184, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 4. Multi-Step Form --- */
.multi-step-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
    transition: all 0.5s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

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

.form-group {
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 15px rgba(184, 0, 0, 0.5);
    background: rgba(0,0,0,0.3);
}

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

.progress-bar-container {
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    border-radius: 20px;
    height: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: var(--primary-accent);
    border-radius: 20px;
    transition: width 0.5s ease-in-out;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* --- 5. Buttons --- */
.cta-button {
    justify-content: center;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--primary-accent);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-family);
    gap: 10px;
}

.cta-button:hover {
    background: var(--primary-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 0, 0, 0.3);
}

.nav-btn.prev-btn {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}
.nav-btn.prev-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

/* --- 6. Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    padding: 40px;
}

.modal-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* --- 7. Responsive Design --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .multi-step-form {
        padding: 25px;
    }
    .form-navigation {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* --- 8. UI/UX Form Enhancements --- */

/* Tone Slider Style */
.tone-selector {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.tone-option {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.tone-option.selected {
    background-color: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
    transform: scale(1.05);
}
.tone-option small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.tone-option.selected small {
    color: rgba(255, 255, 255, 0.7);
}

/* Color Picker Style */
.color-picker-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
input[type="color"] {
    -webkit-appearance: none;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    transition: transform 0.2s ease;
}
input[type="color"]:hover {
    transform: scale(1.1);
}
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 50%;
}
input[type="color"]::-webkit-color-swatch {
    border: 2px solid var(--glass-border);
    border-radius: 50%;
}

.color-swatches-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    min-height: 40px;
}
.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    position: relative;
}
.remove-color-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #333;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}
.color-swatch:hover .remove-color-btn {
    transform: scale(1.1);
}
/* --- 9. Inline Form Validation --- */
.form-group {
    position: relative;
    padding-bottom: 20px; /* Add space for error message */
}
.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    position: absolute;
    bottom: 0;
    right: 5px;
    display: none; /* Hidden by default */
}
.input-error {
    border-color: var(--error-color) !important;
}
.input-error:focus {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5) !important;
}

/* --- 9. Inline Form Validation & Fixes --- */
.form-group {
    position: relative;
    padding-bottom: 22px; /* Space for error message */
}
.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    position: absolute;
    bottom: 0;
    right: 5px;
    display: none;
}
.input-error {
    border-color: var(--error-color) !important;
}
.input-error:focus {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5) !important;
}

/* Fix for white text background on request view page */
.delivered-files-list li, .delivered-files-list li span, .delivered-files-list li a {
    background: transparent !important;
    color: var(--text-light) !important;
    font-family: var(--font-family);
}
.delivered-files-list li {
    background-color: var(--glass-border) !important;
}
/* --- 10. Packages Section & Responsive Fixes --- */
.packages-section {
    padding: 50px 0;
    text-align: center;
}
.packages-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}
.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
}
.package-card h3 {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
}
.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
}
.package-card ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
}
.package-card ul li i {
    color: var(--primary-accent);
    margin-left: 10px;
}

/* Responsive fix for Tone Selector */
@media (max-width: 768px) {
    .tone-selector {
        flex-wrap: wrap;
    }
    .tone-option {
        flex-basis: 45%; /* Two items per row */
    }
}

/* --- Homepage Specific Styles --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-accent);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
    text-align: center;
}

.service-card {
    padding: 40px 30px;
}

.service-card i {
    color: var(--primary-accent);
    margin-bottom: 20px;
}

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

.blog-preview {
    padding: 60px 0;
    text-align: center;
}

.blog-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-preview-card {
    text-decoration: none;
    color: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
}

.post-preview-card:hover {
    transform: translateY(-10px);
}

.post-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-preview-content {
    padding: 20px;
    text-align: right;
}

.category-badge {
    background-color: var(--primary-accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.post-preview-content h3 {
    margin-top: 10px;
    font-size: 1.2rem;
}
/* --- New Homepage Sections --- */
.why-us, .services-detailed {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 30px;
}

.feature-card i {
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-detailed-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin-bottom: 30px;
    gap: 20px;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h4 {
    color: var(--primary-accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-icon {
    flex-basis: 100px;
    text-align: center;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav { display: none; } /* Simple hide on mobile for now */
    .service-detailed-card {
        flex-direction: column-reverse;
        text-align: center;
    }
}
/* --- Pagination Styles --- */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
}
/* --- New Blog Post Design (2025-2026 Trends) --- */
.post-page-body {
    background-color: #111; /* Darker background for focus */
}

.post-container-new {
    max-width: 800px;
    margin: 40px auto;
}

.post-content-new {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 50px;
}

.post-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.category-badge-new {
    display: inline-block;
    background-color: var(--primary-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 20px;
}

.post-header-new h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
}

.post-meta-new {
    color: var(--text-muted);
    margin-top: 15px;
}

.post-featured-image-new {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
}

.post-body-new {
    font-size: 1.15rem;
    line-height: 2;
    color: #e0e0e0;
}

.post-body-new p, .post-body-new li {
    margin-bottom: 1.5em;
}

.post-body-new h2, .post-body-new h3 {
    color: var(--text-light);
    margin-top: 2em;
    margin-bottom: 1em;
}

.post-tags-new {
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.tag-new {
    display: inline-block;
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tag-new:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}
/* --- Main Footer Styles --- */
.main-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* --- New Responsive Header & Mobile Menu (2025-2026 Trend) --- */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    position: relative; /* For icon positioning */
    width: 30px;
    height: 30px;
}

.burger-menu .close-icon {
    display: none;
}

.burger-menu.active .open-icon {
    display: none;
}

.burger-menu.active .close-icon {
    display: block;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .main-nav {
        /* Start hidden off-screen to the right */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        
        /* General styles */
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.9); /* Darker, more immersive background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        padding: 40px;
    }
    
    .main-nav.active {
        /* Slide in from the right */
        transform: translateX(0);
    }

    .main-nav .nav-link, .main-nav .cta-button {
        font-size: 1.5rem; /* Larger, more tappable text */
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    /* Staggered animation for links when menu is active */
    .main-nav.active .nav-link,
    .main-nav.active .cta-button {
        opacity: 1;
        transform: translateY(0);
    }
    .main-nav.active .nav-link:nth-child(1) { transition-delay: 0.2s; }
    .main-nav.active .cta-button:nth-child(2) { transition-delay: 0.3s; }
    
    .burger-menu {
        display: block;
    }

/* --- Blog & Archive Page Design --- */
.blog-page-container {
    padding: 50px 0;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}

/* Re-using the posts-grid class for a consistent layout */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-preview-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}


}

---

### **3. إضافة تنسيقات CSS**

**الملف:** `public_html/css/style.css`

**الكود (أضف هذا الكود في نهاية الملف):**
```css
/* --- Generic Page Styles --- */
.page-container {
    max-width: 900px;
    margin: 40px auto;
}

.page-content {
    padding: 40px 50px;
    border-radius: 20px;
}

.page-header {
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-accent);
}

.page-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.page-body p, .page-body li, .page-body h2, .page-body h3 {
    margin-bottom: 1.5em;
}
/* --- New Footer Design --- */
.main-footer {
    padding: 50px 0 20px 0;
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}
/* --- START: Styles for Static Pages (About, Contact, FAQ) --- */

.page-container-static {
    max-width: 900px;
    margin: 40px auto;
}

.page-content-static {
    padding: 40px 50px;
}

.page-header-static {
    text-align: center;
    margin-bottom: 40px;
}

.page-header-static h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(184, 0, 0, 0.4);
}

.page-header-static p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Page Styles */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background: var(--glass-border);
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.faq-item summary::after {
    content: '\\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    color: var(--primary-accent);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

/* Contact Page Styles */
.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    padding: 30px;
    text-align: center;
}

.contact-card .icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}
.whatsapp-btn:hover {
    background-color: #1DAA50;
}

.email-link {
    color: var(--primary-accent);
    font-weight: 600;
    word-break: break-all;
}

/* About Us Page Styles */
.values-list {
    list-style: none;
    padding: 0;
    text-align: right;
    max-width: 600px;
    margin: 30px auto;
}

.values-list li {
    background: var(--glass-border);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
    border-right: 4px solid var(--primary-accent);
}

.values-list li:hover {
    transform: translateY(-3px);
}

.values-list i {
    color: var(--primary-accent);
    font-size: 1.8rem;
    margin-left: 20px;
}

.values-list strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

/* --- END: Styles for Static Pages --- */
/* --- Logo Showcase Styles (with Scroll Animation) --- */
.logo-card {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1; /* يجعل البطاقة مربعة */
    border-radius: 20px; /* زوايا أكثر استدارة */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
    /* Animation Start State: Hidden */
    opacity: 0;
    transform: translateY(30px); /* يبدأ من الأسفل قليلاً */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.logo-card.is-visible {
    /* Animation End State: Visible */
    opacity: 1;
    transform: translateY(0);
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.02); /* تأثير رفع وتكبير بسيط عند التحويم */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.logo-card-image {
    max-width: 90%; /* مساحة بيضاء بسيطة حول الشعار */
    max-height: 90%;
    height:100% !important;
    object-fit: contain;
    border-radius: 8px;
}

/* Staggered animation for a nicer effect */
<?php for ($i = 1; $i <= 20; $i++): ?>
.logo-card:nth-child(<?php echo $i; ?>).is-visible {
    transition-delay: <?php echo $i * 0.05; ?>s;
}
<?php endfor; ?>