        /* Services Section */
        .fnptservices-section {
            padding: 50px 5% 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            background:#000;
        }

        /* Decorative Background Elements simulating the bubbles/fabric curves */
        .fnptservices-section::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 5%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(173,216,230,0.4) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .fnptsection-tag {
            color: #d4a017;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 13px;
            margin-bottom: 10px;
            text-transform: uppercase;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

        .fnptsection-tag::before, .fnptsection-tag::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 25px;
            height: 2px;
            background: #d4a017;
        }
        .fnptsection-tag::before { right: 105%; }
        .fnptsection-tag::after { left: 105%; }

        .fnptservices-title {
            font-size: 38px;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 10px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .fnptservices-title span {
            color: #d4a017;
            display: inline-block;
        }

        .fnptservices-subtitle {
            color: #fff;
            font-size: 15px;
            max-width: 550px;
            margin: 0 auto 45px auto;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        /* Cards Grid */
        .fnptcards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .fnptservice-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0,0,0,0.04);
            border: 1px solid rgba(255, 204, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .fnptservice-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(212, 160, 23, 0.15);
            border-color: #ffcc00;
        }

        /* Icon Badge */
        .fnpticon-badge {
            width: 75px;
            height: 75px;
            background: #0f0f0f;
            border: 2px solid #ffcc00;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .fnpticon-badge i {
            font-size: 28px;
            color: #ffcc00;
        }

        .fnptservice-name {
            font-size: 17px;
            font-weight: 800;
            color: #111;
            margin-bottom: 8px;
        }

        .fnptservice-desc {
            font-size: 12px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.4;
            flex-grow: 1;
        }

        .fnptexplore-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding-top: 12px;
            border-top: 1px solid #eee;
            text-decoration: none;
            color: #111;
            font-weight: 700;
            font-size: 12px;
            transition: color 0.3s;
        }

        .fnptexplore-link span {
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .fnptexplore-arrow {
            width: 28px;
            height: 28px;
            background: #ffcc00;
            color: #000;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 11px;
            transition: transform 0.2s;
        }

        .fnptservice-card:hover .fnptexplore-arrow {
            transform: translateX(3px);
        }

        /* Bottom Features Bar */
        .fnptfeatures-bar {
            background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
            border: 1px solid #333;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 22px 15px;
            gap: 15px;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .fnptfeature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
            padding: 0 10px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }

        .fnptfeature-item:last-child {
            border-right: none;
        }

        .fnptfeature-item i {
            font-size: 28px;
            color: #ffcc00;
            flex-shrink: 0;
        }

        .fnptfeature-text h4 {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 2px;
        }

        .fnptfeature-text p {
            font-size: 11px;
            color: #999;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1200px) {
            .fnptcards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .fnptfeatures-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .fnptfeature-item:nth-child(2) {
                border-right: none;
            }
        }

        @media (max-width: 768px) {
            .fnptservices-title {
                font-size: 26px;
            }
            .fnptcards-grid {
                grid-template-columns: 1fr;
            }
            .fnptfeatures-bar {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .fnptfeature-item {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.08);
                padding-bottom: 12px;
            }
            .fnptfeature-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }