/* ===== GENERAL ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f3f4f6;
  color: #1f2937;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

section {
  padding: 60px 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #111827;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  color: white;
  font-size: 22px;
}

.navbar nav a {
  color: #d1d5db;
  margin: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #facc15;
}

.call-btn {
  background: #ef4444;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
              url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  color: #d1d5db;
}

.btn {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 12px 30px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn:hover {
  background: #dc2626;
}

/* ===== ABOUT ===== */
.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* ===== PRODUCTS GRID ===== */
.product-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: #f9fafb;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0;
}

/* CALL BUTTON LIKE YOUR IMAGE */
.call-btn-card {
  display: inline-block;
  background: #374151;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
  width: 80%;
}

.call-btn-card:hover {
  background: #111827;
}

/* ===== BRANDS ===== */

.brand-grid {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.brand-grid img {
  height: 100px;          /* increased size */
  width: auto;
  object-fit: contain;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.brand-grid img:hover {
  transform: scale(1.1);
}

/* ===== WHY CHOOSE US ===== */
.features {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.features div {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ef4444;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* ===== CONTACT ===== */
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #f3f4f6;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* FORM */
.contact-form form {
  background: #2c3e50;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #facc15;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
}

.contact-form button {
  background: #facc15;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
}

/* RIGHT CARDS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card a {
  text-decoration: none;
  color: #2563eb;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 20px;
}

/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  /* NAVBAR FIX */
  .nav-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar nav a {
    margin: 5px 10px;
    font-size: 14px;
  }

  .call-btn {
    margin-top: 5px;
  }

  /* HERO FIX */
  .hero {
    padding: 80px 15px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  /* ABOUT FIX */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    margin-top: 15px;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* BRAND LOGOS */
  .brand-grid img {
    height: 70px;
  }

  /* FEATURES */
  .features {
    grid-template-columns: 1fr;
  }

}