* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Inter, Open Sans;
    background: #f7f7f7;
    color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.logo span {
  color: red;
}

.menu {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.menu a, .dropdown {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.primary {
  background: black;
  color: white;
}

.outline {
  border: 1px solid #ccc;
  background: transparent;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding:130px 0;
}

.hero-left {
    flex: 1;
    max-width: 550px;
    margin-left: 60px;
    font-family: Inter, Open Sans;
}

.subtitle {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: Inter, Open Sans;
}

.desc {
    color: #555;
    margin-bottom: 20px;
    font-family: poppins;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-right img {
  width: 100%;
  /*border-radius: 10px;*/
}

/* PRODUCTS */
.products {
  padding: 60px 0;
}

    .products h2 {
        text-align: center;
        margin-bottom: 40px;
        font-family: Inter, Open Sans;
    }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  /*padding: 15px;*/
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  /*border-radius: 8px;*/
}

.card-inner {
    padding: 10px;
}

.card h3 {
  margin: 10px 0;
}

.card ul {
  font-size: 17px;
  color: #555;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 4px;
}

/* WHY SECTION */
.why {
  background: white;
  padding: 50px 0;
  text-align: center;
}

.why-grid {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }
}

ul {
    margin-left:15px;
}