
        /* Service Area - Matching Template Structure */
        .tp-service-area {
		
            background: #000;
            padding-top: 110px;
            padding-bottom: 190px;
        }

        .container-fluid {
            padding: 0;
            width: 100%;
        }

        /* Title Section */
        .tp-service-pp-title-box {
            padding: 0 80px;
            margin-bottom: 80px;
        }

        .tp-service-pp-title-box .row {
            display: flex;
            gap: 60px;
        }

        .tp-service-pp-title-box .row > div:first-child {
            flex: 0 0 35%;
        }

        .tp-service-pp-title-box .row > div:last-child {
            flex: 1;
        }

        .tp-about-pp-title-wrap .tp-section-pp-subtitle {
            font-size: 18px;
            font-weight: 500;
            color: #fff;
            display: inline-block;
            margin-bottom: 15px;
        }

        .tp-section-pp-title {
          
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.2;
            color: #fff;
        }

        /* Service Pin Container */
        .tp-service-pp-pin {
            position: relative;
        }

        /* Service Item */
        .tp-service-pp-item {
            padding: 30px 80px;
            background: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            min-height: 100vh;
            position: relative;
        }

        /* Glass effect on title row when stacked */
        .tp-service-pp-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .tp-service-pp-item.is-stacked::before {
            opacity: 1;
        }

        .tp-service-pp-item .row {
            /* display: grid;
            grid-template-columns: 80px 1fr 420px;
            gap: 60px; */
            align-items: flex-start;
            position: relative;
            z-index: 2;
        }

        /* Number */
        .tp-service-pp-number {
            padding-top: 10px;
        }

        .tp-service-pp-number span {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            text-transform: uppercase;
        }

        /* Content */
        .tp-service-pp-content h4 {
      
            font-size: clamp(3.5rem, 6vw, 4rem);
            font-weight: 500;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: -0.03em;
            margin-bottom: 40px;
            color: #fff;
        }

        .tp-service-pp-content h4 a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .tp-service-pp-content h4 a:hover {
            opacity: 0.8;
        }

        .tp-service-pp-content p {
            font-size: 17px;
            line-height: 1.7;
            color: #fff;
            margin-bottom: 55px;
        }

        /* Button */
        .tp-service-pp-btn {
            padding-bottom: 90px;
        }

        .tp-btn-lg {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 26px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tp-btn-lg:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
        }

        .tp-btn-lg .btn-icon svg {
            width: 25px;
            height: 10px;
            fill: currentColor;
        }

        .tp-btn-lg:hover .btn-icon:last-child {
            transform: translateX(5px);
        }

        /* Tags/Category */
        .tp-service-pp-category {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .tp-service-pp-category span {
            padding: 10px 22px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            font-size: 14px;
            color: #999;
            transition: all 0.3s ease;
        }

        .tp-service-pp-category span:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* Image/Thumb */
        .tp-service-pp-thumb {
            text-align: right;
        }

        .tp-service-pp-thumb img {
            width: 100%;
            max-width: 5500px;
            height: 550px;
            object-fit: cover;
            border-radius: 24px;
            transition: transform 0.5s ease;
        }

        .tp-service-pp-item:hover .tp-service-pp-thumb img {
            transform: translateY(-10px);
        }

        /* Next Section */
        .next {
            min-height: 100vh;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            position: relative;
            z-index: 100;
        }

        .next h2 {
       
            font-size: 4rem;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .tp-service-pp-title-box,
            .tp-service-pp-item {
                padding-left: 40px;
                padding-right: 40px;
            }
            
            .tp-service-pp-item .row {
                grid-template-columns: 80px 1fr 350px;
                gap: 50px;
            }
        }

        @media (max-width: 992px) {
            .tp-service-pp-item .row {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .tp-service-pp-thumb {
                text-align: center;
            }
            
            .tp-service-pp-thumb img {
                max-width: 100%;
                height: 450px;
            }
            
            .tp-service-pp-title-box .row {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .tp-service-pp-title-box,
            .tp-service-pp-item {
                padding-left: 24px;
                padding-right: 24px;
            }
            
            .tp-service-area {
                padding-top: 60px;
                padding-bottom: 100px;
            }
            
            .tp-service-pp-content h4 {
                font-size: 2.5rem;
                margin-bottom: 30px;
            }
            
            .tp-service-pp-content p {
                margin-bottom: 30px;
            }
            
            .tp-service-pp-btn {
                padding-bottom: 50px;
            }
            
            .tp-service-pp-thumb img {
                height: 380px;
            }
            
            .next h2 {
                font-size: 2.5rem;
            }
            .tp-service-pp-item { 
            	min-height: 0vh;
            }
        }
