   * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background-color: black;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* ---------- HERO SECTION ---------- */
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px;
        }

        .hero img {
            max-width: 420px;
            width: 80%;
            margin-bottom: 8px; /* reduced gap above moving element */
        }

        .line-container {
            width: 260px;
            height: 3px;
            background: #111;
            overflow: hidden;
        }

        .line {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, white, transparent);
            animation: move 2s linear infinite;
        }

        @keyframes move {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }

        /* ---------- SERVICES SECTION ---------- */
        .services {
            width: 90%;
            max-width: 1050px;
            margin: 60px auto 80px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            text-align: center;
        }

        .service {
            padding: 18px 14px;
        }

        .icon {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .service h3 {
            font-size: 16px;
            margin-bottom: 8px;
            letter-spacing: 1px;
              color: #FF3A5A;
        }

        .service p {
            font-size: 14px;
            opacity: 0.7;
            line-height: 1.45;
              color: #ffffff;
        }

        /* ---------- CTA SECTION ---------- */
        .cta {
            background-color:#ffffff;
            width: 100%;
            padding: 80px 20px;
            text-align: center;
            border-top: 1px solid #111;
        }

        .cta h2 {
            font-size: 26px;
            margin-bottom: 16px;
            color: #B33BFF;
            letter-spacing: 1.5px;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 16px;
            opacity: 0.8;
            line-height: 1.6;
            color: #FF3A5A;
        }

        .cta a {
            text-decoration: none;
            color: #ffffff;
            background: #FF3A5A;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 15px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .cta a:hover {
            background:  #B33BFF;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 800px) {
            .services {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .hero img {
                max-width: 320px;
            }

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