
        
        /* Solusi seksi */
        .solusi-seksi {
            padding: 40px 0;
            background-color: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        /* seksi Header */
        .seksi-header {
            text-align: center;
            margin-bottom: 60px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .seksi-header.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .seksi-subtitle {
            color: #4a90e2;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .seksi-title {
            font-size: 2.5rem;
            color: #001b3d;
            margin-bottom: 20px;
        }
        
        .seksi-description {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: 1.1rem;
        }
        
        /* solusis Grid */
        .solusis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .solusis-grid2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .solusi-box {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.5s ease;
            transform: translateY(50px);
            opacity: 0;
        }

        .solusi-box2 {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            
            transition: all 0.5s ease;
            transform: translateY(50px);
            opacity: 0;
        }
        
        .solusi-box.animated {
            transform: translateY(0);
            opacity: 1;
        }
        
        .solusi-box:nth-child(1) { transition-delay: 0.2s; }
        .solusi-box:nth-child(2) { transition-delay: 0.4s; }
        .solusi-box:nth-child(3) { transition-delay: 0.6s; }
        .solusi-box:nth-child(4) { transition-delay: 0.8s; }
        .solusi-box:nth-child(5) { transition-delay: 1.0s; }
        
        .solusi-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .solusi-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        
        .solusi-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .solusi-box:hover .solusi-img img {
            transform: scale(1.1);
        }
        
        .solusi-content {
            padding: 25px;
        }
        
        .solusi-title {
            font-size: 1.5rem;
            color: #001b3d;
            margin-bottom: 15px;
        }
        
        .solusi-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .learn-more {
            display: inline-block;
            color: #4a90e2;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .learn-more::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #4a90e2;
            transition: width 0.3s ease;
        }
        
        .learn-more:hover::after {
            width: 100%;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .solusis-grid2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .solusis-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solusis-grid2 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solusi-box:nth-child(3) {
                grid-column: span 2;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .solusi-seksi {
                padding: 70px 0;
            }
            
            .seksi-title {
                font-size: 2rem;
            }
            
            .solusis-grid {
                grid-template-columns: 1fr;
            }

            .solusis-grid2 {
                grid-template-columns: 1fr;
            }
            
            .solusi-box:nth-child(3) {
                grid-column: span 1;
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .seksi-title {
                font-size: 1.8rem;
            }
            
            .seksi-subtitle {
                font-size: 1rem;
            }
            
            .seksi-description {
                font-size: 1rem;
            }
        }
   