@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
}

.page-header {
    background-color: #1e88e5;
    color: white;
    padding: 60px 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Hero Image Styles */
.hero-section {
    background: url('https://elshekhmmdoh.com/images/logo.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.service-card {
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.feature-badge {
    background-color: #1e88e5;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 5px;
    display: inline-block;
    font-size: 14px;
}

/* Gallery Image Styles */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-card .card-body {
    padding: 1.5rem;
}

.gallery-icon {
    font-size: 48px;
    color: #1e88e5;
    margin: 20px 0;
}

.gallery-title {
    color: #1e88e5;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-info {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.whatsapp-button {
    background-color: #25d366;
    border-color: #25d366;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

.stats-section {
    background-color: #1e88e5;
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vision-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #f8f9fa;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.vision-icon {
    font-size: 48px;
    color: #1e88e5;
    margin: 20px 0;
}

/* Footer Styles */
.gradient-footer {
    background: linear-gradient(135deg, #1a237e 0%, #1976d2 100%) !important;
    position: relative;
    z-index: 1;
    color: #ffffff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.gradient-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a237e 0%, #1976d2 100%);
    z-index: -1;
}

.contact-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.quick-links-section {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.quick-links-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.quick-link {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 5px;
}

.quick-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-section {
    padding: 32px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.social-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #ffffff;
}

.social-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
}

.social-button i {
    font-size: 20px;
    color: #ffffff;
}

.social-button.facebook {
    background-color: #1877f2;
}

.social-button.facebook:hover {
    background-color: #0d6aed;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-button.telegram {
    background-color: #0088cc;
}

.social-button.telegram:hover {
    background-color: #0077b3;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.social-button.tiktok {
    background-color: #000000;
}

.social-button.tiktok:hover {
    background-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-button.youtube {
    background-color: #ff0000;
}

.social-button.youtube:hover {
    background-color: #e60000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* Clients Page Styles */
.client-category-card {
    border-radius: 15px;
    background-color: white;
    transition: transform 0.3s ease;
}

.client-category-card:hover {
    transform: translateY(-5px);
}

.testimonial-card {
    border-radius: 15px;
    background-color: white;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://elshekhmmdoh.com/images/logo.jpg') center/cover no-repeat fixed;
    color: white;
    padding: 120px 0;
    position: relative;
}

.story-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #1e88e5;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.achievement-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 150px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #1e88e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.team-member-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #1e88e5;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-card {
    background: linear-gradient(135deg, #1e88e5, #1a237e);
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 15px;
}

.project-card img {
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
}

.testimonial-content:before {
    content: '"';
    font-size: 60px;
    color: #1e88e5;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Stats Section Animation */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.feature-badge {
    background: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
}

/* Services Card Hover Effects */
.service-card {
    overflow: hidden;
}

.service-card img {
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(135deg, #1976d2, #1a237e);
    color: white;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Additional Animations */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 30px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* تنسيقات محسنة لقسم آراء العملاء */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%231e88e5" opacity="0.1"/></svg>') repeat;
    opacity: 0.5;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-content {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.testimonial-content::before {
    content: '"';
    font-family: Arial, sans-serif;
    font-size: 4rem;
    color: #1e88e5;
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1e88e5;
}

.rating {
    font-size: 0.9rem;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

/* تأثيرات حركية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    opacity: 0;
}

.wow.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
}

/* Client Logos Section */
.client-logo {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* تحسينات إضافية للتصميم */
.satisfaction-stat {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.satisfaction-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    transition: transform 0.3s ease;
}

.satisfaction-stat:hover .stat-icon {
    transform: scale(1.1);
}

/* تحسين مظهر بطاقات العملاء */
.client-category-card {
    border: none;
    transition: all 0.3s ease;
    background: white;
}

.client-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* تحسين مظهر التقييمات */
.rating i {
    color: #ffc107;
    margin-right: 2px;
}

/* تحسين مظهر الشارات */
.badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: normal;
}

/* تحسين أقسام الإحصائيات */
.stats-section {
    background: linear-gradient(135deg, #1976d2, #1a237e);
    margin: 0 -15px;
    padding: 60px 30px;
}

.stat-item {
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* تحسينات إضافية لصفحة العملاء */
.client-logo {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-category-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    overflow: hidden;
    position: relative;
}

.client-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e88e5, #1a237e);
    transition: height 0.3s ease;
}

.client-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.client-category-card:hover::before {
    height: 8px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 120px;
    color: #1e88e5;
    opacity: 0.1;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1e88e5;
    padding: 2px;
}

.stats-section {
    background: linear-gradient(135deg, #1a237e, #1976d2);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-item div:not(.stat-number) {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.feature-badges {
    margin-top: 1rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(30,136,229,0.1);
    color: #1e88e5;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(30,136,229,0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .client-logo {
        margin-bottom: 1rem;
    }
    
    .client-category-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* تحسينات جديدة لصفحة العملاء */
.client-logo {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.client-logo img {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-category-card {
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    height: 100%;
}

.client-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.client-category-card .fa-check {
    background: #4caf50;
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
}

.testimonial-card {
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.testimonial-content {
    position: relative;
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    background: rgba(30, 136, 229, 0.03);
    border-radius: 15px;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '"';
    font-family: Arial, sans-serif;
    font-size: 5rem;
    color: #1e88e5;
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    background: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
    margin: 3px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(30, 136, 229, 0.2);
    transform: translateY(-2px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: white;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1e88e5;
    padding: 2px;
    background: white;
}

.stats-section {
    background: linear-gradient(135deg, #1976d2, #1a237e);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="white" opacity="0.1"/></svg>') repeat;
}

.stat-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Section for Clients Page */
.clients-hero {
    background: linear-gradient(135deg, #1976d2, #1a237e);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.clients-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Client Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    margin-bottom: 1.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1976d2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Client Logo Cards */
.client-logo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.client-logo-card img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Categories Section */
.category-card {
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(25,118,210,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: #1976d2;
    color: white !important;
}

.category-card:hover .category-icon i {
    color: white !important;
}

/* Feature List */
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(25,118,210,0.1);
}

/* Testimonial Cards Enhanced */
.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    background: rgba(25,118,210,0.03);
}

.testimonial-content::before {
    content: '"';
    font-family: Arial, sans-serif;
    font-size: 4rem;
    color: #1976d2;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-author {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1976d2;
    padding: 2px;
}

.rating i {
    color: #ffc107;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* CTA Section Enhanced */
.cta-section {
    background: linear-gradient(135deg, #1976d2, #1a237e);
    position: relative;
    overflow: hidden;
}

.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    animation: moveBg 20s linear infinite;
}