* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(270deg, #ff7f50, #00bfff, #ff6347);
            background-size: 400% 400%;
            animation: bgShift 12s ease infinite;
            color: #fff;
            overflow-x: hidden;
        }

        @keyframes bgShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        header {
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        header h1 {
            font-size: 28px;
            font-weight: 700;
        }

        nav a {
            margin-left: 20px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 1;
        }

        .hero {
            text-align: center;
            padding: 150px 20px;
            position: relative;
        }

        .hero h2 {
            font-size: 50px;
            max-width: 900px;
            margin: auto;
            line-height: 1.15;
            animation: fadeUp 1.5s ease;
        }

        .hero p {
            max-width: 700px;
            margin: 30px auto;
            font-size: 18px;
            opacity: 0.9;
            animation: fadeUp 1.8s ease;
        }

        .cta-button {
            padding: 16px 45px;
            font-size: 16px;
            border-radius: 35px;
            border: none;
            cursor: pointer;
            background: linear-gradient(90deg, #ff6347, #ff7f50);
            color: #fff;
            font-weight: 600;
            animation: pulse 2.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 rgba(255,255,255,0.4); }
            50% { box-shadow: 0 0 25px rgba(255,255,255,0.7); }
            100% { box-shadow: 0 0 0 rgba(255,255,255,0.4); }
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255,255,255,0.6), transparent);
            border-radius: 50%;
            filter: blur(30px);
            animation: floatOrb 7s ease-in-out infinite;
        }

        .orb.one { top: 10%; left: 5%; }
        .orb.two { bottom: 10%; right: 5%; animation-delay: 3s; }

        @keyframes floatOrb {
            0% { transform: translateY(0); }
            50% { transform: translateY(-40px); }
            100% { transform: translateY(0); }
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 18px;
            padding: 25px;
            backdrop-filter: blur(8px);
            opacity: 0;
            transform: translateY(40px);
            transition: 0.8s ease;
        }

        .feature.show {
            transform: translateY(0);
            opacity: 1;
        }

        .feature h4 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .feature p {
            font-size: 16px;
            opacity: 0.9;
        }

        footer {
            text-align: center;
            padding: 30px;
            background: rgba(0, 0, 0, 0.3);
            font-size: 14px;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .hero h2 { font-size: 36px; }
            header { flex-direction: column; }
        }
/* Vibitely Responsive Safety Fixes */
img, video, iframe, embed, object { max-width: 100%; height: auto; }
.vibitely-hidden { display: none !important; }
