
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      /* background: linear-gradient(to right,#D4A017 0%,#B8860B 30%, #000000 65%); */
      /* background-color: #98FB98; */
      /* background: linear-gradient(to right,#FFD700 ,#D4A017); */
      /* background: linear-gradient(
        45deg, 
        #bf953f, 
        #fcf6ba, 
        #b38728, 
        #fbf5b7, 
        #aa771c
      ); */
      background: linear-gradient(
        45deg, 
        #734f1b, 
        #a67c00, 
        #d4af37, 
        #8c6910, 
        #734f1b
      );
      color: #000;
      overflow-x: hidden;
    }
    

    
    .background {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
    }

    .particles {
      position: fixed;
      inset: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="10" cy="10" r="1.2" fill="rgba(100,200,255,0.15)"/></svg>') repeat;
      opacity: 0.07;
      animation: float 120s linear infinite;
      z-index: -1;
    }

    @keyframes float {
      from { transform: translateY(0) }
      to   { transform: translateY(-100px) }
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.4rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: black;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(231, 216, 216, 0.04);
      transition: all 0.4s ease;
    }

    header.scrolled {
      padding: 1rem 5%;
      background: rgba(237, 237, 240, 0.92);
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(90deg, #d4af37, #a67c00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    nav a {
      color: #d4af37;
      text-decoration: none;
      margin-left: 2.2rem;
      font-weight: 500;
      font-size: 0.97rem;
      transition: color 0.3s ease;
    }

    :hover {
      color: #f9fcf9;
    }

    .btn {
      padding: 0.65rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.35s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: #734f1b;
      color: white;
      border: solid 1px rgb(20, 19, 19);
      box-shadow: 0 8px 25px rgb(54, 54, 54);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(235, 237, 240, 0.35);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid #64748b;
      color: #cbd5e1;
    }

    .btn-outline:hover {
      background: black;
      border-color: #121213;
    }

   
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 5%;
      position: relative;
    }

    .hero-content {
      max-width: 1100px;
    }

    .hero h1 {
      font-size: clamp(3.2rem, 8vw, 5.8rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: black;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.05;
    }

    .hero p {
      font-size: 1.35rem;
      color: #fffefe;
      max-width: 680px;
      margin: 0 auto 2.5rem;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    
    .features {
      padding: 12rem 5% 8rem;
      /* background: linear-gradient(to bottom,#D4A017,#B8860B); */
      background: #00000019;
      color: black
;
    }

    .section-title {
      text-align: center;
      font-size: 3.2rem;
      font-weight: 700;
      margin-bottom: 4rem;
      background: black;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: #000;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.2rem;
      max-width: 1300px;
      margin: 0 auto;
    }

    .card {
      background: rgba(43, 46, 43, 0.5);
      border: 1px solid rgba(12, 236, 50, 0.5);
      border-radius: 16px;
      padding: 2.4rem 2rem;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }

    .card:hover {
      transform: translateY(-12px);
      border-color: rgb(117, 119, 117);
      box-shadow: 0 25px 50px -12px rgba(49, 49, 49, 0.973);
    }

    .card h3 {
      font-size: 1.55rem;
      margin-bottom: 1rem;
      color: white;
    }

    .card p {
      color: white;
      font-size: 1.03rem;
    }

    footer {
      padding: 5rem 5% 3rem;
      text-align: center;
      border-top: 1px solid rgb(106, 109, 106);
      color: black;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      header { padding: 1.2rem 6%; }
      nav a { margin-left: 1.4rem; font-size: 0.92rem; }
      .hero h1 { font-size: 3.8rem; }
      .hero p  { font-size: 1.15rem; }
    }