*{
          margin:0;
          padding:0;
          box-sizing:border-box;
        }
        body{
          font-family:Inter,sans-serif;
          background:#000;
          color:white;
          overflow-x:hidden;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .logo img {
            height: 80px;
            width: auto;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            position: relative;
            padding: 0.5rem 0;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        .nav-menu li a:hover {
            color: #00ffff;
            opacity: 1;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }
        .nav-menu li.active a {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }
        .login-btn {
            position: relative;
            background: #000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(to top, #1F1F1F, #4E4E4E);
            border-radius: 9px;
            z-index: -1;
        }

        .login-btn:hover {
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0, 255, 255, 1);
        }
        .login-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }
        .hamburger {
            display: none !important;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            text-align: center;
        }
        .mobile-menu.show {
            display: block;
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu li {
            margin: 3rem 0;
        }
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }
        .mobile-menu a:hover {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            nav {
                order: 3;
            }

            .hamburger {
                display: flex !important;
                order: 2;
            }

            .login-icon {
                order: 1;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-group {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                height: 50px;
            }
            .logo img {
                height: 64px;
            }
            .login-btn {
                padding: 0.4rem 0.8rem;
                font-size: 12px;
            }
        }

        .hero {
            min-height: calc(60vh - 60px);
            display: flex;
            align-items: center;
            padding: 3rem 2rem;
            background: url('Images/grid_3.png') no-repeat center center;
            background-size: cover;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            overflow: hidden;
        }

        .hero-left,
        .hero-right {
            min-width: 0;
            overflow-wrap: break-word;
        }

        .hero-title {
            font-size: clamp(28px, 3.5vw, 48px);
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.05em;
            margin-bottom: 0.5rem;
        }

        .hero-title img {
            height: clamp(32px, 5vw, 48px);
            max-width: 100%;
            width: auto;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            background: linear-gradient(90deg, #00e5ff, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            font-weight: 500;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .hero-body {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 200;
            opacity: 0.7;
        }

        .hero-mission {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 2px solid #00ffff;
            overflow-wrap: break-word;
        }

        .hero-cta {
            display: inline-block;
            padding: 0.8rem 2rem;
            border: 1px solid #00ffff;
            color: #00ffff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 255, 255, 0.1);
            transition: width 0.3s ease;
            z-index: 0;
        }

        .hero-cta:hover {
            color: white;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
        }

        .hero-cta:hover::before {
            width: 100%;
        }

        .specialize-subtitle {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #00ffff;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .specialize-bars {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .specialize-bar {
            display: flex;
            align-items: center;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .specialize-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #00ffff, #0088ff);
            transition: width 0.3s ease;
        }

        .specialize-bar:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(10px);
            border-color: rgba(0, 255, 255, 0.3);
        }

        .specialize-bar:hover::before {
            width: 8px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .bar-number {
            font-size: 1rem;
            font-weight: 700;
            color: #00ffff;
            margin-right: 1.5rem;
            min-width: 40px;
        }

        .bar-text {
            font-size: 1.1rem;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .specialize-bar {
                padding: 1.2rem 1.5rem;
            }
            .specialize-bar:hover {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .specialize-bar {
                padding: 1.2rem 1.5rem;
            }
            .specialize-bar:hover {
                transform: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-body {
                font-size: 0.95rem;
            }
            .hero-mission {
                font-size: 1rem;
            }
            .specialize-bar {
                padding: 1rem;
            }
            .bar-text {
                font-size: 0.95rem;
            }
        }

        .about-section {
            position: relative;
            padding: 6rem 0;
            background: #000;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .about-heading {
            font-size: clamp(28px, 3.5vw, 48px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 2rem;
        }

        .about-body {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            font-weight: 300;
            margin-bottom: 2rem;
            overflow-wrap: break-word;
        }

        .about-quote {
            position: relative;
            padding: 1.5rem 2rem;
            margin-bottom: 2.5rem;
            border-left: 3px solid transparent;
            border-image: linear-gradient(180deg, #00ffff, #4ade80) 1;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 0 12px 12px 0;
            font-size: 1.05rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            overflow-wrap: break-word;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .about-feature-card {
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .about-feature-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.1), 0 0 40px rgba(74, 222, 128, 0.05);
            transform: translateY(-4px);
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(74, 222, 128, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .about-feature-card h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .about-feature-card p {
            font-size: 0.8rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }

        .about-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 500px;
        }

        .about-visual-bg-1 {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            animation: float-slow 8s ease-in-out infinite;
        }

        .about-visual-bg-2 {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
            bottom: 10%;
            left: 5%;
            animation: float-slow 10s ease-in-out infinite reverse;
        }

        .about-logo-container {
            position: relative;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float-gentle 6s ease-in-out infinite;
            box-shadow: 0 0 60px rgba(0, 255, 255, 0.08), 0 0 120px rgba(74, 222, 128, 0.04);
        }

        .about-logo-container::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(74, 222, 128, 0.1), rgba(0, 255, 255, 0.05));
            z-index: -1;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            padding: 1px;
        }

        .about-logo-container img {
            width: 300px;
            height: auto;
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .about-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
        }

        .about-particle:nth-child(1) { top: 15%; left: 20%; animation: particle-float 5s ease-in-out infinite; width: 6px; height: 6px; background: rgba(0, 255, 255, 0.7); }
        .about-particle:nth-child(2) { top: 25%; right: 15%; animation: particle-float 7s ease-in-out infinite 1s; width: 3px; height: 3px; background: rgba(74, 222, 128, 0.8); }
        .about-particle:nth-child(3) { bottom: 20%; left: 15%; animation: particle-float 6s ease-in-out infinite 2s; width: 5px; height: 5px; background: rgba(0, 255, 255, 0.6); }
        .about-particle:nth-child(4) { bottom: 30%; right: 20%; animation: particle-float 8s ease-in-out infinite 0.5s; width: 4px; height: 4px; background: rgba(74, 222, 128, 0.7); }
        .about-particle:nth-child(5) { top: 45%; left: 8%; animation: particle-float 9s ease-in-out infinite 3s; width: 3px; height: 3px; background: rgba(0, 255, 255, 0.8); }
        .about-particle:nth-child(6) { top: 60%; right: 8%; animation: particle-float 6.5s ease-in-out infinite 1.5s; width: 5px; height: 5px; background: rgba(74, 222, 128, 0.6); }
        .about-particle:nth-child(7) { top: 8%; left: 50%; animation: particle-float 7.5s ease-in-out infinite 2.5s; width: 3px; height: 3px; background: rgba(0, 255, 255, 0.7); }
        .about-particle:nth-child(8) { bottom: 8%; left: 45%; animation: particle-float 5.5s ease-in-out infinite 0.8s; width: 4px; height: 4px; background: rgba(74, 222, 128, 0.8); }

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

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

        @keyframes particle-float {
            0%, 100% { transform: translate(0, 0); opacity: 0.4; }
            25% { transform: translate(10px, -15px); opacity: 1; }
            50% { transform: translate(-5px, -25px); opacity: 0.6; }
            75% { transform: translate(-15px, -10px); opacity: 1; }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .about-visual {
                min-height: 400px;
            }
            .about-logo-container {
                width: 260px;
                height: 260px;
            }
            .about-logo-container img {
                width: 150px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 4rem 0;
            }
            .about-features {
                grid-template-columns: 1fr 1fr;
            }
            .about-visual {
                min-height: 350px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 3rem 0;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .about-heading {
                font-size: 1.75rem;
            }
            .about-logo-container {
                width: 220px;
                height: 220px;
            }
            .about-logo-container img {
                width: 120px;
            }
            .about-visual {
                min-height: 300px;
            }
            .about-visual-bg-1,
            .about-visual-bg-2 {
                width: 180px;
                height: 180px;
            }
        }
    
        #mmBot-launcher {
            display: none !important;
        }
        .chat-widget-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            border: none;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(74, 222, 128, 0.15);
            transition: all 0.3s ease;
        }
        .chat-widget-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(0, 229, 255, 0.45), 0 0 50px rgba(74, 222, 128, 0.2);
        }
        .chat-widget-btn img.chat-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }
        .chat-widget-btn svg.chat-close {
            display: none;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-btn.active img.chat-icon {
            display: none;
        }
        .chat-widget-btn.active svg.chat-close {
            display: block;
            width: 22px;
            height: 22px;
            fill: #000;
        }
        .chat-widget-popup {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 380px;
            height: 520px;
            border-radius: 20px;
            overflow: hidden;
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .chat-widget-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .chat-widget-header {
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-widget-header-logo {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffff, #4ade80);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .chat-widget-header-logo svg {
            width: 20px;
            height: 20px;
            fill: #000;
        }
        .chat-widget-header-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }
        .chat-widget-header-text span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }
        .chat-widget-iframe {
            width: 100%;
            height: calc(100% - 69px);
            border: none;
            background: #0a0a0a;
        }
        .chat-widget-ring {
            position: fixed;
            bottom: 22px;
            right: 22px;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 2px solid rgba(0, 255, 255, 0.2);
            z-index: 9997;
            animation: chat-ring 3s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes chat-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.15); opacity: 0; }
        }
        @media (max-width: 480px) {
            .chat-widget-popup {
                width: calc(100% - 24px);
                height: calc(100vh - 140px);
                bottom: 88px;
                right: 12px;
            }
            .chat-widget-btn {
                bottom: 20px;
                right: 20px;
            }
            .chat-widget-ring {
                bottom: 14px;
                right: 14px;
            }
        }

/* Hide default MMBot launcher to prevent overlapping with custom widget */
#mmBot-launcher {
    display: none !important;
}
