/* Font and Reset */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 4rem 0;
  text-align: center;
}

h1, h2, h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  max-width: 700px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px; /* Increased from 70px */
  padding: 0 20px;
  background-color: #000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: red;
  font-size: 1.8rem;
}

.logo img {
  height: 70px; /* Increased from 45px */
  width: auto;
  display: block;
  margin: 0;
}

.brand-name {
  color: red;
  font-size: 26px; /* Increased from 22px */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

nav a:hover {
  color: red;
}

/* Responsive Logo */
@media (max-width: 600px) {
  .header     { height: 75px; }
  .logo img   { height: 55px; }
  .brand-name { font-size: 22px; }
}

/* Hero */
.hero {
  background: linear-gradient(to right, #a00000, #ff0000);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
}

/* Buttons */
.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.primary-btn {
  background: #000;
  color: #fff;
}

.primary-btn:hover {
  background: #ff0000;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Product Cards */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
  color: #222;
  text-decoration: none;
}

.card:hover {
  background-color: #ffeaea;
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  height: 180px;
  object-fit: cover;
}

/* Why Choose Us */
.dark-bg {
  background: #111;
  color: #fff;
}

.dark-bg ul {
  list-style: none;
  padding: 0;
}

.dark-bg li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Sub-product cards */
.sub-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sub-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.sub-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 250px;
}

.sub-card h3 {
  margin-bottom: 0.5rem;
}

.price {
  margin-top: 1rem;
  font-weight: bold;
  color: #d90429;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Scroll gallery */
.scroll-gallery {
  overflow: hidden;
  background: #eee;
  padding: 20px 0;
}

.scroll-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.scroll-track img {
  height: 120px;
  margin-right: 12px;
  border-radius: 6px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Popup box */
.popup-box .btn {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 5px;
}

.popup-box a:hover {
  cursor: pointer;
}

/* Blog */
.blog-content h2 {
  margin-top: 40px;
  font-size: 24px;
  color: #333;
}

.blog-content p, .blog-content ul, .blog-content ol {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 20px;
}

.blog-card h3 {
  font-size: 20px;
  color: #c00;
  margin: 10px 0;
}

.blog-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.blog-card span {
  display: inline-block;
  margin-top: 12px;
  color: red;
  font-weight: 600;
}

.blog-image {
  display: block;
  max-width: 600px;
  width: 90%;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
