body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: olive;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}

.navbar img.logo {
  height: 60px;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.banner {
  background-color: #eee;
  text-align: center;
  padding: 50px 0;
  font-size: 2em;
}

.catalogue-container {
  display: flex;
}

.sidebar {
  width: 260px;
  background-color: #f9f9f9;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: 2px 0 8px rgba(0,0,0,0.05);
  border-right: 1px solid #ddd;
}

.sidebar h2 {
  font-size: 18px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid olive;
  padding-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar button {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 15px;
  background: white;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sidebar button:hover {
  background: olive;
  color: white;
  border-color: olive;
  transform: translateX(5px);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}


.image-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.image-grid img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Popup Modal */
.popup-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-modal img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid white;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.catalogue-banner {
  width: 100%;
  height: 350px;* Match sameheight as About Us */
  overflow: hidden;
}

.catalogue-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(60, 60, 10, 0.6); /* your olive background */
  padding: 0 50px; /* horizontal padding only */
  font-family: Poppins, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* fixed height to prevent expanding */
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo Image */
.logo-image {
  max-height: 120px; /* control logo image height */
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 50px; /* Push menu slightly left */
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px; /* Reduce from 18px to 16px (or 15px if needed) */
  padding: 8px 10px; /* Slightly reduce padding for tighter spacing */
}


/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  min-width: 220px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  display: block;
}




/* Category Heading Styling */
.category-heading {
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: #333;
  margin: 30px 0 20px 0;
  border-left: 5px solid olive;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 2-Column Image Grid */
.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-left: 30px;      /* Add space between sidebar and images */
  padding: 20px 0;
}

.image-row img {
  width: 48%;           /* 2 images per row */
  height: auto;           /* Full natural shape */
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: none;       /* No white background */
  object-fit: cover;      /* Optional, for uniform image box */
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;             /* Ensure no padding around images */
  margin: 0;              /* No margin inside images */
}

.image-row img:hover {
  transform: scale(1.02);
}



.default-content {
  text-align: center;
  padding: 40px 20px;
}

.default-content h2 {
  font-size: 24px;
  color: #444;
  margin-bottom: 10px;
}

.default-content p {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.featured-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-item {
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.featured-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.featured-item h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.featured-item:hover {
  transform: scale(1.05);
}

