
    .service-details__cta {
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 600px;
        margin: 40px auto;
        border: 1px solid #e0e6ed;
    }
    
    .service-details__cta h3 {
        color: #2d3748;
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        background: linear-gradient(to right, #2563eb, #3b82f6);
        color: white;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
        border: none;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
        background: linear-gradient(to right, #1d4ed8, #2563eb);
    }
    
    .btn-secondary {
        background: white;
        color: #2563eb;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: 2px solid #2563eb;
    }
    
    .btn-secondary:hover {
        background: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .service-details__cta p {
        color: #4a5568;
        font-size: 16px;
        margin-top: 15px;
    }
    
    .service-details__cta strong {
        color: #2563eb;
        font-weight: 700;
    }
    
    @media (max-width: 480px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-primary, .btn-secondary {
            width: 100%;
            text-align: center;
        }
        
        .service-details__cta h3 {
            font-size: 20px;
        }
    }




                                                .service-details__img-box-content {
                                                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                                                    max-width: 800px;
                                                    margin: 0 auto;
                                                    padding: 30px;
                                                    background-color: #f9f9f9;
                                                    border-radius: 10px;
                                                    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                                                }
                                                
                                                .service-details__img-box-content-title {
                                                    text-align: center;
                                                    color: #2c3e50;
                                                    font-size: 28px;
                                                    margin-bottom: 30px;
                                                    position: relative;
                                                    padding-bottom: 15px;
                                                }
                                                
                                                .service-details__img-box-content-title:after {
                                                    content: '';
                                                    position: absolute;
                                                    bottom: 0;
                                                    left: 50%;
                                                    transform: translateX(-50%);
                                                    width: 80px;
                                                    height: 3px;
                                                    background: #3498db;
                                                }
                                                
                                                .testimonial-container1 {
                                                    display: flex;
                                                    flex-wrap: wrap;
                                                    gap: 20px;
                                                    justify-content: center;
                                                }
                                                
                                                .testimonial {
                                                    background: white;
                                                    padding: 25px;
                                                    border-radius: 8px;
                                                    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
                                                    flex: 1 1 300px;
                                                    max-width: 100%;
                                                    position: relative;
                                                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                                                }
                                                
                                                .testimonial:hover {
                                                    transform: translateY(-5px);
                                                    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                                                }
                                                
                                                .testimonial-quote-icon {
                                                    font-size: 60px;
                                                    color: #3498db;
                                                    opacity: 0.2;
                                                    position: absolute;
                                                    top: 10px;
                                                    left: 15px;
                                                    line-height: 1;
                                                }
                                                
                                                .testimonial-text {
                                                    font-size: 16px;
                                                    line-height: 1.6;
                                                    color: #555;
                                                    margin: 20px 0;
                                                    padding-left: 20px;
                                                    position: relative;
                                                    z-index: 1;
                                                }
                                                
                                                .testimonial-author {
                                                    text-align: right;
                                                    color: #3498db;
                                                    font-size: 14px;
                                                    margin-top: 15px;
                                                    font-weight: 600;
                                                }
                                                
                                                .testimonial-author strong {
                                                    color: #2c3e50;
                                                }
                                                
                                                .star-rating {
                                                    color: #f39c12;
                                                    font-size: 16px;
                                                    margin-left: 5px;
                                                }
                                                
/* Base Styles */
.brand-showcase {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.brand-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0096D6, #D741A7, #FF6E1F, #00B4B4);
}

.showcase-title {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.showcase-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0096D6, #D741A7);
    border-radius: 3px;
}

.showcase-subtitle {
    font-size: 1rem;
    color: #5a6a7e;
    margin-bottom: 2rem;
    font-weight: 400;
}

.brand-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    perspective: 1000px;
}

.brand-card {
    width: 200px;
    height: 250px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.brand-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 10px;
    box-sizing: border-box;
}

.card-front {
    background: white;
}

.card-back {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    transform: rotateY(180deg);
    text-align: left;
    justify-content: flex-start;
}

.card-back h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.card-back h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0096D6;
}

.card-back ul {
    margin: 0.8rem 0;
    padding-left: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.card-back ul li {
    margin-bottom: 0.4rem;
}

.brand-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 1rem;
}

.brand-name {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.card-back .brand-name {
    color: white;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .brand-carousel {
        flex-wrap: wrap;
    }
    
    .brand-card {
        width: calc(50% - 1rem);
        height: 220px;
    }
}

@media (max-width: 576px) {
    .brand-showcase {
        padding: 1.5rem;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .brand-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-card {
        width: 100%;
        max-width: 280px;
        height: 200px;
    }
    
    .card-back {
        padding: 1rem;
    }
}

.video-one {
    position: relative;
    /* padding: 80px 0; */
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-one__right {
    padding: 20px;
}

.section-title__tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-one__text-1,
.video-one__text-2 {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.video-one__btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-one__btn:hover {
    background-color: #003d7a;
}

@media (max-width: 991px) {
    .section-title__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .video-one {
        padding: 50px 0;
    }
    
    .section-title__title {
        font-size: 24px;
    }
}
