         html,body {
          margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* border: 1px solid red; */
            font-family: "Be Vietnam Pro", sans-serif !important;
            height: 100vh;
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: #122117;
            
        }    


        .navbar-brand img {
            width: 100%;
            height: 50px;
        }

        .nav-item a {
            color: #fff;
        }

/* Style the navigation menu */
.topnav {
  display: none;
  overflow: hidden;
  background-color: #333;
  position: relative;
}


/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;

}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  /* background-color: #04AA6D; */
  color: white;
}

        .logo img {
            width: 100%;
            height: 50px;
        }
        
        /* nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #ffff;
            font-weight: 500;
        } */
        
        .shop-now-btn {
            background-color: #38E07A;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: column;
            background-image: url(./Asset/HeroIMGjpg.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 90%;
            max-width: 1200px;
            min-height: 60vh;
            border-radius: 12px;
            margin: 60px auto;
            padding: 40px 20px;
            justify-content: center;
            text-align: center;
            background-color: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .hero > * {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            color: #f9f9f9;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            max-width: 800px;
            color: #f9f9f9;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .hero-button {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .hero a {
            min-width: 180px;
            padding: 15px 30px;
            background-color: #38E07A;
            color: #0D1A12;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
        }
        
        .hero a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(56, 224, 122, 0.3);
        }

        
        .hero-button a:first-child:hover {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        /* section */
        section {
            width: 50%;
            margin: 0 auto;
            padding: 50px;
        }

        section h1 {
            font-size: 36px;
        }

        /* Features Section */
         .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .feature-card h2 {
            color: #0D1A12;
            margin-bottom: 15px;
            font-size: 24px;
            position: relative;
            padding-bottom: 10px;
        }
        .feature-card p {
            color: #2c8a4a;
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            padding: 50px;
            color: #0D1A12;
        }
        
        .cta h2 {
            margin-bottom: 20px;
        }
        
        .cta-btn {
            display: inline-block;
            background-color: #38E07A;
            color: #f9f9f9;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
        }
        
        /* Footer */
         footer {
            background-color: #f5f5f5;
            padding: 20px 0;
            margin-top: auto;
            margin-top: 40px;
            margin-bottom: 50px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 40px;
            margin-bottom: 50px;
        }
        
        .footer-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-nav a {
            color: #52946B;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        
        .copyright {
            text-align: center;
            color: #666;
            font-size: 14px;
            padding-top: 10px;
        }
        
        

        .produk-kami {
  background-color: #f9fdfc;
  padding: 40px 0;
}

.produk-kami h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #000;
}

.produk-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center; 
}


.produk-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.produk-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.produk-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #333;
}

.produk-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.btn-detail,
.btn-beli {
  display: block;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-detail {
  background-color: #FF714B;
  color: white;
}

.btn-detail:hover {
  background-color: #FF714B;
}

.btn-beli {
  background-color: #00d084;
  color: white;
  box-shadow: 0 3px 0 #dcdcdc;
}

.btn-beli:hover {
  background-color: #00d084;
}

.tentang-bbt {
  width: 50%;
  margin: 0 auto;
  padding: 40px ;
}


.tentang-bbt .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.tentang-text {
  flex: 1 1 60%;
}

.tentang-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.tentang-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.tentang-images {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tentang-images img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.hubungi-kami {
  height: 100vh;
  padding: 40px 0;
}

.hubungi-kami .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.hubungi-kami h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hubungi-kami p {
  color: #555;
  margin-bottom: 20px;
}

.btn-whatsapp {
  gap: 8px;
  background-color: #00d084;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover {
  background-color: #00b56d;
}

@media (max-width: 768px) {

            .logo {              
                width: 50%;
            }

            .hero {
                width: 100%;
                height: 100vh;
                background-size: auto 100vh;
                border-radius: 0px;
                margin: 0;
            }


            .topnav {
                display: block;
            }

            section {
                width: 100%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-button {
                flex-direction: column;
                align-items: center;
            }
            
            .learn-more-btn,
            .shop-now-btn {
                margin: 10px 0;
            }

            header {
                align-items: start;
                padding: 20px;
            }
            
            nav {
              display: none;
            }

            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 10px;
            }
            
            .feature {
                width: 100%;
            }
            
            .footer-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-nav a {
                margin: 5px 0;
            }

             .features-container {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-card {
                max-width: 80%;
            }

            /* products page */
            .produk-kami .container {
                padding: 20px;
            }

            .produk-kami h2 {
              margin-bottom: 20px;
                font-size: 1.5rem;
                text-align: center;
            }

            /* about page */
            .tentang-bbt {
                width: 100%;
                padding: 20px;
                padding-top: 40px;
            }

            .tentang-bbt .container {
                flex-direction: column;
                align-items: center;
            }

            .tentang-text {
                flex: 1 1 100%;
            }

            .tentang-images {
                flex: 1 1 100%;
            }

            /* contact page */
            .hubungi-kami {
                padding: 20px;
            }
            .hubungi-kami .container {
                text-align: center;
            }
        }