/* Service Cards Styling */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.service-icon {
    position: absolute;

    width: 60px;
    height: 60px;
    background: #0066CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.service-content {
    padding: 40px 20px 20px;
}

.service-content h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-content h4 {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-list {
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.check-icon {
    color: #0066CC;
    margin-right: 10px;
    font-weight: bold;
}

.service-item span:last-child {
    color: #555;
    font-size: 14px;
}

.service-detail-wrap {
    transition: all 0.3s ease;
}

.info-card {
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.service-type-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.9);
}

.brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #2b4eff 0%, #1e40ff 100%);
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.content-card {
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Reviews Section Styles */
.review-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.review-info h5 {
    font-size: 1.1rem;
    color: #333;
}

.review-rating {
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Animation for review cards */
.review-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.4s;
}

.review-card:nth-child(4) {
    animation-delay: 0.6s;
}

.review-card:nth-child(5) {
    animation-delay: 0.8s;
}

.review-card:nth-child(6) {
    animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-card, .service-type-card, .brand-item, .feature-card {
        margin-bottom: 15px;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .review-card {
        margin-bottom: 20px;
    }
    
    .review-info h5 {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for brands grid */
@media (max-width: 576px) {
    .brand-item {
        padding: 8px !important;
    }
    .brand-name {
        font-size: 0.8rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card, .service-type-card, .brand-item, .feature-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Animation delay for brand items */
.brand-item:nth-child(2n) {
    animation-delay: 0.1s;
}
.brand-item:nth-child(3n) {
    animation-delay: 0.2s;
}
.brand-item:nth-child(4n) {
    animation-delay: 0.3s;
}

/* Custom scrollbar for better UI */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* FAQ Section Styles */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem;
    color: #333;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: #2b4eff;
    background: #f8f9ff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background: #fff;
    padding: 1.2rem;
}

/* Animation for accordion items */
.accordion-item {
    animation: fadeInUp 0.5s ease-out forwards;
}

.accordion-item:nth-child(2) {
    animation-delay: 0.1s;
}

.accordion-item:nth-child(3) {
    animation-delay: 0.2s;
}

.accordion-item:nth-child(4) {
    animation-delay: 0.3s;
}

.accordion-item:nth-child(5) {
    animation-delay: 0.4s;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
        padding: 1rem;
    }
}
