 .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: #ff6f00;
    }

    .navbar-brand:hover {
      color: #e65100;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #ff6f00 !important;
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: #ff6f00;
    }

    .navbar-brand:hover {
      color: #e65100;
    }

    .nav-link {
      color: #222 !important;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #ff6f00 !important;
    }

    
/* footer */
    footer {
      background-color: #2c2c2c;
      color: #fff;
      padding-top: 40px;
      padding-bottom: 20px;
      margin-top: 60px;
    }

    footer h6,
    footer h4 {
      font-weight: 600;
      color: #fff;
    }

    footer a {
      color: #bbb;
      text-decoration: none;
      font-size: 0.95rem;
    }

    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

    footer .social-icons i {
      font-size: 20px;
      margin-right: 12px;
      color: #ccc;
      transition: color 0.3s;
    }

    footer .social-icons i:hover {
      color: #ff6f00;
    }

    footer hr {
      border-color: rgba(255, 255, 255, 0.15);
    }

    footer p {
      font-size: 0.85rem;
      color: #bbb;
    }

     /* Cart */
    .cart-count {
      font-weight: bold;
      color: #ff6f00;
      font-size: 1.2rem;
      cursor: pointer;
      margin-right: 20px;
    }

    .cart-count i {
      margin-right: 6px;
    }

    .cart-item {
      padding: 5px 0;
      border-bottom: 1px solid #eee;
    }

    .offcanvas {
      background-color: #fff;
      color: #333;
    }
    /* Background Image Style */
    .bg-img {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      /* send image behind everything */
      filter: brightness(0.9);
      /* thodi dark karne ke liye for better readability */
    }

    /* Transparent Box Style */
    .content-box {
      background: rgba(255, 255, 255, 0.85);
      padding: 40px;
      border-radius: 15px;
      max-width: 900px;
      margin: 30px auto;
      text-align: center;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    }

    body {
      background: url('your-high-res-image.jpg') no-repeat center center fixed;
      background-size: cover;
      /* Ensures image stretches proportionally */
      image-rendering: -webkit-optimize-contrast;
      /* Improves clarity in some browsers */
      image-rendering: crisp-edges;
      /* Makes edges sharper if available */
      background-attachment: fixed;
      /* Keeps background stable while scrolling */
    }

