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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 16px;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: yellow;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 25%;
  background-color: yellow;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.icons {
  display: flex;
  gap: 20px;
}

.icon svg {
  fill: white;
  transition: transform 0.3s;
}

.icon:hover svg {
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  display: block;
  height: auto;
}

.hero-text {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  text-align: right;
  color: white;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.buy-button {
  padding: 10px 25px;
  font-size: 16px;
  background-color: yellow;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(255, 255, 0, 0.4);
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #ffde00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .hero-text {
    right: 5%;
    text-align: right;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .buy-button {
    font-size: 14px;
    padding: 8px 20px;
  }

  .feature-strip {
    flex-direction: column;
    gap: 15px;
  }
}
/* HEADER BASED STYLES (you already have this) */

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image {
  width: 100%;
  display: block;
  height: auto;
}

.hero-text {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
  color: #000; /* black text */
  max-width: 40%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.buy-button {
  background-color: #000;
  color: #fff;
  padding: 12px 26px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  display: inline-block;
  transition: background 0.3s ease;
}

.buy-button:hover {
  background-color: #222;
}
/* FEATURE STRIP */
.feature-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 20px;
  background-color: #f9f9f9;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  text-align: center;
  min-width: 120px;
}

.circle-icon {
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.feature-item p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

