/* Reset & base */
*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

/* Navbar */
/* nav {
    background-color: skyblue;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 999;
}
nav .logo {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
    background-color: rgb(250, 17, 0);
} */

/* Footer */
footer {
    background: skyblue;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.footer-container h3, .footer-container h4, .footer-container p, .footer-container a {
    color: black;
    text-decoration: none;
}
.footer-container ul {
    list-style: none;
    padding: 0;
}
footer a:hover {
    text-decoration: underline;
}
footer .bottom-text {
    text-align: center;
    padding-top: 30px;
    color: rgb(253, 14, 14);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        width: 100%;
        gap: 15px;
        margin-top: 10px;
    }
}
@media (max-width: 600px) {
    nav .logo {
        font-size: 1.5rem;
    }
    nav ul li a {
        font-size: 1rem;
        padding: 6px 10px;
    }
}
/* Hero Section */


/* Section Title */
.section-title {
    text-align: center;
    color: #0b4720;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

/* Container */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Product Container */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Product Card */
.product-card {
    width: 250px;
    height: 540px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Image */
.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Description */
.description {
    font-size: 0.95rem;
    color: #5884fd;
}

/* Product Price */
.price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
}

/* Buy Now Button */
.buy-now {
    background: #0b4720;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.buy-now:hover {
    background: #063218;
}
.about-home {
    background: #f9fdfa;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.8rem;
    color: #066d32;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-button {
    display: inline-block;
    background-color: #066d32;
    color: #fff;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-button:hover {
    background-color: #044c23;
}
.site-footer {
    background-color: skyblue;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
}

.footer-about p,
.footer-links a,
.footer-contact p {
    color: rgb(248 248 248);
    font-size: 14.5px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: rgb(184 171 171);
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgb(253, 14, 14);
    font-size: 0.9rem;
}
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #2c3e50;
}

nav {
    background-color: skyblue;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

nav .logo img {
    height: 40px;
    margin-right: 10px;
}

nav .logo span {
    color: white;
    font-weight: bold;
    font-size: 1.6rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 6px;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgb(250, 17, 0);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-img {
    flex: 1 1 45%;
    background: url('images/contact.jpg') center/cover no-repeat;
    min-height: 400px;
}

.form-side {
    flex: 1 1 55%;
    padding: 40px;
}

.form-side h1 {
    color: #066d32;
    margin-bottom: 10px;
}

.form-side h2 {
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

.form-side form input,
.form-side form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-side form button {
    background: #08a045;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.form-side form button:hover {
    background: #066d32;
}

.message {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.success {
    color: green;
}

.error {
    color: red;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-img {
        min-height: 250px;
    }
}
.qty-input {
  width: 50px;
  padding: 4px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-left: 5px;
  margin-right: 10px;
}

/* buy-now.css — Stylish form card */

body {
  background-color: #f3f6fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.buy-card {
  max-width: 500px;
  margin: 60px auto;
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.buy-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #0b4720;
}

.buy-form .form-group {
  margin-bottom: 18px;
}

.buy-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2c3e50;
}

.buy-form input,
.buy-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.buy-form input:focus,
.buy-form textarea:focus {
  border-color: #0b4720;
  outline: none;
}

.buy-form textarea {
  resize: vertical;
  min-height: 100px;
}

.buy-button {
  width: 100%;
  background-color: #0b4720;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #063218;
}

@media (max-width: 600px) {
  .buy-card {
    margin: 30px 15px;
    padding: 20px;
  }
} /* Navbar Styles */
.navbar {
  background-color: skyblue;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  margin-left: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: rgb(250, 17, 0);
}

/* Hero Banner */
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: skyblue;
    margin-top: 10px;
    padding: 0;
  }

  .nav-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }
}
