/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

        :root {
            --teal: #f9dcbd;
            --cyan: #0dcaf0;
            --red: #dc3545;
            --deep-blue: #c6c1ff;
        }

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

        body {
            font-family: 'Montserrat', roboto;
            background-color: #f0f0f0;
            color: #333;
            overflow-x: hidden;  
            margin: 0;
            padding: 0;
        }

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

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }  
        
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--deep-blue), var(--teal));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 100px 20px;
            background-color: #f0f0f0;   
            height: 100vh;
        }

        .hero-content {
            z-index: 2;
            margin-bottom: 50px;
            position: relative;
            color: #000002;
        }             

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 24px;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta {
            background-color: var(--red);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: white;
            color: var(--red);
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .cta-button:hover {
            background-color: var(--deep-blue);
            color: white;
        }        

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .floating-element {
                font-size: 12px;
            }

            .expanded-content {
                padding: 20px;
            }
        }  

        .section {
            padding: 2rem;
        }
       
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
			z-index: 10;
            overflow: hidden; 
        }        

        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            text-align: center;
            padding: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            word-wrap: break-word;
            overflow: hidden;
            user-select: none;
        }
        .floating-element:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }        

        .bubble {
            position: absolute;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            text-align: center;
            padding: 10px;
            opacity: 0;
            transform: scale(0) rotate(0deg);
            transition: all 0.3s ease;            
            cursor: pointer;
            overflow: visible;
            user-select: none;
            z-index: 4;
			background: radial-gradient(
                circle at 30% 30%,
                rgba(255, 255, 255, 0.8),
                rgba(255, 255, 255, 0.4) 40%,
                rgba(255, 255, 255, 0.2) 60%,
                rgba(255, 255, 255, 0.1) 70%
            );
			box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
                inset 0 0 50px rgba(255, 255, 255, 0.2),
                0 0 10px rgba(255, 255, 255, 0.3);            
        }

        .bubble i {
            font-size: 24px;
            color: white;
            transition: all 0.3s ease;
        }

        .bubble span {
            position: absolute;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .bubble::before, 
        .bubble::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: inherit;
            opacity: 0.5;
            z-index: -1;
        }

        .bubble::before {            
            animation: pulse 2s infinite;
            animation-delay: 1s;
        }

        .bubble::after {
            animation: pulse 2s 1s infinite;
            animation-delay: 1.5s;
        }
        

        @keyframes pulse {
            0% {
                transform: scale(0.5);
                opacity: 0.5;
            }
            50% {
                transform: scale(1);
                opacity: 0.25;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }        

        .bubble:hover {
			background-color: #4c0880 !important;
			background:none;
			box-shadow: 0px 0px 20px 8px rgba(255,255,255,1);
            transform: scale(1.1);
        }

        .bubble:hover i {
            opacity: 0;
            transform: scale(0);
        }

        .bubble:hover span {
            opacity: 1;
            transform: translateY(0);
        }

        .bubble.clicked {
            background-color: #4c0880 !important;
            transform: scale(1);
            z-index: 3;
            /* background: radial-gradient(circle at 30% 30%, #d8ecfa, #b88aff) !important;
            color: #4c0880; */
        }

        .bubble.clicked::before, .bubble.clicked::after {
            display: none;
        }

        .bubble.clicked i {
            display: none;
        }

        .bubble.clicked span {
            opacity: 1;
            transform: translateY(0);
        }

        .no-select{
            user-select: none;
        }

        .scroll-to-top-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--deep-blue);
            color: white;
            text-align: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .scroll-to-top-btn:hover {
            background-color: var(--teal);
            transform: scale(1.1);
        }
        
        .scroll-to-top-btn i {
            font-size: 24px;
        }
        
        @media (max-width: 768px) {
            .scroll-to-top-btn {
                width: 40px;
                height: 40px;
                bottom: 15px;
                right: 15px;
            }
        
            .scroll-to-top-btn i {
                font-size: 20px;
            }
        }