/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}



/* ===== Gallery ===== */
.gallery-container {
  width: 95%;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  background: #fff;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.gallery-slide img:hover {
  transform: scale(1.05);
}

/* Nav Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
  text-align: center;
  padding: 15px;
  background: #fff;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover {
  background-color: #333;
}

/* Common Section Styling */
.home-products, 
.restaurant-products {
  padding: 40px 20px;
  text-align: center;
}

.home-products h2,
.restaurant-products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 20px;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet */
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}

/* Office Products Section */
.office-products {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;  /* हल्का ग्रे बैकग्राउंड, offices look ke liye */
}

.office-products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

/* Grid Layout */
.office-products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 20px;
}

@media (max-width: 900px) {
  .office-products .product-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet view */
  }
}

@media (max-width: 600px) {
  .office-products .product-grid {
    grid-template-columns: 1fr; /* Mobile view */
  }
}

/* Product Card Styling */
.office-products .product-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.office-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image Styling */
.office-products .product-card img {
  width: 100%;
  height: 200px;       /* Fixed height for uniform look */
  object-fit: cover;   /* Crop neatly */
}

/* Text Styling */
.office-products .product-card h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
  color: #0077b6;   /* Office ke liye professional blue shade */
}

.office-products .product-card p {
  font-size: 0.95rem;
  padding: 0 10px 15px;
  color: #555;
}


/* ===== Footer ===== */
footer {
  background: black;
  color: white;
  font-family: "Poppins", sans-serif;
  padding-top: 40px;
}

.footer__container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer__logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #93c5fd;
  text-decoration: none;
}

.footer__logo span {
  color: white;
}

.section__description {
  margin: 15px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}

.footer__col h3,
.footer__col h4 {
  color: #93c5fd;
  margin-bottom: 15px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}

.footer__links li a {
  text-decoration: none;
  color: #f0f4ff;
  transition: 0.3s;
}

.footer__links li a:hover {
  color: #93c5fd;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.footer__socials li a {
  font-size: 20px;
  color: #f0f4ff;
  transition: 0.3s;
}

.footer__socials li a:hover {
  color: #93c5fd;
}

.footer__bar {
  text-align: center;
  padding: 20px;
  background: #1e40af;
  color: #dbeafe;
  font-size: 0.9rem;
  border-top: 1px solid #2563eb;
}