* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* 1. header */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* optional: helps on smaller screens */
    padding: 0.5rem 2rem;
}

.header {
    background: #929c94;
    padding: 0rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 100px; */
    position: relative;
    z-index: 1; /* ensures it's above the background image */
    background-color: #081C15; /* optional white tint background */
}

/* Background Image behind Header */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-image: url('/assets/images/logo1.jpg'); 🔁 your background image path */
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Adjust this for visibility */
    z-index: -1; /* places it behind header content */
    pointer-events: none; /* allows clicks to pass through */
}


.container h1{
    font-family: "Poetsen One", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.container h2{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo {
    color: rgb(21, 19, 19);
    /* font-size: 1rem; */
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #e7f4e9;
    font-family: Verdana, sans-serif;
}
.logo h1{
    font-family: "Ubuntu", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.logo-img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    /* padding: 10px; */
}



.navbar {
    display: flex;
    justify-content: center;
    /* background-color: #1B4332; */
    gap: 0rem;
    /* padding: 1rem 0; */
    border-radius: 10px;
}

.navbar a {
    color: rgb(206, 93, 93);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
    text-decoration: none;
    color: #e7f4e9;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    background: #1b5e20;
}

.navbar a:hover,
.navbar a.active {
    color: #e7f4e9;
    background-color: #000000;
}

























/* Tablet View (width <= 768px) */
@media screen and (max-width: 768px) {
    .quick-links-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .link-column {
        width: 80%;
        text-align: center;
    }

    .link-column h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .link-column ul li {
        margin-bottom: 10px;
    }

    .view-all-links a {
        display: block;
        margin: 8px 0;
    }
}

/* Mobile View (width <= 480px) */
@media screen and (max-width: 480px) {
    .quick-links-grid {
        gap: 20px;
    }

    .link-column {
        width: 100%;
    }

    .link-column h3 {
        font-size: 20px;
    }

    .link-column ul li a {
        font-size: 16px;
    }

    .view-all-links a {
        font-size: 16px;
    }
}



















/* @media screen and (max-width: 768px) {
    .navbar {
      display: none; 
      flex-direction: column;
      background-color: #ffffff;
      position: absolute;
      top: 70px;
      right: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }
  
    .navbar a {
      padding: 10px 20px;
      text-align: center;
      font-size: 16px;
      border-bottom: 1px solid #eee;
    }
  
    .menu-icon {
      display: block; 
    }
  
    .navbar.active {
      display: flex;
    }
  } */

/* .menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001; 
  } */
/* @media screen and (max-width: 768px) {
    .navbar {
      display: none; 
      flex-direction: column;
      background-color: #ffffff;
      position: absolute;
      top: 70px;
      right: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
      z-index: 1000;
      z-index: 1000000;
      color: #000000;
      opacity: 1;
    }

  
    .navbar a {
      padding: 10px 20px;
      text-align: center;
      font-size: 16px;
      border-bottom: 1px solid #eee;
      color: #000000;
      opacity: 1;
      z-index: 1000000;
    }
  
    .menu-icon {
      display: block;
    }
  
    .navbar.active {
      display: flex;
    }
  } */















































.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-left,
.contact-right {
    flex: 1 1 400px;
    min-width: 300px;
}

.contact-left p {
    margin: 10px 0;
    line-height: 1.6;
}

.contact-left a {
    color: #007BFF;
    text-decoration: none;
}

.contact-left a:hover {
    text-decoration: underline;
}

.contact-right h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.quote-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-field label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
}

.contact-form button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }
}















.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}

.contact-left,
.contact-right {
    flex: 1 1 48%;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 25px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    min-height: 480px;
}

.contact-left p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    font-size: 16px;
}

.contact-left a {
    color: #007BFF;
    text-decoration: none;
}

.contact-left a:hover {
    text-decoration: underline;
}

.contact-right h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
}

.quote-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-field label {
    font-weight: bold;
    white-space: nowrap;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background: #fefefe;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        min-height: unset;
    }

    .section-title {
        font-size: 26px;
    }

    .contact-form button {
        width: 100%;
    }
}
