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

        .hero2-body {
            font-family: Verdana, sans-serif;
        }

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

        /* Hero Section */
        .hero2-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: linear-gradient(155deg, #2a156f, #f37ab7);
            border-radius: 0 0 450px 0;
            overflow: hidden;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 80px 0;
        }

        /* Fixed background animation */
        .hero2-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 118, 117, 0.1) 0%, transparent 50%);
            animation: hero2-float 20s ease-in-out infinite;
            pointer-events: none;
        }

        /* Floating Bubbles Container */
        .floating-bubbles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(224, 10, 117, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bubble-hover 8s ease-in-out infinite;
        }

        /* Purple variant (default) */
        .bubble:nth-child(1),
        .bubble:nth-child(4),
        .bubble:nth-child(7) {
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.25), rgba(109, 78, 199, 0.15));
        }

        /* Dark purple variant */
        .bubble:nth-child(2),
        .bubble:nth-child(8) {
            background: linear-gradient(135deg, rgba(42, 21, 111, 0.3), rgba(42, 21, 111, 0.15));
        }

        /* Blue variant */
        .bubble:nth-child(3),
        .bubble:nth-child(6) {
            background: linear-gradient(135deg, rgba(46, 82, 166, 0.3), rgba(46, 82, 166, 0.15));
        }

        /* Teal variant */
        .bubble:nth-child(5) {
            background: linear-gradient(135deg, rgba(22, 106, 125, 0.3), rgba(22, 106, 125, 0.15));
        }

        .bubble svg {
            width: 50%;
            height: 50%;
            opacity: 0.4;
            fill: rgba(255, 255, 255, 0.7);
        }

        /* Connection lines */
        .bubble-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .connection-line {
            position: absolute;
            border-top: 2px dotted rgba(109, 78, 199, 0.15);
            animation: pulse-line 4s ease-in-out infinite;
        }

        /* Line 1: connects bubble 1 to bubble 5 */
        .connection-line:nth-child(1) {
            top: 27%;
            left: 20%;
            width: 35%;
            transform: rotate(5deg);
            animation-delay: 0s;
        }

        /* Line 2: connects bubble 2 to bubble 3 */
        .connection-line:nth-child(2) {
            top: 37%;
            left: 75%;
            width: 15%;
            transform: rotate(45deg);
            animation-delay: 1s;
        }

        /* Line 3: connects bubble 6 to bubble 4 */
        .connection-line:nth-child(3) {
            top: 55%;
            left: 15%;
            width: 20%;
            transform: rotate(-20deg);
            animation-delay: 2s;
        }

        @keyframes pulse-line {
            0%, 100% { 
                opacity: 0.1;
            }
            50% { 
                opacity: 0.3;
            }
        }

        /* Different bubble sizes and positions */
        .bubble:nth-child(1) {
            width: 120px;
            height: 120px;
            left: 8%;
            top: 20%;
            animation-duration: 6s;
            animation-delay: 0s;
        }

        .bubble:nth-child(2) {
            width: 80px;
            height: 80px;
            left: 85%;
            top: 15%;
            animation-duration: 8s;
            animation-delay: -2s;
        }

        .bubble:nth-child(3) {
            width: 60px;
            height: 60px;
            left: 75%;
            top: 60%;
            animation-duration: 7s;
            animation-delay: -1s;
        }

        .bubble:nth-child(4) {
            width: 100px;
            height: 100px;
            left: 15%;
            top: 70%;
            animation-duration: 9s;
            animation-delay: -3s;
        }

        .bubble:nth-child(5) {
            width: 70px;
            height: 70px;
            left: 55%;
            top: 25%;
            animation-duration: 6.5s;
            animation-delay: -1.5s;
        }

        .bubble:nth-child(6) {
            width: 90px;
            height: 90px;
            left: 25%;
            top: 40%;
            animation-duration: 8.5s;
            animation-delay: -4s;
        }

        .bubble:nth-child(7) {
            width: 50px;
            height: 50px;
            left: 92%;
            top: 75%;
            animation-duration: 7.5s;
            animation-delay: -2.5s;
        }

        .bubble:nth-child(8) {
            width: 110px;
            height: 110px;
            left: 3%;
            top: 45%;
            animation-duration: 9.5s;
            animation-delay: -5s;
        }

        @keyframes bubble-hover {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-30px) scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes hero2-float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 1;
            }
            50% { 
                transform: translateY(-20px) rotate(1deg);
                opacity: 0.8;
            }
        }

        .hero2-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Content Section */
        .hero2-detail-box {
            color: #ffffff;
            margin-bottom: 60px;
            text-align: center;
        }

        .hero2-heading {
           font-size: clamp(2.5rem, 7vw, 5.5rem);
            font-family: Verdana, sans-serif;
            font-weight: 700;
            margin-bottom: 32px;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(253, 73, 160, 0.3);
        }
        .highlight-text-hero {
  background: linear-gradient(135deg, #fd49a0, #f95ebe); /* bright gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800; /* make it pop */
  text-shadow: 0 2px 12px rgba(253, 73, 160, 0.5);
}

        .hero2-description {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 500;
            margin-bottom: 48px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Button Container */
        .hero2-btn-box {
            display: flex;
            gap: 20px;
            margin-bottom: 80px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Button Styles */
        .hero2-btn {
            display: inline-block;
            background: linear-gradient(135deg, #4120A9, #fd49a0);
            color: white;
            padding: 18px 40px;
            margin: 20px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(65, 32, 169, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .hero2-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero2-btn:hover {
            color: white;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(65, 32, 169, 0.4);
        }

        .hero2-btn:hover::before {
            left: 100%;
        }

        .hero2-btn:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 8px 25px rgba(65, 32, 169, 0.3);
        }

        .hero2-btn.secondary {
            background: linear-gradient(135deg, #fd49a0, #ff6b9d);
            box-shadow: 0 10px 30px rgba(253, 73, 160, 0.3);
        }

        .hero2-btn.secondary:hover {
            box-shadow: 0 15px 40px rgba(253, 73, 160, 0.4);
        }

        /* Illustration Section */
        .hero2-img-box {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 700px;
        }

        .hero2-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1.2;
            padding: 0;
        }

        .hero2-illustration {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Dynamic floating elements around illustration */
        .hero2-img-box::before {
            content: '';
            position: absolute;
            top: 10%;
            right: 5%;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(253, 73, 160, 0.6), rgba(255, 107, 157, 0.4));
            border-radius: 50%;
            opacity: 0.7;
            animation: hero2-float-element 8s ease-in-out infinite;
        }

        .hero2-img-box::after {
            content: '';
            position: absolute;
            bottom: 15%;
            left: 5%;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(65, 32, 169, 0.6), rgba(109, 78, 199, 0.4));
            border-radius: 50%;
            opacity: 0.8;
            animation: hero2-float-element 6s ease-in-out infinite reverse;
        }

        @keyframes hero2-float-element {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-30px) scale(1.1);
                opacity: 0.3;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero2-btn {
                padding: 16px 30px;
                font-size: 14px;
                margin: 15px;
            }

            .hero2-btn-box {
                flex-direction: column;
                align-items: center;
                gap: 0;
                margin-bottom: 60px;
            }

            .hero2-image-container {
                max-width: 400px;
            }

            .hero2-detail-box {
                margin-bottom: 40px;
            }

            .bubble {
                width: 40px !important;
                height: 40px !important;
            }
        }

        @media (max-width: 480px) {
            .hero2-btn {
                width: 90%;
                max-width: 280px;
            }

            .hero2-image-container {
                max-width: 350px;
            }

            .bubble {
                width: 50px !important;
                height: 50px !important;
            }
        }

        /* Load animations */
        @keyframes hero2-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes hero2-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero2-heading {
            animation: hero2-fadeInDown 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        .hero2-description {
            animation: hero2-fadeInDown 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        .hero2-btn-box {
            animation: hero2-fadeInDown 0.8s ease forwards;
            animation-delay: 0.6s;
            opacity: 0;
        }

        .hero2-img-box {
            animation: hero2-fadeInUp 0.8s ease forwards;
            animation-delay: 0.8s;
            opacity: 0;
        }