body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #2563eb;
}

.logo img {
    height: 40px;
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.btn {
    background: #22c55e;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 20px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #eef2ff, #fff);
}

.hero h1 {
    font-size: 40px;
    color: #2563eb;
}

.hero p {
    color: #555;
}

/* SECTION */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CONTACT */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}
/* CLIENT SECTION */
.clients-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.clients-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
}

/* GRID */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* BOX */
.client-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    font-weight: bold;
    color: #333;
    transition: 0.3s;
    cursor: pointer;
}

/* HOVER EFFECT */
.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #eef2ff;
}
.client-box img {
    height: 40px;
    object-fit: contain;
}

/* PRODUCTS */
.products-section {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 10px;
}

.price {
    color: #16a34a;
    font-weight: bold;
    margin-bottom: 10px;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: #555;
  font-size: 14px;
}