
    :root {
      --primary: #0f2a44;
      --accent: #0136FD;
      --text: #2b2b2b;
      --light: #f5f7f9;
      --logoblue: #0235FF;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background-color: #ffffff;
    }

    section {
      padding: 80px 10%;
    }

    h1, h2 {
      color: var(--primary);
      margin-bottom: 20px;
      font-weight: 600;
    }

    p {
      max-width: 700px;
    }

    /* Header */
    header {
      padding: 20px 10%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #e5e5e5;
    }

    .logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: var(--primary);
      font-size: 1.2rem;
    }

    .logo-box {
      width: 36px;
      height: 36px;
      background-color: var(--accent);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 0.9rem;
      border-radius: 4px;
    }

    /* Hero */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--primary), #0235FF);
      color: white;
      min-height: 25vh;
      display: flex;
      align-items: center;
    }

    .hero h1 {
      font-size: 3rem;
      color: white;
    }

    .hero p {
      font-size: 1.1rem;
      margin-top: 20px;
      max-width: 600px;
    }

.hero-nav {
  position: absolute;
  top: 30px;
  left: 10%;
  display: flex;
  gap: 30px;
}

.hero-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-content {
  max-width: 700px;
}


    /* Sections */
    .light {
      background-color: var(--light);
    }

    .accent-line {
      width: 60px;
      height: 3px;
      background-color: var(--accent);
      margin-bottom: 30px;
    }

    /* Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 40px;
    }

    .card {
      background: white;
      padding: 30px;
      border-radius: 6px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .icon {
      width: 40px;
      height: 40px;
      margin-bottom: 15px;
      fill: var(--accent);
    }

    /* Header Actions */
	.header-actions {
	  display: flex;
	  gap: 12px;
	}
	
	    /* Demo Request */
	.demo-btn {
	  text-decoration: none;
	  background-color: var(--accent);
	  color: white;
	  padding: 8px 18px;
	  border-radius: 20px;
	  font-size: 0.9rem;
	}
	
	.demo-btn:hover {
	  opacity: 0.9;
	}
	
	    /* Sign In */
	.signin-btn {
	  background: transparent;
	  border: 1px solid var(--accent);
	  color: var(--accent);
	  padding: 8px 18px;
	  border-radius: 20px;
	  font-size: 0.9rem;
	  cursor: pointer;
	}
	
	.signin-btn:hover {
	  background-color: var(--accent);
	  color: white;
	}
	
	.modal {
	  display: none;
	  position: fixed;
	  inset: 0;
	  background: rgba(0,0,0,0.5);
	  justify-content: center;
	  align-items: center;
	  z-index: 1000;
	}
	
	.modal-content {
	  background: white;
	  padding: 40px;
	  border-radius: 8px;
	  width: 90%;
	  max-width: 400px;
	  position: relative;
	}
	
	.modal-content h2 {
	  margin-bottom: 20px;
	}
	
	.close {
	  position: absolute;
	  top: 12px;
	  right: 16px;
	  font-size: 1.5rem;
	  cursor: pointer;
	}


    /* Contact */
    form {
      max-width: 600px;
      margin-top: 30px;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    button {
      background-color: var(--accent);
      color: white;
      border: none;
      padding: 12px 30px;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 4px;
    }

    button:hover {
      opacity: 0.9;
    }

    /* Footer */
    footer {
      background-color: var(--logoblue);
      color: white;
      text-align: center;
      padding: 30px 10%;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
    }
