/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* ================= GLOBAL ================= */
a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  scroll-margin-top: 80px;
}

h2 {
  letter-spacing: 0.5px;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.top-bar a {
  color: #00c853;
  font-weight: 600;
}

/* ================= NAVBAR ================= */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: 700;
  color: #ff6f00;
  font-size: 22px;
}

nav a {
  margin-left: 25px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6f00;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/about.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff6f00, #ff8f00);
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.whatsapp {
  background: #00c853;
}

/* ================= TRUST ================= */
.trust {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.trust-box:hover {
  transform: translateY(-5px);
}

//* ================= ABOUT ================= */
.about {
  padding: 100px 0;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* FIXED */
}


/* TEXT SIDE */
.about-text {
  flex: 1.2;
  max-width: 100%;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

/* underline */
.about-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff6f00;
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

.about-highlight {
  font-weight: 600;
  color: #ff6f00;
  margin-bottom: 15px;
  font-size: 16px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: #555;
}

/* LIST */
.about-points {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s ease;
}

.about-points li:hover {
  transform: translateX(6px);
  color: #ff6f00;
}

/* BUTTON */
.about-btn {
  padding: 12px 26px;
  background: linear-gradient(45deg, #ff6f00, #ff8f00);
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.05);
}

/* IMAGE SIDE */
.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: 0.4s ease;
}

/* hover effect */
.about-img:hover img {
  transform: scale(1.06);
}

/* OPTIONAL: subtle background effect */
.about-img::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #ff6f00;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.08;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about {
    gap: 50px;
  }

  .about-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2::after {
    margin: 10px auto 0;
  }

  .about-points li {
    justify-content: center;
  }

  .about-img::before {
    display: none;
  }
}

/* ================= PRODUCTS ================= */
.products {
  padding: 90px 0;
  background: #fafafa;
}

/* MAIN HEADING */
.products h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* CATEGORY HEADING */
.products h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 60px 0 25px;
  position: relative;
}

/* underline */
.products h3::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff6f00;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* top highlight bar */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #ff6f00;
  opacity: 0;
  transition: 0.3s;
}

.card:hover::before {
  opacity: 1;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

/* image zoom */
.card:hover img {
  transform: scale(1.08);
}

/* TITLE */
.card h4 {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* TEXT */
.card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

/* BUTTON */
.call-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff6f00, #ff8f00);
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* button hover */
.call-btn:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .products h2 {
    font-size: 28px;
  }

  .products h3 {
    font-size: 22px;
  }
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 0;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.service {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.service:hover {
  background: #ff6f00;
  color: #fff;
}

/* ================= CONTACT ================= */
.contact {
  padding: 110px 0;
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: #fff;
}

/* HEADING */
.contact h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

/* ================= CONTACT BOX ================= */
.contact-info {
  background: rgba(255,255,255,0.07);
  padding: 35px 30px;
  border-radius: 14px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* EACH ROW */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/* ICON CIRCLE */
.contact-info span {
  width: 40px;
  height: 40px;
  background: rgba(255,111,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* REMOVE LAST MARGIN */
.contact-info p:last-child {
  margin-bottom: 0;
}

/* HOVER */
.contact-info p:hover {
  color: #ff6f00;
  transform: translateX(6px);
  transition: 0.3s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .contact-info {
    max-width: 100%;
  }
}
/* ================= FORM ================= */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  color: #333;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ROW (IMPORTANT FIX) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 0 2px rgba(255,111,0,0.1);
}

/* TEXTAREA */
.contact-form textarea {
  height: 110px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(45deg, #ff6f00, #ff8f00);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* BUTTON HOVER */
.contact-form button:hover {
  transform: scale(1.03);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }

  nav {
    display: none;
  }
}

@media(max-width:576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}