   :root {
      --primary: #286db2;
      --gradient: linear-gradient(135deg, #1a1a40, #12122e);
      --text: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text);
      background: #000;
    }

    header {
      position: relative;
      z-index: 10;
      background: transparent;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    header .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
	max-height:60px;
    }
 header .logo img {
max-height:80px;
}

    nav {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
    }

    .btn {
      background: var(--primary);
      color: #000;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #e68a00;
    }

    .hero {
      background: var(--gradient);
      padding: 16rem 2rem 13rem;
      text-align: center;
    }
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust opacity as needed */
  z-index: -1;
}

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero h2 {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    .hero .buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .img-block {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      padding: 3rem 1rem;
      background: #111;
    }

    .img-block img {
      width: 100%;
      max-width: 300px;
      border-radius: 8px;
    }

    .text-block {
      padding: 3rem 2rem;
      background: #1b1b2f;
      text-align: center;
    }

    .text-block p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1rem;
      line-height: 1.6;
    }

    .text-block .btn {
      margin-top: 1rem;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      header {
        flex-direction: column;
        gap: 1rem;
      }
    }



.coupon-container {
  background: #f5f9ff;
  border: 2px dashed #007bff;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.coupon-label {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.coupon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #007bff;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

#coupon-code {
  font-weight: bold;
  color: #007bff;
  font-size: 1.2em;
  margin-right: 10px;
}

.copy-btn {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background-color: #0056b3;
}

.coupon-info {
  color: #666;
  font-size: 0.95em;
}