/* New Services Section Styles */
.new-services-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d3748;
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
}

/* Services Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 100%;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

/* Card Illustration */
.card-illustration {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Title */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 20px 0;
    font-family: 'Vazirmatn', sans-serif;
}

/* Service List (for cards 1, 2, 3, and 4) */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    width: 100%;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse; /* For RTL layout */
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    flex: 1;
}

.service-list li a:hover {
    color: #00A69B;
    padding-right: 10px;
    transform: translateX(-5px);
}

.service-list li:hover {
    background: rgba(0, 166, 155, 0.02);
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Brand Logos (for cards 3 and 4) */
.brand-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.brand-item:hover {
    background: #f7fafc;
}

.brand-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-item span {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

/* More Items Button */
.more-items-btn {
    background: #ffffff;
    color: #00A69B;
    border: 2px solid #00A69B;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Vazirmatn', sans-serif;
    margin-top: auto;
}

.more-items-btn:hover {
    background: #00A69B;
    color: #ffffff;
    transform: translateY(-2px);
}

.more-items-btn i {
    transition: transform 0.3s ease;
}
.active-badge {
    display: inline-block;
    background-color: #6ECDA6;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.more-items-btn:hover i {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .new-services-section {
        padding: 40px 0;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .card-illustration {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .brand-logos {
        grid-template-columns: 1fr;
    }
}