  :root {
            --sky-blue: #4CC9F0;
            --sun-yellow: #FFD60A;
            --coral-orange: #FF6B6B;
            --candy-pink: #FF70A6;
            --mint-green: #80FFB2;
            --purple: #9B5DE5;
            --lavender: #F2C0FF;
            --cream-white: #FFF9F0;
            --text-dark: #2d2d2d;
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.5);
            --font-heading: 'Baloo 2', cursive;
            --font-body: 'Quicksand', sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            /* background-color: var(--cream-white); */
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
        }

        /* Custom Cursor */
        .cursor-follow,
        .cursor-glow {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .cursor-follow {
            width: 12px;
            height: 12px;
            background: var(--candy-pink);
            transition: width 0.3s, height 0.3s;
        }

        .cursor-glow {
            width: 40px;
            height: 40px;
            background: rgba(155, 93, 229, 0.3);
            backdrop-filter: blur(4px);
            transition: width 0.3s, height 0.3s, background 0.3s;
        }

        .cursor-glow.active {
            width: 60px;
            height: 60px;
            background: rgba(255, 112, 166, 0.4);
        }


        /* .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
} */




        /* Three.js Background */
        #bg-three {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            inset: 0;
            background: var(--cream-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-mascot {
            font-size: 5rem;
            color: var(--purple);
            animation: bounce 1.5s infinite;
        }

        .rainbow-loader {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .rainbow-loader span {
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

        .rainbow-loader span:nth-child(1) {
            background: var(--coral-orange);
            animation: jump 0.5s infinite alternate;
        }

        .rainbow-loader span:nth-child(2) {
            background: var(--sun-yellow);
            animation: jump 0.5s infinite alternate 0.1s;
        }

        .rainbow-loader span:nth-child(3) {
            background: var(--mint-green);
            animation: jump 0.5s infinite alternate 0.2s;
        }

        .rainbow-loader span:nth-child(4) {
            background: var(--sky-blue);
            animation: jump 0.5s infinite alternate 0.3s;
        }

        .rainbow-loader span:nth-child(5) {
            background: var(--candy-pink);
            animation: jump 0.5s infinite alternate 0.4s;
        }

        /* Glass Nav */
        .glass-nav {
            background: rgb(253, 245, 255);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .glass-nav.scrolled {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 10px 0;
        }

        .navbar-brand {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--purple);
        }

        .brand-icon {
            color: var(--candy-pink);
            margin-right: 5px;
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--coral-orange), var(--candy-pink), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--candy-pink) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--sun-yellow);
            border-radius: 5px;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Buttons */
        .btn-magic {
            background: linear-gradient(45deg, var(--candy-pink), var(--coral-orange));
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 700;
            font-family: var(--font-heading);
            box-shadow: 0 8px 20px rgba(255, 112, 166, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-magic:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 112, 166, 0.5);
            color: #fff;
        }

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

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

        .btn-outline-magic {
            background: transparent;
            color: var(--purple);
            border: 2px solid var(--purple);
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 700;
            font-family: var(--font-heading);
            transition: all 0.3s ease;
        }

        .btn-outline-magic:hover {
            background: var(--purple);
            color: #fff;
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero-section {
            /* padding-top: 30px; */
            position: relative;
            overflow: hidden;
        }

        .badge-pill {
            background: #fff;
            color: var(--purple);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            font-size: 25px;
        }

        .hero-title {
            font-size: 3.7rem;
            line-height: 1.1;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #000;
            margin-bottom: 17px;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Hero Illustration */
        .hero-illustration {
            position: relative;
            height: 500px;
        }

        .hero-mascot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12rem;
            color: var(--purple);
            z-index: 2;
            filter: drop-shadow(0 10px 20px rgba(155, 93, 229, 0.3));
        }

        .hero-card {
            position: absolute;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            width: 180px;
            z-index: 3;
        }

        .hero-card h3 {
            font-size: 1.2rem;
            margin: 0;
        }

        .hero-card i {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .hero-card:nth-child(1) {
            top: 50px;
            left: 20px;
            animation: float 4s ease-in-out infinite;
        }

        .hero-card:nth-child(2) {
            top: 50px;
            right: 20px;
            animation: float 4s ease-in-out infinite 1s;
        }

        .hero-card:nth-child(3) {
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            animation: float 4s ease-in-out infinite 2s;
        }

        .hero-icon-1 {
            color: var(--candy-pink);
        }

        .hero-icon-2 {
            color: var(--coral-orange);
        }

        .hero-icon-3 {
            color: var(--sky-blue);
        }

        /* Glass Card */
        .glass-card {
            background: rgba(255, 255, 255, 0.74);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        }

        /* Wave Divider */
        .wave-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 100px;
        }

        /* Features */
        .section-title {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #000;
            max-width: 850px;
            margin: 0 auto;
        }

        .feature-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            /* transform: translateY(-10px); */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            border-radius: 24px;
            background: linear-gradient(45deg, var(--candy-pink), var(--sun-yellow), var(--sky-blue));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gradient-border:hover::before {
            opacity: 1;
        }

        .feature-icon {
            /* width: 70px; height: 70px; */
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 20px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-card h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: #666;
            margin: 0;
        }

        /* Programs / Niches */
        .bg-light-gradient {
            background: linear-gradient(180deg, #fff 0%, #FF6F991F 100%);
        }

        .program-card {
            background: #fff;
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .program-card:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .program-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin: 0 auto 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .program-card h5 {
            font-size: 1.1rem;
            margin: 0;
        }

        /* PLR List */
        .plr-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .plr-list li {
            padding: 10px 0;
            font-weight: 600;
            color: #555;
        }

        .plr-list i {
            color: #49E385;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Counters */
        .counter-section {
            background: linear-gradient(45deg, var(--purple), var(--candy-pink));
            color: #fff;
        }

        .counter-card i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--sun-yellow);
        }

        .counter {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
        }

        .counter-card p {
            font-size: 1.1rem;
            margin: 0;
            opacity: 0.9;
        }

        /* Gallery */
        .masonry-grid {
            column-count: 4;
            column-gap: 15px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 15px;
        }

        .gallery-img {
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-img i {
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.8);
            transition: transform 0.3s;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-img:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-img:hover i {
            transform: scale(1.2);
        }

        /* Timeline */
        .timeline {
            position: relative;
            /* max-width: 800px; */
            margin: 0 auto;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--lavender);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-icon {
            position: absolute;
            top: 20px;
            right: -20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            z-index: 2;
            box-shadow: 0 0 0 4px #fff;
        }

        .timeline-item:nth-child(even) .timeline-icon {
            left: -20px;
            right: auto;
        }

        .timeline-content {
            padding: 20px;
        }

        .timeline-tag {
            background: var(--sun-yellow);
            color: var(--text-dark);
            padding: 4px 10px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.8rem;
        }

        /* Prompt Categories */
        .prompt-cat-card {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .prompt-cat-card:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .prompt-cat-card i {
            font-size: 1.5rem;
            color: var(--purple);
            margin-bottom: 10px;
        }

        .prompt-cat-card p {
            margin: 0;
            font-weight: 600;
            font-size: 1.1rem;
            padding-top: 5px;
        }

        /* Pricing */
        .pricing-card {
            background: #fff;
            border-radius: 30px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.popular {
            background: #ECDCFF;
            color: #fff;
            transform: scale(1.05);
        }

        .pricing-card.popular .price,
        .pricing-card.popular .pricing-features li {
            color: #000;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--candy-pink);
            color: #fff;
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(255, 112, 166, 0.4);
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0;
        }

        .price {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 20px 0;
        }

        .price span {
            font-size: 2rem;
            vertical-align: super;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 20px 0 30px;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            color: #000;
            font-weight: 700;
        }

        .pricing-features i {
            color: #63BE87;
            margin-right: 10px;
        }

        .pricing-card.popular .pricing-features i {
            color: #FF7731;
        }

        /* Reasons */
        .reason-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
        }

        .reason-card:hover {
            transform: translateY(-5px);
        }

        .reason-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--lavender);
            margin-bottom: 10px;
        }

        .reason-card h4 {
            margin-bottom: 10px;
        }

        .reason-card p {
            color: #666;
            margin: 0;
        }

        /* Testimonials */
        .testimonial-card {
            padding: 30px;
            margin: 20px;
        }

        .stars {
            color: var(--sun-yellow);
            margin-bottom: 15px;
        }

        .testimonial-card p {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .testimonial-user h6 {
            margin: 0;
        }

        .testimonial-user span {
            font-size: 0.9rem;
            color: #777;
        }

        /* Magic Form */
        .magic-form .form-control {
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid transparent;
            border-radius: 15px;
            padding: 15px;
            font-family: var(--font-body);
        }

        .magic-form .form-control:focus {
            box-shadow: none;
            border-color: var(--candy-pink);
            background: #fff;
        }

        .form-floating>label {
            padding: 15px 15px;
        }

        /* Footer */
        .footer-section {
            position: relative;
            background: #3a0ca3;
            color: #fff;
            padding-top: 100px;
            margin-top: 80px;
        }

        .footer-wave {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 100px;
            transform: rotate(180deg);
            fill: #3a0ca3;
        }

        .footer-content {
            padding: 40px 0;
        }

        .text-light-muted {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 15px;
        }

        .footer-content h5 {
            margin-bottom: 20px;
        }

        .footer-content ul {
            list-style: none;
            padding: 0;
        }

        .footer-content ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            line-height: 2;
        }

        .footer-content ul li a:hover {
            color: var(--sun-yellow);
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 10px 0 0 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            background: var(--candy-pink);
            border: none;
            padding: 0 20px;
            border-radius: 0 10px 10px 0;
            color: #fff;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--sun-yellow);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Keyframes */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes jump {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-15px);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(2deg);
            }
        }

        @keyframes float-slow {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(20px, -20px);
            }
        }

        /* Hero Blobs */
        .hero-blobs .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: -1;
            animation: float-slow 8s ease-in-out infinite;
        }

        .blob-1 {
            width: 400px;
            height: 400px;
            background: rgba(255, 112, 166, 0.11);
            top: 10%;
            left: 10%;
        }

        .blob-2 {
            width: 300px;
            height: 300px;
            background: rgba(76, 201, 240, 0.13);
            top: 50%;
            right: 10%;
            animation-delay: 2s;
        }

        .blob-3 {
            width: 250px;
            height: 250px;
            background: rgba(255, 214, 10, 0.1);
            bottom: 10%;
            left: 40%;
            animation-delay: 4s;
        }

        /* Floating Objects */
        .floating-decor {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-object {
            position: absolute;
            font-size: 2rem;
            color: rgba(0, 0, 0, 0.1);
            animation: float-slow 10s ease-in-out infinite;
        }

        .floating-object:nth-child(1) {
            top: 15%;
            left: 5%;
            font-size: 4rem;
            color: #fff;
        }

        .floating-object:nth-child(2) {
            top: 20%;
            right: 20%;
            color: var(--sun-yellow);
        }

        .floating-object:nth-child(3) {
            top: 60%;
            left: 10%;
            color: var(--candy-pink);
            animation-delay: 2s;
        }

        .floating-object:nth-child(4) {
            top: 70%;
            right: 15%;
            color: var(--sky-blue);
            animation-delay: 4s;
        }

        .floating-object:nth-child(5) {
            top: 40%;
            left: 50%;
            color: var(--coral-orange);
            animation-delay: 1s;
        }

        .tilt-card {
            transform-style: preserve-3d;
            transition: transform 0.2s ease;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 70px;
                text-align: center;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-illustration {
                margin-top: 50px;
                height: 400px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                padding: 20px;
                margin-top: 10px;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 60px;
                padding-right: 20px;
            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-icon {
                left: 0;
                right: auto;
            }

            .pricing-card.popular {
                transform: scale(1);
                margin-top: 20px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .hero-illustration {
                height: 300px;
            }

            .hero-mascot {
                font-size: 8rem;
            }

            .hero-card {
                width: 130px;
                padding: 10px;
            }

            .hero-card h3 {
                font-size: 1rem;
            }

            .hero-card i {
                font-size: 2rem;
            }

            .masonry-grid {
                column-count: 2;
            }

            .feature-card,
            .reason-card {
                padding: 20px;
            }

            .btn-magic,
            .btn-outline-magic {
                width: 100%;
                margin-bottom: 10px;
            }

            .hero-cta {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .masonry-grid {
                column-count: 1;
            }

            .hero-title {
                font-size: 2rem;
            }

            .price {
                font-size: 3rem;
            }

            .counter {
                font-size: 2.5rem;
            }
        }




        .hero1 {
            position: relative;
            padding: 20px 20px 80px;
            overflow: hidden;
        }


        .subtitle1 {
            text-align: center;
            font-size: 26px;
            font-weight: 500;
            color: #000;
            margin-bottom: 10px;
        }

        .main-title1 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 57px;
            line-height: 1;
            color: #000;


            margin-bottom: 10px;
        }

        .sub-title1 {
            text-align: center;
            font-size: 57px;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .desc1 {
            text-align: center;
            font-size: 18px;
            max-width: 900px;
            margin: auto;
            color: #555;
        }

        /* Profit Bar */

        .profit1 {
            margin: 40px auto;
            max-width: 560px;
            background: linear-gradient(90deg, rgb(218, 105, 189) 0%, rgb(255, 107, 112) 50%, rgb(255, 111, 157) 100%);
            color: white;
            padding: 6px 30px;
            border-radius: 50px;
            text-align: center;
            font-size: 19px;
            font-weight: 700;
            box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
        }

        .profit1 span {
            color: #fff;
        }




        .bg-book {
            position: absolute;
            width: 120px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
            opacity: .35;
        }

        .book1 {
            left: 2%;
            top: 20%;
        }

        .book2 {
            right: 2%;
            top: 25%;
        }

        .book3 {
            left: 4%;
            bottom: 10%;
        }

        .book4 {
            right: 3%;
            bottom: 15%;
        }










        @media (max-width:767px) {
            .hidden-xs {
                display: none !important
            }
        }


        .visible-xs {
            display: none !important
        }


        @media (max-width:767px) {
            .visible-xs {
                display: block !important
            }
        }



        .wrap {
            max-width: 1200px;
            margin: auto;
            padding: 50px 0px 50px;
            position: relative;
        }

        .badge1 {
            margin: 0 auto 16px;
            width: max-content;
            background: linear-gradient(90deg, rgb(218, 105, 189) 0%, rgb(255, 107, 112) 50%, rgb(255, 111, 157) 100%);
            color: #fff;
            padding: 6px 19px;
            border-radius: 14px;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
        }

        /* h1 {
            text-align: center;
            font-size: 75px;
            line-height: 1;
            color: #111;
            font-weight: 800;
            margin-bottom: 5px;
        } */

        h1 span {
            color: #ff6b71;
        }

        .divider {
            text-align: center;
            font-size: 0px;
            color: #1b9c46;
            margin: 0px 0 32px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px
        }

        .card {
            background: #fff;
            border-radius: 24px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
            position: relative;
            overflow: hidden;
            transition: .3s
        }

        .card:hover {
            transform: translateY(-8px)
        }

        .card:after {
            content: "";
            position: absolute;
            left: -20px;
            right: -20px;
            bottom: -72px;
            height: 90px;
            background: linear-gradient(90deg, rgb(218, 105, 189) 0%, rgb(255, 107, 112) 50%, rgb(255, 111, 157) 100%);
            border-radius: 50%;
        }

        .icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid #dfead4;
            color: #ff6b71;
            font-size: 42px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
        }

        .card h3 {
            font-size: 22px;
            margin-bottom: 14px
        }

        .card p {
            font-size: 16px;
            color: #333;
            line-height: 1.7
        }

        .ready {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            margin: 50px 0 24px
        }

        .ready span {
            color: #5740c9;
        }

        .cta {
            display: block;
            width: max-content;
            margin: auto;
            padding: 19px 40px;
            border-radius: 60px;
            text-decoration: none;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(90deg, rgb(218, 105, 189) 0%, rgb(255, 107, 112) 50%, rgb(255, 111, 157) 100%);
            box-shadow: 0 18px 30px rgba(0, 0, 0, .18);
            animation: pulse 2s infinite;
        }

        .leaf {
            position: fixed;
            font-size: 42px;
            opacity: .6;
            animation: float 8s ease-in-out infinite
        }

        .l1 {
            left: 20px;
            top: 20px
        }

        .l2 {
            right: 30px;
            top: 40px
        }

        .l3 {
            left: 10px;
            bottom: 30px
        }

        .l4 {
            right: 20px;
            bottom: 20px
        }

        @keyframes float {
            50% {
                transform: translateY(-20px) rotate(10deg)
            }
        }

        @keyframes pulse {
            50% {
                transform: scale(1.04)
            }
        }

        @media(max-width:1000px) {
            .cards {
                grid-template-columns: repeat(2, 1fr)
            }

            /* h1 {
                font-size: 58px
            } */
        }

        @media(max-width:700px) {
            .cards {
                grid-template-columns: 1fr
            }

            /* h1 {
                font-size: 42px
            } */

            .cta {
                font-size: 16px;
                padding: 18px 30px
            }
        }







        .hero-container {
            max-width: 1100px;
            margin: 40px auto 45px auto;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 5;
        }

        /* Top Badge */
        .promo-badge-container {
            position: relative;
            display: inline-block;
            margin-bottom: 10px;
        }

        .promo-badge {
            background-color: #3b1d82;
            color: white;
            border-radius: 50px;
            padding: 10px 30px;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.4;
            /* max-width: 600px; */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .promo-badge span {
            color: #ffe600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .promo-subtext {
            font-size: 22px;
            font-weight: 800;
            color: #1e1b4b;
            margin-top: 15px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
        }

        /* Decorative Whiskers / Party elements around badge */
        .decor-left,
        .decor-right {
            position: absolute;
            font-size: 24px;
            top: -10px;
        }

        .decor-left {
            left: -35px;
            transform: rotate(-15deg);
        }

        .decor-right {
            right: -35px;
            transform: rotate(15deg);
        }

        /* Main Heading */
        .main-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 76px;
            font-weight: 700;
            color: #0f172a;
            margin: 0px 0 15px 0;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .title-highlight {
            color: #e91e63;
        }

        .title-tm {
            font-size: 24px;
            vertical-align: super;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            color: #0f172a;
        }

        /* PLR Ribbon */
        .plr-ribbon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 35px;
            position: relative;
        }

        .plr-ribbon {
            background-color: #ffdf1b;
            border: 2px dashed #475569;
            border-radius: 50px;
            padding: 8px 45px;
            font-size: 32px;
            font-weight: 900;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 0px #e5af00;
        }

        .plr-ribbon .sparkle {
            color: #ff3377;
            font-size: 24px;
        }

        .ribbon-edge-left,
        .ribbon-edge-right {
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            position: absolute;
        }

        .ribbon-edge-left {
            border-right: 20px solid #ff3377;
            left: calc(50% - 170px);
        }

        .ribbon-edge-right {
            border-left: 20px solid #ff3377;
            right: calc(50% - 170px);
        }

        /* Info Box Card */
        .info-card {
            background-color: white;
            border: 2px solid #93c5fd;
            border-radius: 24px;
            padding: 12px 26px;
            max-width: 876px;
            margin: 0 auto 30px auto;
            display: flex;
            align-items: center;
            gap: 25px;
            text-align: left;
            box-shadow: 0 10px 25px rgba(147, 197, 253, 0.15);
        }

        .robot-icon-container {
            background: linear-gradient(135deg, #4c1d95, #3b0764);
            border-radius: 50%;
            width: 85px;
            height: 85px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(59, 7, 100, 0.2);
        }

        .robot-icon {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .info-text {
            font-size: 18px;
            color: #475569;
            line-height: 1.4;
        }

        .info-text strong {
            color: #ff0055;
            font-size: 24px;
            font-weight: 900;
            display: block;
            margin-bottom: 2px;
        }

        /* Bottom Promo Strip */
        .bottom-strip {
            background: linear-gradient(to right, #ec4899, #f43f5e);
            color: white;
            border-radius: 50px;
            padding: 12px 40px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-size: 22px;
            font-weight: 800;
            box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
        }

        .bottom-strip strong {
            color: #ffdf1b;
            font-weight: 900;
        }

        .gift-icon {
            background-color: #ffdf1b;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Side Mockup Panels (Comic strip mock elements) */
        .side-comic {
            position: absolute;
            top: 166px;
            width: 376px;
            height: 550px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background-color: #ccc;
            border: 4px solid white;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 4px;
            opacity: 0.6;
        }

        .side-comic-left {
            left: -153px;
            transform: rotate(7deg);
        }

        .side-comic-right {
            right: -157px;
            transform: rotate(-8deg);
        }

        .comic-cell {
            background-size: cover;
            background-position: center;
            flex-grow: 1;
            border-radius: 8px;
            min-height: 100px;
        }

        /* SVG & Helper styling for placeholder panels */
        .cell-1 {
            background-image: url('../images/demo8.png');
        }

        .cell-2 {
            background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?w=150&auto=format&fit=crop&q=60');
        }

        .cell-3 {
            background-image: url('../images/demo9.png');
        }

        /* Responsive Layout fixes */
        @media (max-width: 1200px) {
            .side-comic {
                display: none;
            }
        }

        @media (max-width: 768px) {

            /* header { flex-direction: column; gap: 20px; }
            nav { flex-direction: column; gap: 15px; } */
            .main-title {
                font-size: 48px;
            }

            .info-card {
                flex-direction: column;
                text-align: center;
            }

            .bottom-strip {
                font-size: 18px;
                padding: 10px 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .plr-ribbon {
                font-size: 22px;
            }
        }










        .container1 {
            max-width: 1200px;
            width: 100%;
            /* background: rgba(255, 255, 255, 0.4); */
            border-radius: 40px;
            padding: 40px 20px;
            /* box-shadow: 0 20px 40px rgba(0,0,0,0.05); */
            backdrop-filter: blur(10px);
            border: 4px solid #ffffff;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Top Badge */
        .info-badge1 {
            background-color: #ff526c;
            color: white;
            /* display: inline-flex; */
            align-items: center;
            gap: 8px;
            padding: 8px 24px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 3px dashed #ffb6c1;
            box-shadow: 0 4px 10px rgba(255, 82, 108, 0.3);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-badge1 span {
            color: #ffe600;
            font-size: 1.3rem;
        }

        /* Main Heading */
        .main-title1 {
            background: white;
            display: inline-block;
            padding: 15px 50px;
            border-radius: 50px;
            box-shadow: 0 10px 0px rgba(181, 226, 251, 0.5);
            margin-bottom: 50px;
            border: 3px dashed #b5e2fb;
            position: relative;
        }

        .main-title1 h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .text-blue1 {
            color: #2d2d6d;
        }

        .text-pink1 {
            color: #ff526c;
        }

        /* Grid Layout for Cards */
        .cards-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        /* Individual Card Styling */
        .card1 {
            background: white;
            border-radius: 35px;
            padding: 30px 20px;
            position: relative;
            box-shadow: inset 0 0 0 3px var(--card-border);
            border: 3px dashed var(--card-dashed);
        }

        .card-yellow1 {
            --card-border: #fff9c4;
            --card-dashed: #fff176;
            --badge-bg: #fbc02d;
        }

        .card-green1 {
            --card-border: #c8e6c9;
            --card-dashed: #81c784;
            --badge-bg: #4caf50;
        }

        .card-purple1 {
            --card-border: #e1bee7;
            --card-dashed: #ba68c8;
            --badge-bg: #9c27b0;
        }

        .card-pink1 {
            --card-border: #ffcdd2;
            --card-dashed: #e57373;
            --badge-bg: #e91e63;
        }

        .icon-container1 {
            width: 90px;
            height: 90px;
            border-radius: 50px;
            border: 3px dashed #ccc;
            margin: 0 auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fafafa;
        }

        .card-yellow1 .icon-container1 {
            border-color: #fbc02d;
            background-color: #fffde7;
        }

        .card-green1 .icon-container1 {
            border-color: #4caf50;
            background-color: #e8f5e9;
        }

        .card-purple1 .icon-container1 {
            border-color: #9c27b0;
            background-color: #f3e5f5;
        }

        .card-pink1 .icon-container1 {
            border-color: #e91e63;
            background-color: #ffebee;
        }

        .icon-container1 svg {
            width: 50px;
            height: 50px;
        }

        /* Card Ribbon/Badge */
        .card-badge1 {
            background-color: var(--badge-bg);
            color: white;
            padding: 8px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.2rem;
            display: inline-block;
            width: 90%;
            margin-bottom: 20px;
            box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* Card Typography */
        .card-main-text1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .card-sub-text1 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .text-highlight-pink1 {
            color: #ff526c;
        }

        .text-highlight-green1 {
            color: #4caf50;
        }

        /* Footer Section */
        .footer-prompt1 {
            background: white;
            display: inline-block;
            padding: 10px 30px;
            border-radius: 30px;
            border: 3px dashed #ba68c8;
            font-size: 1.6rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
        }

        .footer-prompt1 span {
            color: #9c27b0;
        }

        /* CTA Button */
        .cta-button1 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: linear-gradient(180deg, #ff526c 0%, #ff2a4b 100%);
            color: white;
            font-size: 1.6rem;
            font-weight: 700;
            text-decoration: none;
            padding: 18px 50px;
            border-radius: 50px;
            border: 4px solid #ffffff;
            box-shadow: 0 8px 0px #d31131, 0 15px 25px rgba(255, 42, 75, 0.4);
            transition: all 0.2s ease;
            max-width: 100%;
            width: 580px;
        }

        .cta-button1:hover {
            transform: translateY(2px);
            box-shadow: 0 6px 0px #d31131, 0 10px 20px rgba(255, 42, 75, 0.4);
        }

        .cta-icon1 {
            background: white;
            color: #ff526c;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adaptations */
        @media (max-width: 768px) {
            .main-title1 h1 {
                font-size: 2.5rem;
            }

            .main-title1 {
                padding: 10px 25px;
            }

            .cta-button1 {
                font-size: 1.3rem;
                width: 90%;
                padding: 12px 25px;
            }

        }





        .badge-pill1 {
            background: #fff;
            color: var(--purple);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .section-title1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--coral-orange), var(--candy-pink), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle1 {
            font-size: 1.1rem;
            color: #777;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Creative High-End Image Slider */
        .comic-slider-section {
            position: relative;
            padding: 40px 0;
            overflow: hidden;
        }

        .comic-swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 80px;
            overflow: hidden;
            /* Essential for Swiper bounds */
        }

        .comic-swiper .swiper-slide {
            width: 300px;
            height: 534px;
            /* 941x1672 ratio mapped to 300px width */
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            background: #fff;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .comic-swiper .swiper-slide-active {
            box-shadow: 0 40px 80px rgba(155, 93, 229, 0.35);
            z-index: 10;
        }

        .comic-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Animated gradient border for active slide */
        .comic-swiper .swiper-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 4px;
            background: linear-gradient(45deg, var(--candy-pink), var(--sun-yellow), var(--sky-blue));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: 2;
            opacity: 0.5;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .comic-swiper .swiper-slide-active::before {
            opacity: 1;
            box-shadow: 0 0 25px rgba(255, 112, 166, 0.6);
        }

        /* Floating Badge */
        .comic-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--coral-orange);
            color: #fff;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 700;
            font-family: var(--font-heading);
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(2deg);
            }
        }

        /* Custom Pagination */
        .comic-swiper-pagination {
            position: relative;
            bottom: 0 !important;
            margin-top: 20px;
        }

        .comic-swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--lavender);
            opacity: 1;
            transition: all 0.3s;
        }

        .comic-swiper-pagination .swiper-pagination-bullet-active {
            background: var(--candy-pink);
            width: 35px;
            border-radius: 10px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .comic-swiper .swiper-slide {
                width: 240px;
                height: 427px;
                /* Maintaining 941x1672 aspect ratio */
            }

            .section-title1 {
                font-size: 2rem;
            }
        }




        .swiper-3d {
            perspective: 359px;
        }