:root {
  --primary-color: #a4773a;
  --secondary-color: #ba9155;
  --dark-bg: #232323;
  --sidebar-bg: #181818;
  --sidebar-width: 230px;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: "Poppins", sans-serif; background: #f8f9fa;
  color: #2d2d2d;
}
.sidebar {
  background: var(--sidebar-bg); color: #fff;
  width: var(--sidebar-width); position: fixed; top: 0; bottom: 0; left: 0;
  z-index: 1050; padding-top: 24px; transition: left .3s;
  display: flex; flex-direction: column; align-items: center;
}
.sidebar .logo {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 20px;
}
.sidebar .logo img {
  width: 90px; height: 90px; border-radius: 50%; margin-bottom: 10px; background: #fff;
}
.sidebar h1 {
  font-size: 22px; font-weight: bold; color: var(--secondary-color); margin: 0;
  letter-spacing: 1px;
}
.sidebar-nav { padding: 0; width: 100%; }
.sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
.sidebar-nav a {
  display: block; color: #fff; padding: 10px 26px;
  text-decoration: none; font-size: 15px; border-left: 4px solid transparent;
  transition: 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: #23272b; color: var(--primary-color); border-left-color: var(--primary-color);
}
.sidebar .more-products {
  display: block; margin: 32px auto 0 auto; padding: 8px 20px;
  background: linear-gradient(90deg, #b98d42, #a4773a);
  color: #fff; border: none; border-radius: 6px; font-size: 16px;
  text-align: center; text-decoration: none; transition: 0.2s;
  font-weight: bold;
  box-shadow: 0 2px 6px #0002;
}
.sidebar .more-products:hover { background: var(--primary-color); }
.sidebar .close-btn {
  display: none; position: absolute; right: 10px; top: 10px; font-size: 22px; color: #fff; background: none; border: none;
}
.main-contentL {
  margin-left: var(--sidebar-width);
  transition: margin-left .3s;
  min-height: 100vh;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}
.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: #343a40;
  color: #fff;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.top-bar .container {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding-left: 24px;
}
.menu-links {
  display: flex; gap: 24px; list-style: none; padding: 0; margin: 0;
}
.menu-links a {
  color: #fff; text-decoration: none; font-size: 15px; letter-spacing: 1px;
}
.menu-links a:hover { color: var(--secondary-color); }
.social-icons { margin-left: auto; display: flex; gap: 14px; }
.social-icons a { color: #fff; font-size: 18px; }
.social-icons a:hover { color: var(--secondary-color); }
.mobile-toggle { display: none; }
.main-content {
  width: 100%;
  padding: 40px 2vw 40px 2vw;
  margin: 0 auto;
  max-width: 1300px;
}
 .carousel-inner img {
      width: 100%;
      height: 420px;      /* or your preferred height */
      /*object-fit: contain;*/
      background: #111;   /* to fill the background with dark if image is not filling the area */
    }
.carousel { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px #0002; }
.content-section {
  background: #fff; border-radius: 12px; box-shadow: 0 2px 16px #0001;
  padding: 36px 24px; margin-top: 34px;
}
.content-section .quote-text {
  text-align: center; color: var(--primary-color); font-size: 20px; font-style: italic; margin: 18px 0;
}
.content-section .highlight-text { color: var(--primary-color); font-weight: 600; }
.content-section p { font-size: 16px; line-height: 1.7; }
.content-section .signed { text-align: right; color: var(--primary-color); font-weight: 600; margin-top: 30px; }
.footer {
  background: #181818; color: #ddd; padding: 36px 0 20px; text-align: center; margin-top: 36px;
}
.footer .footer-social { margin-bottom: 14px; }
.footer .footer-social a { color: #fff; margin: 0 12px; font-size: 22px; }
.footer .footer-social a:hover { color: var(--primary-color); }
.footer small { color: #aaa; font-size: 13px; }
@media (max-width: 991px) {
  .sidebar { width: 180px; }
  .main-contentL { margin-left: 180px; }
  .main-content { padding: 24px 2vw; }
  .content-section { padding: 18px 2vw; }
  .carousel-inner img { height: 210px; }
}
@media (max-width: 767px) {
  .sidebar {
    left: -230px; width: 200px; top: 0;
    position: fixed; height: 100vh;
  }
  .sidebar.show { left: 0; }
  .sidebar .close-btn { display: block; }
  .main-contentL { margin-left: 0; }
  .main-content { padding: 12px 0.5vw; }
  .menu-links { display: none; }
  .mobile-toggle { display: block !important; position: fixed; top: 10px; left: 12px; z-index: 2001; background: var(--primary-color); color: #fff; border: none; padding: 7px 14px; border-radius: 4px; }
}
@media (max-width: 520px) {
  .sidebar { width: 150px; }
  .main-content { padding: 8px 1vw; }
  .content-section { padding: 8px 1vw; }
  .carousel-inner img { height: 120px; }
}
.overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #0006; z-index: 2000;
}
.overlay.show { display: block; }
 /* Image Gallery Styling */
        #responsive {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        #responsive img {
            width: 100%;
            height: 350px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        #responsive img:hover {
            transform: scale(1.02);
        }

        /* Special styling for the third image to span full width */
        #responsive img:nth-child(3) {
            grid-column: 1 / -1;
            max-height: 400px;
            object-fit: cover;
        }

        /* Content Styling */
        .home-text {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            line-height: 1.8;
        }

        .about_us h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: bold;
            color: var(--secondary-color);
            
        }

        .home-text p {
            color: #666;
            font-size: 16px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .home-text .highlight {
            color: #D4AF37;
            font-weight: bold;
            font-style: italic;
            display: block;
            margin: 25px 0;
            font-size: 18px;
        }

        .home-text .tagline {
            color: #8B4513;
            font-weight: bold;
            font-size: 16px;
            margin-top: 25px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #responsive {
                grid-template-columns: 1fr;
            }
            
            .home-text {
                padding: 20px;
            }
            
            .home-text h2 {
                font-size: 24px;
            }
            
            .container {
                padding: 10px;
            }
        }

        /* Image caption styling */
        .image-caption {
            text-align: center;
            font-size: 14px;
            color: #8B4513;
            font-weight: bold;
            margin-top: 10px;
        }