html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden
}
header {
    background: #1f4d2e;
    padding: 0px 30px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px
}
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain
}
.logo {
    color: white;
    font-size: 20px;
    font-weight: bold
}
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0
}
.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s
}
.nav-links li a:hover {
    color: #ffd369
}
#home {
    padding-top:65px
}
#home img {
    width: 100%;
    height: calc(12em + 28vw)
}
section {
    padding: 80px 10%
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    color: #0c4b33
}
h2, h3, h5 {
    font-weight: bold
}
#lfgreen, #lfblack, #lfwhite {
    padding-bottom: 12px;
    position: relative;
    font-weight: bold
}
#lfgreen:before, #lfwhite:before, #lfblack:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50%;
    left: 25%
}
#lfgreen:before {
    border-bottom: 3px solid #0c4b33
}
#lfwhite:before {
    border-bottom: 3px solid white
}
#lfblack:before {
    border-bottom: 3px solid black
}
#underline {
    border-bottom: 3px solid black;
    padding-bottom: 12px
}
#about, #contact {
    padding-top: 100px
}
#vision {
    padding: 100px 10px;
    background: linear-gradient(135deg, #fff8e7, #f5f5dc)
}
.vision-card, .mission-card {
    padding: 40px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3)
}
.vision-card {
    background: linear-gradient(135deg, #D4A017, #F2C94C)
}
.mission-card {
    background: linear-gradient(135deg, #2E7D32, #4CAF50)
}
.vision-card::before, .mission-card::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%
}
.vision-card::after, .mission-card::after {
    content: "";
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%
}
.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3)
}
.vision-card h3, .mission-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2
}
.vision-card p, .mission-card p {
    font-size: 17px;
    line-height: 1.8;
    position: relative;
    z-index: 2
}
#product {
    background: linear-gradient(180deg, #D4A017, #F2C94C);
    padding-top: 100px
}
#product img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3)
}
#product img:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3)
}
#facility {
    background: linear-gradient(135deg, #fff8e7, #f5f5dc);
    padding-top: 100px
}
#facility img {
    height: 300px;
    width: 100%
}
.box {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid black;
    border-radius: 12px;
    background: white;
    box-shadow:0 12px 30px rgba(0,0,0,0.3)
}
#contact img {
    width: 100%;
    border-radius: 10px
}
#contact-info {
    flex: 1;
    line-height: 1.8
}
footer {
    background: #0c4b33;
    color: white;
    text-align: center
}
footer p {
    font-weight: bold;
    margin: 0
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block
    }
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #1f4d2e;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: 15px;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.35s ease;
        display: flex
    }
    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
    }
    .section-title {
        font-size: 30px
    }
    .vision-card, .mission-card {
        padding: 28px
    }
}