* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Poppins, sans-serif;
  background: #ffffff;
  color: #1f2d1f;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: #1f2d1f;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #5c7c37;
}

.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,0.92) 0%,
            rgba(255,255,255,0.75) 35%,
            rgba(255,255,255,0.20) 65%,
            rgba(255,255,255,0.05) 100%
        ),
        url("images/hero.jpeg");

    background-size: cover;
    background-position: center;
}

/* Header */

.header {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;

    padding: 8px 8%;

    display: flex;
    align-items: center;
    gap: 80px;

    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #55763c;

    position: relative;
    top: -10px;   
}

.navbar {
    display: flex;
    align-items: center;
    gap: 45px;

    position: relative;
    top: 10px;
}

.navbar a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 17px;
}

/* Hero Text */

.hero-content {
    max-width: 630px;
    margin-left: 8%;
    padding-top: 110px;
}

.tagline {
    letter-spacing: 5px;
    color: #55763c;
    font-size: 16px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #55763c;
    display: block;
}

.divider {
    width: 180px;
    height: 2px;
    background: #d5d5d5;
    margin-bottom: 20px;
}

.description {
    font-size: 22px;
    line-height: 1.5;
    color: #444;
    max-width: 600px;
    margin-bottom: 20px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 25px;
}

.btn-primary,
.btn-outline {
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    background: #55763c;
    color: white;
}

.btn-outline {
    background: white;
    border: 2px solid #55763c;
    color: #55763c;
}

.section {
  width: 100%;
  padding: 70px 8%;
}

.about-section,
.products-section,
.contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 40px;
}

.section-subtitle {
    text-align: center;
    max-width: 750px;
    margin: -25px auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.products-section {
    background: #f8f8f4;
    padding: 50px 8%;
}

.products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.product {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 260px;
    padding: 20px;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-content {
    padding: 25px;
    flex: 1;
}

.product h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1f2d1f;
}

.product p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.product-info {
    border-top: 1px solid #ececec;
    padding: 14px 0;
}

.product-info h4 {
    font-size: 13px;
    color: #55763c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-info span {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.applications {
    display: inline-block;
    background: #f8f8f4;
    color: #55763c;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

form {
  max-width: 700px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

button {
  background: #5c7c37;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
}

footer {
    background: #1f2d1f;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 15px;
}

.logo img {
    width: 160px;
    height: auto;
    display: block;
    transform: translateY(-5px);
    transform: translateX(-30px);
}

.contact-section {
    background: #f8f8f4;
    padding: 50px 8%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 10px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #55763c;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 18px;
}

.info-item i {
    color: #55763c;
    font-size: 22px;
    width: 25px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    background: #55763c;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.about-section {
    background: #f8f8f4;
    padding: 50px 8%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

.section-tag {
    display: inline-block;
    color: #55763c;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-left h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #1f2d1f;
    margin-bottom: 25px;
}

.about-left p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-card {
    background: #ffffff;
    padding: 22px 25px;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    font-size: 18px;
    color: #222;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

