* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0EA5E9;
            --primary-dark: #0284C7;
            --primary-light: #38BDF8;
            --dark: #1E293B;
            --dark-card: #263238;
            --accent: #38BDF8;
            --text-light: #78909C;
        }

        body {
            font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #1E293B;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            pointer-events: none;
        }

        .animated-bg span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: var(--primary);
            animation: float 25s infinite;
            border-radius: 50%;
        }

        .animated-bg span:nth-child(1) { left: 10%; animation-delay: 0s; }
        .animated-bg span:nth-child(2) { left: 20%; animation-delay: 2s; }
        .animated-bg span:nth-child(3) { left: 30%; animation-delay: 4s; }
        .animated-bg span:nth-child(4) { left: 40%; animation-delay: 6s; }
        .animated-bg span:nth-child(5) { left: 50%; animation-delay: 8s; }
        .animated-bg span:nth-child(6) { left: 60%; animation-delay: 10s; }
        .animated-bg span:nth-child(7) { left: 70%; animation-delay: 12s; }
        .animated-bg span:nth-child(8) { left: 80%; animation-delay: 14s; }
        .animated-bg span:nth-child(9) { left: 90%; animation-delay: 16s; }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.3rem 5%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideDown 0.6s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        nav.scrolled {
            padding: 0.9rem 5%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-placeholder {
            width: 60px;
            height: 60px;
            background: transparent;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .logo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: #1E293B;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.9rem 1.8rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            letter-spacing: 0.3px;
        }

        .nav-menu > li > a:hover,
        .nav-menu > li > a.active {
            background: rgba(14, 165, 233, 0.1);
            color: #0EA5E9;
        }

        .dropdown-icon {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-menu > li:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Mega Menu - WITH SCROLLING */
        .mega-menu {
            position: absolute;
            top: calc(100% + 1rem);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(14, 165, 233, 0.15);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
            border-radius: 20px;
            padding: 3rem 3.5rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            min-width: 800px;
            max-width: 1200px;
            max-height: 75vh;
            overflow-y: auto;
            overflow-x: visible;
        }

        /* Custom Scrollbar */
        .mega-menu::-webkit-scrollbar {
            width: 8px;
        }

        .mega-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .mega-menu::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .mega-menu::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .nav-menu > li:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: all;
        }

        .mega-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 12px solid rgba(255, 255, 255, 0.98);
            filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.05));
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem;
        }

        .mega-menu-column {
            position: relative;
            overflow: visible;
        }

        .mega-menu-column h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .mega-menu-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
            border-radius: 10px;
        }

        .mega-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .mega-menu-links li {
            position: relative;
        }

        .mega-menu-links a {
            color: #475569;
            font-size: 1rem;
            font-weight: 500;
            padding: 1.1rem 1.3rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .mega-menu-links a .arrow {
            color: #E74C3C;
            font-weight: 700;
            font-size: 0.9rem;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .mega-menu-links a:hover .arrow {
            transform: translateX(5px);
        }

        .mega-menu-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .mega-menu-links a:hover {
            background: linear-gradient(90deg, rgba(14, 165, 233, 0.08) 0%, transparent 100%);
            color: var(--primary);
            padding-left: 1.5rem;
        }

        .mega-menu-links a:hover::before {
            transform: scaleY(1);
        }

        /* Submenu styling */
        .submenu {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(14, 165, 233, 0.15);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            border-radius: 16px;
            padding: 2rem;
            min-width: 320px;
            z-index: 10002;
            margin-left: 0.8rem;
        }

        .mega-menu-links li:hover > .submenu {
            display: block;
        }

        .submenu-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 700;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(14, 165, 233, 0.2);
        }

        .submenu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .submenu a {
            color: #475569;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 1rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: block;
            text-decoration: none;
        }

        .submenu a:hover {
            background: rgba(14, 165, 233, 0.08);
            color: var(--primary);
            padding-left: 1.5rem;
        }

        /* Third level submenu */
        .submenu li {
            position: relative;
        }

        .submenu li .submenu {
            left: 100%;
            top: 0;
            z-index: 10003;
        }

        .mega-featured {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 1.8rem;
            border-radius: 14px;
            margin-top: 1.5rem;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3); }
            50% { box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5); }
        }

        .mega-featured h4 {
            color: #ffffff !important;
            font-size: 1rem !important;
            margin-bottom: 0.5rem !important;
        }

        .mega-featured h4::after {
            display: none;
        }

        .mega-featured p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .mega-featured-btn {
            background: #ffffff;
            color: var(--primary);
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .mega-featured-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-contact {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            padding: 0.9rem 2.2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(14, 165, 233, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-contact:hover::before {
            left: 100%;
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(14, 165, 233, 0.5);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle:active {
            transform: scale(0.9);
        }
/* Mega Menu 2 */
.mega-menu2 {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 350px;
    max-width: 450px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Scrollbar */
.mega-menu2::-webkit-scrollbar {
    width: 8px;
}

.mega-menu2::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu2::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.mega-menu2::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Hover trigger */
.nav-menu > li:hover .mega-menu2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.mega-menu2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.05));
}

/* Grid */
.mega-menu2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Column */
.mega-menu2-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.8rem;
    position: relative;
}

.mega-menu2-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 10px;
}

/* Links */
.mega-menu2-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mega-menu2-links li a {
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.mega-menu2-links li a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary);
    padding-left: 1.5rem;
}

        /* BEAUTIFUL SIDEBAR MENU */
        .sidebar-menu {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
            z-index: 99999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .sidebar-menu.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 99998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sidebar-logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .sidebar-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .sidebar-close {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .sidebar-content {
            padding: 2rem;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav > li {
            margin-bottom: 0.5rem;
        }

        .sidebar-nav > li > a,
        .sidebar-nav > li > button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
            text-align: left;
        }

        .sidebar-nav > li > a:hover,
        .sidebar-nav > li > button:hover {
            background: rgba(14, 165, 233, 0.2);
            border-color: var(--primary);
            transform: translateX(-5px);
        }

        .sidebar-nav > li > a.active,
        .sidebar-nav > li > button.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-color: transparent;
        }

        .sidebar-dropdown-icon {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .sidebar-nav > li > button.active .sidebar-dropdown-icon {
            transform: rotate(180deg);
        }

        /* Sidebar Submenu */
        .sidebar-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }

        .sidebar-submenu.active {
            max-height: 2000px;
        }

        .sidebar-submenu-item {
            margin-bottom: 0.3rem;
        }

        .sidebar-submenu-item > a,
        .sidebar-submenu-item > button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
            text-align: left;
            border: 1px solid transparent;
        }

        .sidebar-submenu-item > a:hover,
        .sidebar-submenu-item > button:hover {
            background: rgba(14, 165, 233, 0.1);
            color: var(--primary-light);
            padding-left: 1.5rem;
            border-color: rgba(14, 165, 233, 0.3);
        }

        /* Third Level Submenu */
        .sidebar-submenu-level3 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 1rem;
            margin-top: 0.3rem;
        }

        .sidebar-submenu-level3.active {
            max-height: 1500px;
        }

        .sidebar-submenu-level3 a {
            display: block;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            color: #64748B;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .sidebar-submenu-level3 a:hover {
            background: rgba(14, 165, 233, 0.08);
            color: var(--primary-light);
            border-left-color: var(--primary);
            padding-left: 1.5rem;
        }

        .sidebar-cta {
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 16px;
            text-align: center;
        }

        .sidebar-cta h4 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .sidebar-cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .sidebar-cta-btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: #ffffff;
            color: var(--primary);
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .sidebar-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Hamburger Menu Icon */
        .menu-icon {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            position: relative;
            cursor: pointer;
            z-index: 100000;
        }

        .menu-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--dark);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transition: all 0.3s ease;
        }

        .menu-icon span:nth-child(1) {
            top: 0;
        }

        .menu-icon span:nth-child(2) {
            top: 10px;
        }

        .menu-icon span:nth-child(3) {
            top: 20px;
        }

        .menu-icon.active span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .menu-icon.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .menu-icon.active span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 5% 6rem;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
            margin-top: 85px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
            animation: bgMove 10s ease-in-out infinite;
        }

        @keyframes bgMove {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(2deg); }
        }

        .hero-video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            color: var(--primary-light);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            animation: badge-float 3s ease-in-out infinite;
        }

        @keyframes badge-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 1.8rem;
            line-height: 1.1;
            letter-spacing: -1px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.35rem;
            color: #94A3B8;
            margin-bottom: 3.5rem;
            font-weight: 400;
            line-height: 1.7;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            padding: 1.3rem 3.2rem;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s ease;
            box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 18px 55px rgba(14, 165, 233, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            padding: 1.3rem 3.2rem;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-4px);
        }

        /* Trust Bar */
        .trust-bar {
            background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
            padding: 3rem 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trust-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .trust-item {
            text-align: center;
            animation: fadeInUp 1s ease both;
        }

        .trust-item:nth-child(1) { animation-delay: 0.1s; }
        .trust-item:nth-child(2) { animation-delay: 0.2s; }
        .trust-item:nth-child(3) { animation-delay: 0.3s; }
        .trust-item:nth-child(4) { animation-delay: 0.4s; }

        .trust-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-light);
            display: block;
            margin-bottom: 0.5rem;
            animation: countUp 2s ease both;
        }

        @keyframes countUp {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }

        .trust-label {
            color: #94A3B8;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Welcome Section */
        .welcome {
            padding: 8rem 5%;
            background: #ffffff;
        }

        .welcome-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .welcome-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
            border: 2px dashed rgba(14, 165, 233, 0.3);
            animation: float-image 6s ease-in-out infinite;
        }

        @keyframes float-image {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .welcome-content {
            animation: fadeInUp 1s ease;
        }

        .section-label {
            font-size: 0.85rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 1rem;
            font-weight: 800;
            display: inline-block;
            position: relative;
            padding-left: 50px;
        }

        .section-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 3px;
            background: var(--primary);
            border-radius: 10px;
        }

        .welcome-content h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .welcome-content p {
            color: #64748B;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .welcome-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .welcome-list li {
            padding: 1rem 0;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            font-size: 1.05rem;
            border-bottom: 1px solid #F1F5F9;
            animation: slideInLeft 0.6s ease both;
        }

        .welcome-list li:nth-child(1) { animation-delay: 0.1s; }
        .welcome-list li:nth-child(2) { animation-delay: 0.2s; }
        .welcome-list li:nth-child(3) { animation-delay: 0.3s; }
        .welcome-list li:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .welcome-list li::before {
            content: '✓';
            color: #ffffff;
            background: var(--primary);
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
        }

        /* Services Section */
        .services {
            padding: 8rem 5%;
            background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 1.25rem;
            color: #64748B;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: #ffffff;
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid #E2E8F0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease both;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 70px rgba(14, 165, 233, 0.2);
            border-color: var(--primary-light);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 12px 35px rgba(14, 165, 233, 0.35);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: 0px;
        }

        .service-card p {
            color: #64748B;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            padding: 8rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
            animation: bgMove 15s ease-in-out infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        .cta-section h2 {
            font-size: 3.8rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .cta-section p {
            font-size: 1.35rem;
            color: #94A3B8;
            margin-bottom: 3.5rem;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #0F172A;
            color: #94A3B8;
            padding: 6rem 5% 3rem;
            border-top: 1px solid rgba(14, 165, 233, 0.1);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto 4rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.9rem;
        }

        .footer-section a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--primary-light);
            transform: translateX(8px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #64748B;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .section-title { font-size: 2.5rem; }
            .mega-menu { 
                width: 90vw;
                left: 5%;
                transform: none;
                max-height: 70vh;
            }
            .mega-menu-grid { grid-template-columns: 1fr 1fr; }
            .welcome-grid { grid-template-columns: 1fr; gap: 3rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-menu:not(.active), .btn-contact { display: none; }
            .mobile-menu-toggle { display: block; }
            
            /* Mobile active menu */
            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 85px;
                left: 0;
                right: 0;
                background: #ffffff;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                padding: 1rem 0;
                max-height: calc(100vh - 85px);
                overflow-y: auto;
                z-index: 9998;
            }
            
            .nav-menu.active > li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-menu.active > li > a {
                padding: 1.2rem 5%;
                border-radius: 0;
            }
            
            /* Mobile mega menu - expand in place */
            .mega-menu {
                position: static !important;
                width: 100% !important;
                left: auto !important;
                transform: none !important;
                max-height: 0 !important;
                overflow: hidden !important;
                padding: 0 !important;
                opacity: 0 !important;
                visibility: hidden !important;
                border: none !important;
                box-shadow: none !important;
                transition: max-height 0.3s ease !important;
            }
            
            .nav-menu.active li:hover .mega-menu {
                opacity: 1 !important;
                visibility: visible !important;
                max-height: 2000px !important;
                padding: 1.5rem 5% !important;
                background: #f8f9fa !important;
                overflow-y: auto !important;
            }
            
            .mega-menu::before { display: none !important; }
            
            .mega-menu-grid { 
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            
            .mega-menu-links a {
                font-size: 0.95rem;
                padding: 0.8rem 1rem;
            }
            
            .hero { padding: 6rem 5% 4rem; margin-top: 75px; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .services-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .trust-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        }
        /* Partners Section */
.partners-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.partner-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease both;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.15s; }
.partner-card:nth-child(3) { animation-delay: 0.2s; }
.partner-card:nth-child(4) { animation-delay: 0.25s; }
.partner-card:nth-child(5) { animation-delay: 0.3s; }
.partner-card:nth-child(6) { animation-delay: 0.35s; }
.partner-card:nth-child(7) { animation-delay: 0.4s; }
.partner-card:nth-child(8) { animation-delay: 0.45s; }

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Certifications Showcase */
.certifications-showcase {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(14, 165, 233, 0.3);
    position: relative;
    overflow: hidden;
}

.certifications-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.certifications-showcase h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cert-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease both;
}

.cert-badge:nth-child(1) { animation-delay: 0.5s; }
.cert-badge:nth-child(2) { animation-delay: 0.6s; }
.cert-badge:nth-child(3) { animation-delay: 0.7s; }
.cert-badge:nth-child(4) { animation-delay: 0.8s; }
.cert-badge:nth-child(5) { animation-delay: 0.9s; }

.cert-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cert-badge-icon {
    font-size: 2rem;
}

.cert-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cert-badges {
        gap: 1rem;
    }

    .cert-badge {
        padding: 1rem 1.5rem;
    }
}

