        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 600px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: #f97316;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Geometric Shapes */
        .shape {
            position: absolute;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        .circle {
            width: 100px;
            height: 100px;
            background: #22d3ee;
            border-radius: 50%;
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 60px solid transparent;
            border-right: 60px solid transparent;
            border-bottom: 100px solid #a3e635;
        }

        .square {
            width: 80px;
            height: 80px;
            background: #f87171;
            transform: rotate(45deg);
        }

        /* Position shapes */
/*
        .shape1 { top: 10%; left: 15%; animation-duration: 4s; }
        .shape2 { bottom: 15%; right: 20%; animation-duration: 10s; }
        .shape3 { top: 60%; left: 30%; animation-duration: 2s; }
        .shape4 { top: 30%; right: 10%; animation-duration: 1s; }
*/
        .shape2 { top: 20%; left: 15%; animation-duration: 4s; }
        .shape1 { top: 10%; left: 15%; animation-duration: 4s; }
        .shape3 { top: 40%; left: 15%; animation-duration: 2s; }
        .shape4 { top: 50%; right: 15%; animation-duration: 1s; }




        /* Animation for floating effect */
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-50px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .shape {
                display: none; /* Hide shapes on smaller screens for simplicity */
            }
        }