body {
    margin: 0;
    font-family: Arial;
}
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: #F7F7F2; /* 🔥 same as your sections */
}

.logo img {
    height: 70px;
}

.nav-links li {
    font-size: 14px;
    font-weight: 500; /* 🔥 slightly bolder */
    cursor: pointer;
}
.nav-links li:hover {
    color: #16a34a;
    transition: 0.2s;
}
.nav-links {
    display: flex;
    gap: 25px; /* little more breathing room */
    list-style: none;
    align-items: center;
}
.navbar {
    align-items: center;
}
/* HERO */

.hero {
    height: 90vh;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 120px;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.hero-content h1 {
    font-size: 64px;   /* 🔥 bigger */
    font-weight: 600;
    margin: 20px 0;
}

.hero-content {
    color: white;
    position: relative;
}

.btn {
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px; /* 🔥 pushes it down */
    display: inline-block;
}
.btn {
    color: #16a34a; /* 🔥 green text */
}
.btn {
    text-decoration: none;
}
.btn:hover {
    background: #16a34a;
    color: white;
    transition: 0.3s;
}

/* PRODUCTS */
.products {
    text-align: center;
    padding: 100px;
    background: #F7F7F2;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 60px;
}

.card {
    width: 280px;
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 12px;
}
.card p {
    margin-top: 15px;
    font-weight: 600;  /* 🔥 bold */
    font-size: 16px;
}
.card img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


/* ABOUT */
.about {
    background-color: #F7F7F2;
    padding: 120px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start; /* 🔥 KEY FIX */
    gap: 80px;
    padding: 0 20px;
}

.about-video video {
    width: 700px;   /* 🔥 BIG */
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text {
    max-width: 350px;   /* 🔥 narrow like design */
    text-align: left;
}
.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 16px;     /* was too small */
    line-height: 1.8;    /* 🔥 super important for readability */
}
.about-container {
    align-items: stretch; /* 🔥 makes both sides same height */
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 🔥 centers text vertically */
}
.about-video video {
    width: 700px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.about-text {
    max-width: 520px;
}


.section-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6BAF3A;
}
/* DETAILS */
/* DETAILS */
.details {
    background: #F7F7F2;
    padding: 120px 0;
    text-align: center;
}

.details h2 {
    margin-bottom: 60px;
}

/* PRODUCT ROW */
.product-detail {
    display: flex;
    align-items: flex-start;
    gap: 80px;

    max-width: 1100px;
    margin: 120px auto;
    padding: 0 20px;
}

/* IMAGE */
.product-detail img {
    width: 260px;
    height: auto;
    border-radius: 20px;
    flex-shrink: 0;
}

/* TEXT SIDE */
.detail-text {
    flex: 1;
    text-align: left;
}

/* HIDDEN TEXT */
.more-text {
    display: none;
    margin-top: 15px;
}

/* TEXT STYLE */
.more-text p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

/* BUTTON */
.read-more-btn {
    margin-top: 15px;
    background: none;
    border: none;
    color: #16a34a;
    cursor: pointer;
    font-weight: 500;
}

/* SPACING */
.detail-text h3 {
    margin-bottom: 10px;
}

.detail-text p {
    margin-bottom: 10px;
}
/* RESEARCH */
.research {
    background: #f7f7f2;
    padding: 50px 20px;
}

.research-container {
    max-width: 900px;
    margin: 0 auto;
}

.research-block {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.research-block:last-child {
    border-bottom: none;
}

.research-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.research-block p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

.research-block ul {
    padding-left: 20px;
    margin-top: 8px;
}

.research-block li {
    margin-bottom: 6px;
    line-height: 1.5;
    color: #444;
}

.research-block span {
    font-size: 14px;
    color: #666;
}

.research-block a {
    color: #4CAF50;
    text-decoration: underline;
}
.research {
    padding: 50px 20px 20px 20px;
}
/* CONTACT */
.contact {
    background: #F7F7F2;
    padding: 40px 0 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.contact h2 {
    font-size: 42px;
    margin: 20px 0 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.contact-item p {
    margin: 5px 0;
}

.contact-item a {
    color: #16a34a;
    text-decoration: none;
    font-size: 14px;
}
.contact {
    padding: 30px 20px 60px 20px;
}
/* FOOTER */
.footer {
    background: #1f1f1f;
    color: #ccc;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    margin: 6px 0;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}

footer {
    margin-top: auto;
}

.contact {
    padding-bottom: 60px;  /* reduce from 120px */
}
html {
    scroll-behavior: smooth;
}
.product-price {
    font-size: 18px;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .hero {
        height: 70vh;
        padding-left: 60px;
        padding-right: 30px;
    }

    .hero-content h1 {
        font-size: 48px;
        max-width: 600px;
    }

    .products {
        padding: 80px 30px;
    }

    .product-grid {
        gap: 40px;
        flex-wrap: wrap;
    }

    .card {
        width: 240px;
    }

    .about {
        padding: 80px 30px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .about-video video {
        width: 100%;
        max-width: 700px;
        height: auto;
    }

    .about-text {
        max-width: 700px;
        text-align: center;
    }

    .details {
        padding: 80px 30px;
    }

    .product-detail {
        gap: 40px;
        margin: 80px auto;
        align-items: center;
    }

    .product-detail img {
        width: 220px;
    }

    .research {
        padding: 80px 30px;
    }

    .research-container {
        max-width: 800px;
    }

    .contact {
        padding: 80px 30px 40px;
    }

    .contact-container {
        max-width: 800px;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .logo img {
        height: 38px;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
        margin: 0;
    }

    .nav-links li a {
        font-size: 13px;
    }

    .hero {
        height: 75vh;
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin: 15px 0;
    }

    .hero-content span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .products {
        padding: 60px 20px;
    }

    .products h2,
    .details h2,
    .contact h2,
    .about-text h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .card {
        width: 100%;
        max-width: 280px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .about-video video {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .about-text {
        max-width: 100%;
        text-align: left;
    }

    .details {
        padding: 60px 20px;
    }

    .product-detail {
        flex-direction: column;
        gap: 25px;
        margin: 60px auto;
        padding: 0;
    }

    .product-detail img {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .detail-text {
        text-align: left;
        width: 100%;
    }

    .more-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .research {
        padding: 60px 20px;
    }

    .research-container {
        max-width: 100%;
        padding: 0;
    }

    .research-block h3 {
        font-size: 17px;
    }

    .research-block p,
    .research-block li {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact {
        padding: 60px 20px 30px;
    }

    .contact-container {
        max-width: 100%;
        padding: 0;
    }

    .contact-info {
        gap: 20px;
    }

    .footer {
        padding: 50px 20px 25px;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .footer-col p,
    .footer-bottom {
        font-size: 13px;
    }
}
.nav-links a {
    text-decoration: none;
    color: inherit;
}
.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}
html {
    scroll-behavior: smooth;
}

.card {
    text-decoration: none;
    color: inherit;
}

