* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #333;
}

/* GLOBAL LINK FIX */
a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #1C1C1C;
  height: 100px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* LOGO */
.logo {
  position: relative;
  height: 100%;
}

.logo img {
  height: 224px;
  position: absolute;
  top: -40px;
  left: 0;
}

/* NAV */
.nav a {
  color: #fff;
  margin-left: 20px;
  font-weight: bold;
}

/* HERO */
/* HERO */
.hero {
  position: relative;
  min-height: 75vh;
  padding: 60px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;

  /* Background image */
  background: linear-gradient(rgba(11,44,77,0.75), rgba(11,44,77,0.75)),
              url("./images/hero-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #ff9800;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ffa726;
  transform: translateY(-3px);
}


/* SERVICES */
/* SERVICES ROW FIX */
.services {
  padding: 60px 5%;
  background: #f9f9f9;

  display: flex;              /* makes items in a row */
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}

/* SERVICE BOX STYLE */
.service-box {
  background: #fff;
  flex: 1;                    /* equal width */
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-box img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-box h3 {
  color: #0b2c4d;
  font-size: 20px;
}

/* SHOP STYLE */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.product-image {
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 85%;
  max-height: 85%;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  margin-bottom: 6px;
}

.product-info p {
  font-size: 14px;
  color: #666;
}

.product-info a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #0b2c4d;
  color: #fff;
  border-radius: 4px;
}

/* PAGE LINKS */
.page-links {
  background: #0b2c4d;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-links a {
  color: #fff;
  font-size: 18px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #0b2c4d;
  margin: 10px 0;
}

.product-card button {
  padding: 10px 18px;
  background: #ff9800;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.product-card button:hover {
  background: #ffa726;
}
/* PRODUCT IMAGE BOX */
.product-img {
  width: 100%;
  height: 160px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info p {
  margin: 6px 0;
}

/* ================= COMPANY SELECTION (SHOP STYLE) ================= */

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.company-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.company-card:hover {
  transform: translateY(-6px);
}

.company-image {
  height: 160px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-image img {
  max-width: 80%;
  max-height: 80%;
}

.company-info {
  padding: 15px;
}

.company-info h3 {
  color: #0b2c4d;
  font-size: 18px;
}
.stock {
  font-size: 13px;
  color: green;
  font-weight: bold;
  margin-bottom: 5px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .logo img {
    height: 140px;
    top: -25px;
  }
}
