   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #0f172a 100%);
          
            min-height: 100vh;
            overflow-x: hidden;
        }

		.section_login  input::placeholder {
	
		  color: #ccc;
		}

        .red{
        	color:#f00;
        }
        .modal-body .red{
        	text-align: center;
        }
        .text-right{
        	text-align:right
        }

        /* Header Styles - WordPress Compatible */
        .site-header {
            position: fixed;
            left: 0;
            right: 0;
            background: rgba(1, 21, 63, 0.95);
            /*backdrop-filter: blur(10px);*/
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 110px;
        }
        
        /* Logo Styles */
        .site-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
        }
        
        .logo-image {
            width: 90px;
            height: 90px;
            background: url('../img/logo.png');
            background-repeat: no-repeat;
            background-size: 100%;

            }
        
        .logo-text {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* WordPress Menu Structure */
        .main-navigation {
            display: flex;
            align-items: center;
        }
        
        .menu-primary-menu-container {
            display: flex;
        }
        
        .menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .menu-item {
            position: relative;
            margin: 0 15px;
        }
        
        .menu-item a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 25px 0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* Dropdown arrow for parent items */
        .menu-item-has-children > a::after {
            content: '▼';
            font-size: 12px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .menu-item-has-children:hover > a::after {
            transform: rotate(180deg);
        }
        
        .menu-item a:hover,
        .menu-item.current-menu-item a,
        .menu-item:hover > a {
            color: #60a5fa;
        }
        
        .menu-item a::after {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #3b82f6);
            transition: width 0.3s ease;
        }
        
        .menu-item a:hover::after,
        .menu-item.current-menu-item a::after,
        .menu-item:hover > a::after {
            width: 100%;
        }
        
        .menu-item-has-children > a::after {
            display: none !important; /* Hide the underline for parent items */
        }
        
        /* Sub Menu Styles */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            min-width: 220px;
            z-index: 1000;
            padding: 8px 0;
            list-style: none;
        }
        
        .menu-item-has-children:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .sub-menu .menu-item {
            margin: 0;
            width: 100%;
        }
        
        .sub-menu .menu-item a {
            padding: 12px 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            border-radius: 8px;
            margin: 2px 8px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .sub-menu .menu-item a:hover {
            background: rgba(96, 165, 250, 0.1);
            color: #60a5fa;
            transform: translateX(5px);
        }
        
        .sub-menu .menu-item a::after {
            display: none; /* Remove underline for sub-menu items */
        }
        
        /* Third level sub-menu */
        .sub-menu .menu-item-has-children {
            position: relative;
        }
        
        .sub-menu .menu-item-has-children > a::after {
            content: '▶';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .sub-menu .sub-menu {
            top: 0;
            left: 100%;
            transform: translateX(10px);
        }
        
        .sub-menu .menu-item-has-children:hover .sub-menu {
            transform: translateX(0);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            width: 25px;
            height: 20px;
            justify-content: space-between;
        }
        
        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .mobile-menu-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .auth-btn {
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .login-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .login-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .register-btn {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        
        .register-btn:hover {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            background-image: url('../img/banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-section h1{
        	color:#fff;
        }
        
        .hero-container {
            width: 1200px;
          	max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-features {
        	max-width: 720px;
            list-style: none;
            margin: 40px 0;
        }
        
        .hero-features li {
            margin: 20px 0;
            position: relative;
            padding-left: 30px;
        }
        
        .hero-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #60a5fa;
            font-size: 20px;
            font-weight: bold;
        }
        
        .feature-title {
            color: #60a5fa;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .feature-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 16px;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        .cta-btn {
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .primary-btn {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            color: white;
            box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
        }
        
        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(96, 165, 250, 0.4);
        }
        
        .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        /* Brain Animation */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .brain-container {
            position: relative;
            width: 400px;
            height: 400px;
        }
        
        .brain-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.5));
            animation: brainPulse 3s ease-in-out infinite;
        }
        
        .brain-path {
            fill: none;
            stroke: #60a5fa;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            animation: brainDraw 4s ease-in-out infinite;
        }
        
        .neural-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.6;
        }
        
        .neural-dot {
            fill: #60a5fa;
            animation: neuralPulse 2s ease-in-out infinite;
        }
        
        .neural-connection {
            stroke: #3b82f6;
            stroke-width: 1;
            opacity: 0.4;
            animation: connectionFlow 3s linear infinite;
        }
        
        /* Background Effects */
        .bg-effects {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(96, 165, 250, 0.6);
            border-radius: 50%;
            animation: floatUp 10s linear infinite;
            box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
        }
        
        .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; width: 6px; height: 6px; }
        .floating-element:nth-child(2) { left: 20%; animation-delay: 1s; width: 10px; height: 10px; }
        .floating-element:nth-child(3) { left: 30%; animation-delay: 2s; width: 8px; height: 8px; }
        .floating-element:nth-child(4) { left: 40%; animation-delay: 3s; width: 12px; height: 12px; }
        .floating-element:nth-child(5) { left: 50%; animation-delay: 4s; width: 6px; height: 6px; }
        .floating-element:nth-child(6) { left: 60%; animation-delay: 5s; width: 9px; height: 9px; }
        .floating-element:nth-child(7) { left: 70%; animation-delay: 6s; width: 7px; height: 7px; }
        .floating-element:nth-child(8) { left: 80%; animation-delay: 7s; width: 11px; height: 11px; }
        .floating-element:nth-child(9) { left: 90%; animation-delay: 8s; width: 8px; height: 8px; }
        .floating-element:nth-child(10) { left: 15%; animation-delay: 9s; width: 10px; height: 10px; }
        .floating-element:nth-child(11) { left: 35%; animation-delay: 2.5s; width: 7px; height: 7px; }
        .floating-element:nth-child(12) { left: 55%; animation-delay: 5.5s; width: 9px; height: 9px; }
        .floating-element:nth-child(13) { left: 75%; animation-delay: 8.5s; width: 8px; height: 8px; }
        .floating-element:nth-child(14) { left: 85%; animation-delay: 1.5s; width: 6px; height: 6px; }
        .floating-element:nth-child(15) { left: 25%; animation-delay: 4.5s; width: 10px; height: 10px; }
        
        /* Animations */
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) translateX(0px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) translateX(20px) rotate(360deg);
                opacity: 0;
            }
        }

        .login_btn{
        	width: 100%;
        
        }

        .section h2, .section_dark h2{
        	position: relative;
        	margin-bottom: 40px!important;
        }
        .section_dark h2:after{
            content: "";
            bottom:-20px;
            left:0;
            position: absolute;
            height:10px;
            width: 100%;
            background: url('../img/title_line_2.png');
            background-repeat: no-repeat;
            background-position: center center;
        }
            .section h2:after{
            content: "";
            bottom:-20px;
            left:0;
            position: absolute;
            height:10px;
            width: 100%;
            background: url('../img/title_line_1.png');
            background-repeat: no-repeat;
            background-position: center center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

        	     .site-header {
            position: relative;
      
            background: rgba(1, 21, 63, 0.95);
            /*backdrop-filter: blur(10px);*/
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
.hero-section{
	padding-top:0;
	min-height:calc(100vh - 111px);
	background-position: 66% center;
}
 .hero-features{
 	padding-left:0;
 }

   .section_login{
        	font-size: 14px;
        }
        	.logo-image{
        		width:60px;
        		height:60px;
        	}
            .header-container {
                padding: 0 15px;
                position: relative;
            }
            
            .mobile-menu-toggle {
                display: block;
                order: 3;
            }
            
            .auth-buttons {
                order: 2;
                margin-right: 15px;
            }
            
            .main-navigation {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1000;
            }
            
            .main-navigation.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .menu-primary-menu-container {
                padding: 20px 0;
            }
            
            .menu {
                flex-direction: column;
                padding: 0 20px;
            }
            
            .menu-item {
                margin: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .menu-item:last-child {
                border-bottom: none;
            }
            
            .menu-item a {
                padding: 15px 0;
                font-size: 18px;
                display: block;
                text-align: left;
            }
            
            .menu-item a::after {
                display: none;
            }
            
            .menu-item-has-children > a::after {
                content: '▼';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                font-size: 14px;
                transition: transform 0.3s ease;
            }
            
            .menu-item-has-children.active > a::after {
                transform: translateY(-50%) rotate(180deg);
            }
            
            /* Mobile Sub Menu */
            .sub-menu {
                position: static;
                transform: none;
                background: rgba(0, 0, 0, 0.3);
                border: none;
                border-radius: 0;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                min-width: auto;
                padding: 0;
                margin-top: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .menu-item-has-children.active .sub-menu {
                max-height: 300px;
            }
            
            .sub-menu .menu-item a {
                padding: 12px 0 12px 30px;
                font-size: 16px;
                margin: 0;
                border-radius: 0;
            }
            
            .sub-menu .menu-item a:hover {
                background: transparent;
                transform: none;
                padding-left: 35px;
            }
            
            .sub-menu .menu-item-has-children > a::after {
                content: '▶';
                right: 10px;
                font-size: 12px;
            }
            
            .sub-menu .sub-menu {
                background: rgba(0, 0, 0, 0.2);
            }
            
            .sub-menu .sub-menu .menu-item a {
                padding-left: 50px;
            }
            
            .sub-menu .sub-menu .menu-item a:hover {
                padding-left: 55px;
            }
            
            .hero-container {
                text-align: center;
                padding: 0 15px;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
                margin-bottom: 25px;
            }
            
            .hero-features li {
                text-align: left;
                margin: 25px 0;
            }
            
            .feature-title {
                font-size: 16px;
            }
            
            .feature-desc {
                font-size: 14px;
            }
            
            .hero-actions {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .cta-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }