    @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
    
    :root{
      --bg-primary:#0a0e1a;
      --bg-secondary:#0f172a;
      --bg-card:rgba(15,23,42,0.95);
      --primary:#2d294e;
      --primary-hover:#00b8e6;
      --accent:#2b6fb7;
      --accent-light:#818cf8;
      --text-primary:#ffffff;
      --text-secondary:#cbd5e1;
      --text-muted:#64748b;
      --border:rgba(255,255,255,0.1);
      --border-focus:rgba(0,212,255,0.4);
      --error:#ef4444;
      --success:#10b981;
      --glass:rgba(15,23,42,0.8);
    }
    
    * { 
      box-sizing: border-box; 
      font-family: "Raleway", sans-serif !important;
    }
    *,
    *::before,
    *::after {
      font-family: 'Raleway', sans-serif !important;
    }
    
    html, body { 
      height: 100%; 
      margin: 0; 
      padding: 0; 
      font-family: "Raleway", sans-serif !important;
    }
    
    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.6;
      font-family: "Raleway", sans-serif !important;
    }
    
    /* Technology Background */
    .bg-container {
      position: fixed;
      inset: 0;
      z-index: 0;
      background: 
        radial-gradient(circle at 25% 25%, rgba(0,212,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(79,70,229,0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, #0c1426 50%, var(--bg-secondary) 100%);
    }
    
    .bg-image {
      position: absolute;
      inset: 0;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      background-size: 100px 100px;
      opacity: 0.3;
      animation: gridMove 20s linear infinite;
    }
    
    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(40px, 40px); }
    }
    
    /* Animated Network Nodes */
    .network-animation {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    
    .node {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--primary);
      animation: pulse 2s ease-in-out infinite;
    }
    
    .node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .node:nth-child(2) { top: 30%; left: 25%; animation-delay: 0.5s; }
    .node:nth-child(3) { top: 15%; left: 40%; animation-delay: 1s; }
    .node:nth-child(4) { top: 35%; left: 55%; animation-delay: 1.5s; }
    .node:nth-child(5) { top: 25%; left: 70%; animation-delay: 2s; }
    .node:nth-child(6) { top: 40%; left: 85%; animation-delay: 2.5s; }
    .node:nth-child(7) { top: 60%; left: 15%; animation-delay: 3s; }
    .node:nth-child(8) { top: 70%; left: 30%; animation-delay: 3.5s; }
    .node:nth-child(9) { top: 65%; left: 45%; animation-delay: 4s; }
    .node:nth-child(10) { top: 75%; left: 60%; animation-delay: 4.5s; }
    .node:nth-child(11) { top: 80%; left: 75%; animation-delay: 5s; }
    .node:nth-child(12) { top: 85%; left: 90%; animation-delay: 5.5s; }
    
    @keyframes pulse {
      0%, 100% { 
        transform: scale(1); 
        opacity: 0.8; 
        box-shadow: 0 0 10px var(--primary);
      }
      50% { 
        transform: scale(1.5); 
        opacity: 1; 
        box-shadow: 0 0 20px var(--primary), 0 0 30px rgba(0,212,255,0.3);
      }
    }
    
    /* Connection Lines */
    .connection {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      opacity: 0.6;
      animation: dataFlow 3s linear infinite;
    }
    
    .connection:nth-child(13) { top: 25%; left: 10%; width: 200px; transform: rotate(15deg); }
    .connection:nth-child(14) { top: 45%; left: 20%; width: 150px; transform: rotate(-10deg); }
    .connection:nth-child(15) { top: 35%; left: 50%; width: 180px; transform: rotate(25deg); }
    .connection:nth-child(16) { top: 65%; left: 30%; width: 160px; transform: rotate(-15deg); }
    .connection:nth-child(17) { top: 75%; left: 60%; width: 140px; transform: rotate(20deg); }
    
    @keyframes dataFlow {
      0% { 
        background: linear-gradient(90deg, transparent, transparent, transparent);
      }
      50% { 
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
      }
      100% { 
        background: linear-gradient(90deg, transparent, transparent, transparent);
      }
    }
    
    /* Floating Particles */
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--accent-light);
      border-radius: 50%;
      animation: float 15s linear infinite;
      opacity: 0.7;
    }
    
    .particle:nth-child(18) { left: 5%; animation-delay: 0s; }
    .particle:nth-child(19) { left: 15%; animation-delay: 2s; }
    .particle:nth-child(20) { left: 25%; animation-delay: 4s; }
    .particle:nth-child(21) { left: 35%; animation-delay: 6s; }
    .particle:nth-child(22) { left: 45%; animation-delay: 8s; }
    .particle:nth-child(23) { left: 55%; animation-delay: 10s; }
    .particle:nth-child(24) { left: 65%; animation-delay: 12s; }
    .particle:nth-child(25) { left: 75%; animation-delay: 14s; }
    
    @keyframes float {
      0% { transform: translateY(100vh) scale(0); opacity: 0; }
      10% { opacity: 0.7; transform: scale(1); }
      90% { opacity: 0.7; }
      100% { transform: translateY(-10vh) scale(0); opacity: 0; }
    }
    
    /* Main Container */ 
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
      padding: 80px clamp(24px, 6vw, 100px);
    }
    
    /* Content Section */
    .content {
      max-width: 750px;
    }
    
    .content-header {
      position: relative;
      margin-bottom: 2rem;
    }
    
    .tech-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(79,70,229,0.1));
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }
    
    h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 24px 0;
      background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .lead {
      font-size: clamp(1.1rem, 1.4vw, 1.25rem);
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 90%;
    }
    
    .features {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    
    .feature-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }
    
    .feature-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }
    
    /* Form Card */
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      backdrop-filter: blur(20px);
      box-shadow: 
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
    }
    
    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      opacity: 0.6;
    }
    
    .form-header {
      text-align: center;
      margin-bottom: 32px;
    }
    
    .form-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0 0 8px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    
    .form-subtitle {
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    
    /* Form Styles */
    .form-row {
      display: grid;
      gap: 20px;
      margin-bottom: 24px;
    }
    
    .form-row.two-cols {
      grid-template-columns: 1fr 1fr;
    }
    
    .form-group {
      position: relative;
    }
    
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 8px;
      letter-spacing: 0.025em;
    }
    
    .input-wrapper {
      position: relative;
    }
    
    .input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      color: var(--text-muted);
      transition: color 0.3s ease;
    }
    
    .form-input {
      width: 100%;
      padding: 16px 16px 16px 48px;
      background: rgba(15,23,42,0.6);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text-primary);
      font-size: 16px;
      transition: all 0.3s ease;
      outline: none;
    }
    
    .form-input::placeholder {
      color: var(--text-muted);
    }
    
    .form-input:focus {
      border-color: var(--border-focus);
      background: rgba(15,23,42,0.8);
      box-shadow: 
        0 0 0 4px rgba(0,212,255,0.1),
        0 8px 25px rgba(0,0,0,0.15);
    }
    
    .form-input:focus + .input-icon {
      color: var(--primary);
    }
    
    .error-message {
      display: none;
      color: var(--error);
      font-size: 13px;
      margin-top: 6px;
      font-weight: 500;
    }
    
    .submit-btn {
      width: 100%;
      padding: 18px 24px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border: none;
      border-radius: 12px;
      color: white;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      /*text-transform: uppercase;*/
      letter-spacing: 0.5px;
    }
    
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 
        0 10px 30px rgba(0,212,255,0.3),
        0 0 40px rgba(79,70,229,0.2);
    }
    
    .submit-btn:active {
      transform: translateY(0);
    }
    
    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .submit-btn:hover::before {
      left: 100%;
    }
    
    .form-note {
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 16px;
      line-height: 1.5;
    }
    
    /* Thank You Popup */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      animation: fadeIn 0.3s ease;
    }
    
    .popup-overlay.active {
      display: flex;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .popup-content {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      max-width: 500px;
      width: 90%;
      position: relative;
      backdrop-filter: blur(20px);
      box-shadow: 0 25px 80px rgba(0,0,0,0.5);
      animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
      from { 
        transform: translateY(30px) scale(0.95); 
        opacity: 0; 
      }
      to { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
      }
    }
    
    .popup-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, var(--success), #059669);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 40px;
      box-shadow: 0 10px 30px rgba(16,185,129,0.3);
    }
    
    .popup-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0 0 16px 0;
    }
    
    .popup-message {
      color: var(--text-secondary);
      margin-bottom: 32px;
      line-height: 1.6;
    }
    
    .popup-close {
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text-secondary);
      padding: 12px 24px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .popup-close:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
      }
      
      .form-card {
        order: 2;
      }
      
      .content {
        order: 1;
        text-align: center;
      }
      
      .form-row.two-cols {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 60px 20px;
      }
      
      .form-card {
        padding: 30px 24px;
      }
      
      h1 {
        font-size: 2.5rem;
      }
    }
    .sub-menu{
        z-index: 9999 !important;
    }