        body {
            font-family: 'Inter', sans-serif;
            background: #f0f4f8;
            margin: 0;
        }

        .hero-bg {
            background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: 0.6s ease;
        }

        .fade-up.show {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 25px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 5px;
            cursor: pointer;
        }

        .scroll-indicator::after {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: bounce 1.5s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(15px);
            }
        }

        .hero-stats {
            position: absolute;
            bottom: 40px;
            left: 40px;
            display: flex;
            gap: 2rem;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.2);
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stats .stat {
            text-align: center;
            color: #F97316;
        }

        .hero-stats .stat2 {
            text-align: center;
            color: white;
        }

        .hero-stats .stat h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .hero-stats .stat p {
            font-size: 0.875rem;
        }

        header .text-2xl {
            color: #374151;
        }

        nav a {
            color: white;
        }

        nav a:hover {
            color: #E5E7EB;
        }

        .burger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .burger span {
            display: block;
            height: 3px;
            background: #6B7280;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                gap: 1rem;
                background: #6B7280;
                color: white;
                position: absolute;
                top: 100%;
                right: 0;
                width: 200px;
                padding: 1rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            nav.show {
                display: flex !important;
            }

            .burger {
                display: flex;
            }

            .hero-stats {
                bottom: 20px;
                left: auto;
                right: 1rem;
                transform: none;
                padding: 0.75rem 1rem;
                gap: 1rem;
                font-size: 0.75rem;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: flex-end;
                max-width: calc(100% - 2rem);
            }

            .hero-stats .stat {
                flex: 0 1 45%;
                margin-bottom: 0.5rem;
                text-align: right;
            }
        }

        #services {
            position: relative;
            width: 100%;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(14, 165, 233, 0.85));
            color: white;
            overflow: hidden;
            text-align: center;
        }

        #services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1607746882042-944635dfe10e?crop=entropy&cs=tinysrgb&fit=max&w=1600&q=80') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
            background-size: cover;
            background-position: center;
        }

        #services h2,
        #services p,
        #services .cards-grid {
            position: relative;
            z-index: 1;
        }

        #services h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        #services p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 1rem 1.25rem;
            transition: transform 0.3s ease, background 0.3s ease;
            width: 280px;
            min-height: 140px;
            flex-direction: column;
            justify-content: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .service-card i {
            font-size: 3rem;
            color: white;
            flex-shrink: 0;
            margin-bottom: 0.5rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            text-align: center;
        }

        .service-card p {
            font-size: 0.875rem;
            line-height: 1.4;
            margin: 0;
            text-align: center;
        }

        #services .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(280px, 1fr));
            gap: 2rem;
            justify-items: center;
            max-width: 960px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            #services .cards-grid {
                grid-template-columns: repeat(1, minmax(200px, 1fr));
                gap: 1.5rem;
            }
        }

        #services .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 25px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 5px;
            cursor: pointer;
        }

        #services .scroll-indicator::after {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: bounce 1.5s infinite;
        }

        #company {
            position: relative;
            padding: 3rem 2rem;
            background: #f9fafb;
            color: #111827;
            text-align: left;
            overflow: hidden;
        }

        /* #company::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: url('https://images.unsplash.com/photo-1599423300746-b62533397364?crop=entropy&cs=tinysrgb&fit=max&w=1600&q=80') center/cover no-repeat; opacity: 0.15; z-index:0; background-size: cover; background-position: center; } */
        #company::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/storage/img/about_logo.jpg') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        #company .content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        #company h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #company h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        #company p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        #company p .highlight {
            font-weight: 700;
            color: #F97316;
            font-size: 1.25rem;
        }

        .chart-row {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            justify-content: center;
        }

        .chart-box {
            flex: 1 1 45%;
            min-width: 280px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px);
            border-radius: 1rem;
            padding: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: 0.6s ease;
        }

        .fade-up.show {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid #374151;
            border-radius: 25px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 5px;
            cursor: pointer;
        }

        .scroll-indicator::after {
            content: '';
            width: 6px;
            height: 6px;
            background: #374151;
            border-radius: 50%;
            animation: bounce 1.5s infinite;
        }

        footer {
            background: #1E293B;
            color: white;
            padding: 4rem 2rem;
        }

        footer h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        footer a {
            color: #60A5FA;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        footer p {
            margin: 0.5rem 0;
            font-size: 0.875rem;
        }

        footer .copyright {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.75rem;
            color: #9CA3AF;
        }