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

        body {
            font-family: 'Arial', sans-serif;
            background: 
                radial-gradient(circle at 20% 10%, rgba(64, 224, 208, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 40% 60%, rgba(255, 20, 147, 0.08) 0%, transparent 30%),
                linear-gradient(135deg, #0a0a0f 0%, #1a1124 30%, #0f0f23 70%, #050508 100%);
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 98px,
                    rgba(64, 224, 208, 0.03) 100px
                ),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 98px,
                    rgba(138, 43, 226, 0.02) 100px
                );
            pointer-events: none;
            z-index: -1;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(64, 224, 208, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.04) 0%, transparent 25%);
            pointer-events: none;
            z-index: -1;
            animation: ambientPulse 8s ease-in-out infinite alternate;
        }

        @keyframes ambientPulse {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(20px);
            padding: 1rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(64, 224, 208, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }


        /* -------------- master oggway button /*


        /* Sticky Master oogway Popup Button */
        .wisdom-button {
            position: fixed;
            top: 200px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff9a56, #ff6b35);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #fff;
        }

        .wisdom-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
        }

        .wisdom-button::before {
            content: "";
            font-size: 24px;
            animation: pulse 2s infinite;
        }

        .wisdom-button img{
            width: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-pic img{
            width: 55px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Message Notification */
        .message-notification {
            position: fixed;
            top: 197px;
            left: 65px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 4px 11px;
            border-radius: 30px;
            font-size: 10px;
            text-decoration:solid;
            color: #2c3e50;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            white-space: nowrap;
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .message-notification.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translateX(-20px);
        }

        .message-notification::before {
            content: "";
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid rgba(255, 255, 255, 0.95);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Popup Card */
        .wisdom-popup {
            position: fixed;
            bottom: 100px;
            left: 20px;
            width: 320px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: translateY(100px) scale(0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .wisdom-popup.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        /* Profile Section */
        .profile-section {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .profile-pic {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 12px;
            border: 2px solid #fff;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .profile-info h3 {
            color: #2c3e50;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .profile-info p {
            color: #7f8c8d;
            font-size: 12px;
        }

        /* Wisdom Message */
        .wisdom-message {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 4px solid #ff6b35;
            position: relative;
        }

        .wisdom-message::before {
            content: "";
            position: absolute;
            top: -5px;
            left: 10px;
            font-size: 30px;
            color: #ff6b35;
            font-weight: bold;
        }

        .wisdom-text {
            color: #2c3e50;
            font-size: 14px;
            line-height: 1.5;
            font-style: italic;
            margin-top: 10px;
        }

        /* Play Button */
        .play-button {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .play-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
            background: linear-gradient(135deg, #45a049, #4CAF50);
        }

        .play-button::before {
            content: "▶️";
            font-size: 16px;
        }

        .pause-btn {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border: none;
            padding: 9px 9px;
            border-radius: 18px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
        }

        .pause-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3.5px 12px rgba(76, 175, 80, 0.4);
            background: linear-gradient(135deg, #45a049, #4CAF50);
        }

        .pause-btn::before {
            content: " ⏸️";
            font-size: 16px;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #95a5a6;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #e74c3c;
        }

        /* Demo content */
        .demo-content {
            text-align: center;
            color: white;
            margin-top: 50px;
        }

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

        .demo-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .wisdom-popup {
                width: calc(100vw - 40px);
                left: 20px;
                right: 20px;
            }
        }

        /* ---------contact us sticky button/*-------------/*/
                    .demo-content {
                padding: 50px;
                color: white;
                text-align: center;
            }

            .contact-container {
                position: fixed;
                bottom: 30px;
                right: 30px;
                z-index: 1000;
            }

            .contact-button {
                width: 120px;
                height: 60px;
                padding: 24px;
                background: linear-gradient(135deg, #ff1493, #8a2be2);
                border-radius: 40%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                transition: all 0.3s ease;
                border: none;
                color: white;
                font-size: 20px;
            }

            .contact-button:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
            }

            .contact-button.active {
                background: linear-gradient(135deg, #8a2be2, #e040d3);
                transform: rotate(45deg);
            }

            .contact-menu {
                position: absolute;
                bottom: 80px;
                right: 0;
                background: white;
                border-radius: 15px;
                padding: 20px;
                min-width: 280px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                transform: scale(0) translateY(20px);
                opacity: 0;
                transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                transform-origin: bottom right;
            }

            .contact-menu.show {
                transform: scale(1) translateY(0);
                opacity: 1;
            }

            .contact-message {
                text-align: center;
                margin-bottom: 20px;
                color: #333;
                font-weight: 600;
                font-size: 16px;
            }

            .social-links {
                display: flex;
                gap: 15px;
                justify-content: center;
            }

            .social-link {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 12px 16px;
                border-radius: 10px;
                text-decoration: none;
                color: white;
                font-weight: 500;
                transition: all 0.3s ease;
                min-width: 100px;
                justify-content: center;
            }

            .discord-link {
                background: linear-gradient(135deg, #5865F2, #4752C4);
            }

            .discord-link:hover {
                background: linear-gradient(135deg, #4752C4, #3C42A3);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
            }

            .reddit-link {
                background: linear-gradient(135deg, #FF4500, #CC3700);
            }

            .reddit-link:hover {
                background: linear-gradient(135deg, #CC3700, #AA2E00);
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
            }

            .social-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }

            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.3);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }

            .overlay.show {
                opacity: 1;
                visibility: visible;
            }

            @media (max-width: 768px) {
                .contact-menu {
                    min-width: 250px;
                    right: -10px;
                }
                
                .social-links {
                    flex-direction: column;
                }
                
                .social-link {
                    min-width: auto;
                }
            }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #6b4d99;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #6b4d99;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #9b7dd4;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #6b4d99;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(5, 5, 8, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 6rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2 {
            background: linear-gradient(45deg, #40e0d0, #ff1493, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.3));
        }

        .sticky{
            position: sticky;
            top: 70;
            left: 80%;
            padding: 20px;
            font-size: 15px;
            border-radius: 50%;
        }

        h1 {
            font-size: 3rem;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #40e0d0, #ff1493);
            box-shadow: 0 0 15px rgba(64, 224, 208, 0.6);
        }
        .underline{
          text-decoration: underline;
        }

        /* Home Section */
        .hero {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #94a3b8;
            margin-bottom: 3rem;
            max-width: 600px;
            text-shadow: 0 0 20px rgba(64, 224, 208, 0.2);
        }

        .cta-button {
            background: linear-gradient(135deg, #40e0d0, #ff1493, #8a2be2);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 32px rgba(64, 224, 208, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(64, 224, 208, 0.4);
        }

        /* Content Cards */
        .content-card {
            background: rgba(15, 15, 35, 0.7);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(64, 224, 208, 0.2);
            transition: all 0.4s ease;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #40e0d0, transparent);
        }

        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 60px rgba(64, 224, 208, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(64, 224, 208, 0.4);
        }

        /* Plan Details */
        .plan-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background: rgba(15, 15, 35, 0.8);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border-left: 4px solid transparent;
            border-image: linear-gradient(45deg, #40e0d0, #ff1493) 1;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(64, 224, 208, 0.05), rgba(255, 20, 147, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 
                0 15px 40px rgba(64, 224, 208, 0.2),
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.4));
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Reviews */
        * {
             box-sizing: border-box;
           }

        .slider {
            position: relative;
            margin: auto;
            width: 80%;
            max-width: 800px;
            overflow: hidden;
            border-radius: 10px;
            }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .slide {
            position: relative;
            min-width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }

        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .navigation-s {
            position: relative;
            margin: auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .prev, .next {
            background: rgba(15, 14, 11, 0.5);
            border: none;
            color: white;
            padding: 12px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
        }

        .dots {
            text-align: center;
            margin-top: 10px;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }

        .dot.active {
            background-color: #fff;
        }


        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .review-card {
            background: rgba(15, 15, 35, 0.8);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            border-left: 4px solid transparent;
            border-image: linear-gradient(45deg, #ff1493, #8a2be2) 1;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .review-card::before {
            content: '';
            position: absolute;
            
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 20, 147, 0.03), rgba(138, 43, 226, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 40px rgba(255, 20, 147, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .review-author {
            font-weight: bold;
            background: linear-gradient(45deg, #40e0d0, #ff1493);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 1rem;
        }

        /* Anime Elements */
        .floating-element {
            position: absolute;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(212, 197, 255, 0.4));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Container for pricing cards */
          .pricing-container {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 2rem;
            flex-wrap: wrap;
            padding: 2rem;
          }

          /* Updated Pricing Card */
          .pricing-card {
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(5, 5, 8, 0.9));
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            text-align: center;
            max-width: 400px;
            min-width: 300px;
            flex: 1;
            border: 2px solid transparent;
            border-image: linear-gradient(45deg, #40e0d0, #ff1493, #8a2be2) 1;
            box-shadow:
              0 15px 50px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            /* Removed margin: 2rem auto; */
          }

          .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(64, 224, 208, 0.1), rgba(255, 20, 147, 0.05));
            opacity: 0.5;
          }

          .price {
            font-size: 3rem;
            background: linear-gradient(45deg, #40e0d0, #ff1493);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            margin: 1rem 0;
            filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.4));
            position: relative;
          }

          /* Alternative: CSS Grid Layout */
          .pricing-container-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
          }

          /* Responsive adjustments */
          @media (max-width: 768px) {
            .pricing-container {
              flex-direction: column;
              align-items: center;
            }
            
            .pricing-card {
              max-width: 100%;
              width: 100%;
            }
          }
        
        @media (max-width: 480px) {
            .pricing-container {
                gap: 0.8rem;
            }
        }
            
            .pricing-card {
                min-width: 220px;
                max-width: 250px;
                padding: 1.5rem 1rem;
            }
            
            .price {
                font-size: 2.2rem;
            }
            
            .pricing-card p {
                font-size: 0.9rem;
            }

        /* Footer */
        footer {
            background: rgba(5, 5, 8, 0.9);
            color: #94a3b8;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(64, 224, 208, 0.2);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
        }
        /* .footer-container{

            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
        } */
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            section { padding: 4rem 1rem 2rem; }
            .hero-subtitle { font-size: 1.1rem; }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(5, 5, 8, 0.8);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #40e0d0, #ff1493);
            border-radius: 4px;
            box-shadow: 0 0 15px rgba(64, 224, 208, 0.4);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff1493, #8a2be2);
            box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
        }
