        :root {
            --primary-color: #0d6efd;
            --secondary-color: #6610f2;
            --banner-color: #28a745; /* Couleur pour le banner Starlink */
            --software-bg: #f9f9f9; /* Couleur pour la section logiciels */
            --hardware-bg: #f1f1f1; /* Couleur pour la section matériel */
        }

        /* Stylized Navigation */
        .navbar {
            background: rgba(13, 110, 253, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #fff, #e6e6e6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            position: relative;
            margin: 0 1rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: white;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }
        
        

        .devis-btn {
            background: white;
            color: #0d6efd !important;
            padding: 0.5rem 1.25rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .devis-btn:hover {
            background: #fdfd03;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Animation for the quote button icon */
        .devis-btn i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .devis-btn:hover i {
            transform: translateX(3px);
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .devis-btn {
                margin: 1rem 0;
                text-align: center;
            }
        }

        /* Hero section with custom shape */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 120px 0 160px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(-3deg);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(100px, -150px);
            animation: hero-float 6s ease-in-out infinite; /* Apply the move animation */
        }
          @keyframes hero-float {
                0% { transform: translate(100px, -150px); }
                50% { transform: translate(115px, -165px); }
                100% { transform: translate(100px, -150px); }
            }

/*===============================================
    HOME PAGE GLOBAL SYLES
================================================*/
            
        /* Services section with modern design */
        .services-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
            transform: skewY(3deg);
            transform-origin: top left;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            color: white;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover .price {
            color: white;
        }

        .service-card:hover .card-title {
            color: white;
        }

        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        /* Floating circles animation */
        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(15px, -15px); }
            100% { transform: translate(0, 0); }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
        }

        .move-animation{
            animation: float 6s ease-in-out infinite;
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }


        .circle-1 {
            width: 100px;
            height: 100px;
            background: rgba(13, 110, 253, 0.1);
            top: 20%;
            left: 10%;
        }

        .circle-2 {
            width: 150px;
            height: 150px;
            background: rgba(102, 16, 242, 0.1);
            bottom: 20%;
            right: 10%;
            animation-delay: -3s;
        }

/*============================================
    FOOTER GLOBAL STYLE
=============================================*/
        .footer {
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        color: white;
        padding: 80px 0 40px;
        position: relative;
        margin-top: 100px;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        transform: skewY(-3deg);
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: white;
        transition: width 0.3s ease;
    }

    .footer-title:hover::after {
        width: 100%;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-social a {
        color: white;
        text-decoration: none;
        margin-right: 1.5rem;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .footer-social a:hover {
        transform: translateY(-5px);
    }

    .footer-contact {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
    }

    .footer-contact i {
        margin-right: 10px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        opacity: 0.8;
    }

/*============================================
    SHOP PAGE GLOBAL STYLE
=============================================*/

    .software-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
        transform: skewY(3deg);
        transform-origin: top left;
    }
    
        /* Slideshow pour les produits logiciels */
        .software-section {
            background: var(--software-bg);
            padding: 80px 0;
            position: relative;
        }

        .software-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--banner-color); /* Couleur de la section suivante */
            transform: skewY(-3deg);
        }

        .carousel-control-prev,
        .carousel-control-next {
            background: rgba(255, 255, 255, 0.5);
            width: 5%;
            border-radius: 50%;
            height: 50px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1); /* Inverser la couleur des icônes */
        }

        /* Banner pour le marketing des kits Starlink */
        .starlink-banner {
            background: var(--banner-color);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .starlink-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--hardware-bg); /* Couleur de la section suivante */
            transform: skewY(-3deg);
        }

        .starlink-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .starlink-banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .starlink-banner .buy-button {
            background: white;
            color: var(--banner-color);
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }

        .starlink-banner .buy-button:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Slideshow pour les produits matériels */
        .hardware-section {
            background: var(--hardware-bg);
            padding: 80px 0;
            position: relative;
        }

        .hardware-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white; /* Couleur de la section suivante (footer) */
            transform: skewY(-3deg);
        }

        /* Styles communs pour les carrousels */
        /* Styles pour le carrousel */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%; /* Chaque slide prend 100% de la largeur */
    min-width: 100%; /* Assure que chaque slide occupe toute la largeur */
    transition: opacity 0.5s ease;
    opacity: 0; /* Masque les slides inactives */
}

.carousel-item.active {
    opacity: 1; /* Affiche la slide active */
}

        .product-card {
            background: white;
            border-radius: 20px;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            max-width: 100%;
            height: auto;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        .product-card-body {
            padding: 20px;
            flex-grow: 1;
        }

        .product-card-body h3 {
            margin-bottom: 15px;
        }

        .product-card-body p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .buy-button {
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            font-weight: 600;
            align-self: flex-start;
        }

        .buy-button:hover {
            background: var(--secondary-color);
        }
    
/*============================================
    SERVICES PAGE GLOBAL STYLE
=============================================*/

        .services-hero {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #0d6efd;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #0d6efd;
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 15px;
            background: white;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 20px;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50px;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #0d6efd, #6610f2);
            transform: translateY(-50%);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid #0d6efd;
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: #0d6efd;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0d6efd;
            margin: 20px 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .stats-section {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-card {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .stats-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: bold;
        }

        .cta-section {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
            padding: 80px 0;
            border-radius: 30px;
            margin: 40px 0;
        }
/*============================================
    CONTACT PAGE GLOBAL STYLE
=============================================*/
        .contact-hero {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 120px 0 160px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(-3deg);
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info-card {
            background: rgba(13, 110, 253, 0.05);
            border-radius: 15px;
            padding: 25px;
            height: 100%;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #0d6efd;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
        }

        .form-control {
            border: 2px solid #e9ecef;
            padding: 12px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            margin-top: 30px;
        }
/*============================================
    PORTFOLIO PAGE GLOBAL STYLE
=============================================*/
        .portfolio-hero {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .portfolio-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/1920/1080') center/cover;
            opacity: 0.1;
            animation: pulse 4s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.1; }
            50% { opacity: 0.15; }
            100% { opacity: 0.1; }
        }

        .filter-btn {
            background: transparent;
            border: 2px solid #e9ecef;
            color: #333;
            padding: 8px 20px;
            border-radius: 25px;
            margin: 0 5px 10px;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            border-color: transparent;
            color: white;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            transform: translateY(0);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
        }

        .portfolio-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(13, 110, 253, 0.9), transparent);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: white;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .portfolio-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        .portfolio-links {
            display: flex;
            gap: 15px;
        }

        .portfolio-link {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0d6efd;
            transition: all 0.3s ease;
        }

        .portfolio-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .highlight-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-top: -100px;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .stats-counter {
            text-align: center;
            padding: 20px;
            border-right: 1px solid #e9ecef;
        }

        .stats-counter:last-child {
            border-right: none;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
/*==============================================
    DEVIS PAGE GLOBAL STYLES
===============================================*/
        .quote-hero {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 120px 0 160px;
            position: relative;
            overflow: hidden;
        }

        .quote-hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(-3deg);
        }

        .service-option {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-option:hover {
            transform: translateY(-5px);
            border-color: #0d6efd;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-option:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 2.5rem;
            color: #0d6efd;
            margin-bottom: 1rem;
        }

        .quote-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .quote-form::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .form-control, .form-select {
            border: 2px solid #e9ecef;
            padding: 12px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .benefits {
            position: relative;
            padding: 20px;
            border-radius: 15px;
            background: rgba(13, 110, 253, 0.05);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #0d6efd;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
        }
        
/**=================================================**/
/** Product Page Style**/
/**=================================================**/
.product-header {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            padding: 120px 0;
            color: white;
            position: relative;
        }

        .product-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .product-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .preview-image {
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .preview-image:hover {
            transform: scale(1.02);
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .thumbnail:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .thumbnail.active {
            opacity: 1;
            border: 2px solid #0d6efd;
        }

        .price-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: #0d6efd;
            margin: 1rem 0;
        }

        .payment-methods {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }

        .payment-method {
            padding: 10px 20px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-method:hover {
            border-color: #0d6efd;
            transform: translateY(-2px);
        }

        .payment-method.active {
            border-color: #0d6efd;
            background-color: rgba(13, 110, 253, 0.1);
        }

        .buy-button-product {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .buy-button-product:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }

        .spec-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .spec-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .spec-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #0d6efd;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .rating {
            color: #ffc107;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .feature-list li::before {
            content: '?';
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: bold;
        }

        .download-info {
            background: rgba(13, 110, 253, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .version-badge {
            background: #0d6efd;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
        }

        .os-compatibility {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .os-icon {
            font-size: 24px;
            color: #6c757d;
        }
    




    