.service-container {
            max-width: 1200px;
            margin: 100px auto 0;
            padding: 40px 20px;
        }

        /* Hero Section */
        .hero-banner {
            background: linear-gradient(120deg, #ff6b35 0%, #f7931e 100%);
            border-radius: 8px;
            padding: 60px 40px;
            color: white;
            margin-bottom: 50px;
        }

        .hero-banner h1 {
            font-size: 2.8em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .hero-banner p {
            font-size: 1.15em;
            margin-bottom: 25px;
            max-width: 700px;
            color: white;
        }

        .cta-button {
            padding: 12px 35px;
            background: white;
            color: #ff6b35;
            border: 2px solid white;
            border-radius: 5px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: transparent;
            color: white;
            border-color: white;
        }

        /* Services Section */
        .services-section {
            margin-bottom: 60px;
        }

        .section-header {
            margin-bottom: 35px;
        }

        .section-header h2 {
            font-size: 2.2em;
            margin-bottom: 8px;
            color: #ff6b35;
        }

        .section-header p {
            color: #666;
            font-size: 1.05em;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .service-card {
            background: linear-gradient(135deg, #f5fefe, #ebffff);
            padding: 30px 25px;
            border-radius: 6px;
            border-left: 4px solid #008b8b;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,139,139,0.15);
            border-left-color: #ff6b35;
        }

        .service-card:active {
            transform: translateY(-2px) scale(0.98);
        }

        .service-card h3 {
            font-size: 1.3em;
            color: #333;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #666;
            font-size: 0.95em;
        }

        /* Portfolio Section */
        .portfolio-section {
            background: white;
            padding: 45px 40px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .portfolio-section h2 {
            font-size: 2em;
            margin-bottom: 10px;
            color: #ff6b35;
        }

        .portfolio-intro {
            color: #666;
            margin-bottom: 40px;
            font-size: 1.05em;
        }

        .app-showcase {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 45px;
            margin-bottom: 35px;
        }

        .app-mockup {
            text-align: center;
        }

        .phone-mockup {
            width: 250px;
            height: 500px;
            background: #1a1a1a;
            border-radius: 35px;
            padding: 12px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0,0,0,0.25);
            position: relative;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,139,139,0.4)),
                url('https://i.pinimg.com/736x/2y/fB/jH/2yfBjHq9u.jpg') center/cover;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.15s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        .phone-app-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            color: white;
            position: relative;
            z-index: 2;
            text-align: center;
            background: rgba(0,0,0,0.3);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .phone-track-info {
            margin-bottom: 10px;
        }

        .phone-artist {
            font-size: 0.9em;
            opacity: 0.8;
            margin-bottom: 5px;
            color: #ccc;
        }

        .phone-song {
            font-size: 1.1em;
            font-weight: 600;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

        .phone-icon {
            font-size: 3em;
            animation: pulse 2s infinite;
        }

        .phone-controls {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .phone-control-btn {
            font-size: 1.2em;
            padding: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(5px);
        }

        .phone-play-btn {
            font-size: 1.5em;
            padding: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(5px);
        }

        .phone-control-btn:hover,
        .phone-play-btn:hover {
            background: rgba(255,255,255,0.35);
            transform: scale(1.1);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .phone-notch {
            position: absolute;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 110px;
            height: 22px;
            background: #000;
            border-radius: 0 0 12px 12px;
            z-index: 1;
        }

        .app-info {
            padding-top: 10px;
        }

        .app-info h3 {
            font-size: 1.8em;
            margin-bottom: 12px;
            color: #333;
        }

        .app-badge {
            display: inline-block;
            padding: 6px 16px;
            background: #fff0eb;
            color: #ff6b35;
            border-radius: 4px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .app-description {
            color: #555;
            margin-bottom: 25px;
            font-size: 1em;
        }

        .app-metrics {
            display: flex;
            gap: 30px;
            margin-bottom: 28px;
        }

        .metric {
            text-align: left;
        }

        .metric-value {
            font-size: 1.6em;
            font-weight: 700;
            color: #ff6b35;
            display: block;
        }

        .metric-label {
            font-size: 0.88em;
            color: #888;
        }

        .features-section h4 {
            color: #333;
            margin-bottom: 12px;
            font-size: 1.1em;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            padding: 7px 0;
            color: #666;
            padding-left: 22px;
            position: relative;
            font-size: 0.95em;
        }

        .features-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.3em;
        }

        .download-section {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e5e5e5;
        }

        .playstore-btn {
            display: inline-block;
            transition: transform 0.2s;
        }

        .playstore-btn:hover {
            transform: scale(1.05);
        }

        .playstore-btn img {
            height: 60px;
            width: auto;
            max-width: 200px;
            display: block;
        }

        .tech-tags {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid #e5e5e5;
        }

        .tech-tags h4 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .tech-tag {
            display: inline-block;
            padding: 6px 12px;
            background: #f0f8ff;
            color: #008b8b;
            border-radius: 15px;
            font-size: 0.85em;
            margin: 4px 8px 4px 0;
            border: 1px solid #e0f2f1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero-banner {
                padding: 60px 30px;
            }

            .hero-banner h1 {
                font-size: 2.2em;
            }

            .app-showcase {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .phone-mockup {
                width: 200px;
                height: 400px;
            }

            .app-metrics {
                justify-content: center;
                gap: 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-section {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-banner h1 {
                font-size: 1.8em;
            }

            .section-header h2 {
                font-size: 1.8em;
            }

            .phone-mockup {
                width: 180px;
                height: 360px;
            }

            .app-info h3 {
                font-size: 1.5em;
            }

            .app-metrics {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }   .tags-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 7px 18px;
            background: #e0f4f4;
            color: #008b8b;
            border-radius: 4px;
            font-size: 0.88em;
            font-weight: 500;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .app-showcase {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .service-container {
                margin-top: 80px;
                padding: 30px 15px;
            }

            .hero-banner {
                padding: 40px 25px;
            }

            .hero-banner h1 {
                font-size: 2em;
            }

            .hero-banner p {
                font-size: 1em;
            }

            .app-showcase {
                grid-template-columns: 1fr;
            }

            .phone-mockup {
                width: 220px;
                height: 440px;
            }

            .phone-icon {
                font-size: 2.2em;
            }

            .phone-artist {
                font-size: 0.8em;
            }

            .phone-song {
                font-size: 1em;
            }

            .phone-control-btn {
                font-size: 1em;
                padding: 6px;
            }

            .phone-play-btn {
                font-size: 1.2em;
                padding: 10px;
            }

            .portfolio-section {
                padding: 30px 20px;
            }

            .app-info h3 {
                font-size: 1.5em;
            }

            .app-metrics {
                flex-direction: column;
                gap: 15px;
            }

            .section-header h2 {
                font-size: 1.8em;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .playstore-btn img {
                height: 50px;
                max-width: 180px;
            }

            .tags-container {
                gap: 8px;
            }

            .tag {
                font-size: 0.8em;
                padding: 6px 14px;
            }
        }

        @media (max-width: 480px) {
            .hero-banner h1 {
                font-size: 1.7em;
            }

            .hero-banner p {
                font-size: 0.95em;
            }

            .cta-button {
                padding: 10px 25px;
                font-size: 0.95em;
            }

            .phone-mockup {
                width: 200px;
                height: 400px;
            }

            .phone-icon {
                font-size: 1.8em;
            }

            .phone-artist {
                font-size: 0.7em;
            }

            .phone-song {
                font-size: 0.9em;
            }

            .phone-controls {
                gap: 10px;
            }

            .phone-control-btn {
                font-size: 0.9em;
                padding: 5px;
            }

            .phone-play-btn {
                font-size: 1.1em;
                padding: 8px;
            }

            .app-info h3 {
                font-size: 1.3em;
            }

            .metric-value {
                font-size: 1.4em;
            }

            .playstore-btn img {
                height: 45px;
                max-width: 160px;
            }

            .service-card {
                padding: 25px 20px;
            }
        }