.breadcrumb-area {
    /* width: 100%; */
    background-image: url(../images/detail/vegetables-farmers-freshness.webp);
    background-color: #d7e4d9;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Black overlay */
.breadcrumb-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* adjust opacity */
    z-index: 1;
}

/* Keep content above overlay */
.breadcrumb-area * {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2b9e4a;
    margin-bottom: 10px;
    margin-top: 0;
    z-index: 1;
    position: relative;
    color:#fff;
}

.breadcrumb-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-links li {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color:#fff;
}

/* Logic for the Separator (|) */
.breadcrumb-links li:not(:last-child)::after {
    content: "|";
    margin: 0 15px; /* Spacing around the pipe */
    color: #fff;
    font-weight: 400;
}

/* Link Styles */
.breadcrumb-links li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb-links li.active {
    
    color: #fff;
    font-weight:600;
}



/* --- 2. Contact Info Cards Styles --- */
.contact-info-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.info-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
   background: #ffffff;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    /* width: 350px; */
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

/*.info-card:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.08);*/
/*}*/

.icon-box {
    margin-bottom: unset;
}
.icon-box i {
    font-size: 55px; /* Adjust based on Flaticon size */
    color: #28a745; /* Brand Green */
    display: inline-block;
}

.info-card h3 {
    font-size: 19px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.info-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* --- 3. Link Styles (tel: and mailto:) --- */
.info-card p a {
    text-decoration: none;
    color: inherit; /* Keeps the grey color */
    transition: 0.3s;
}

.info-card p a:hover {
    color: #28a745; /* Turns green on hover */
}

.contact-form-section {
      overflow: hidden;
    position: relative;
    padding: 0 0 4rem;
}

.bg-light-cyan {
    background-color: #f1f9f9; /* The exact light blue/green tint */
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-form-wrapper {
        padding: 30px 30px;
}

/* Titles */
.sub-title {
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #28a745;
}

.section-title h2 {
  font-size: 31px;
    color: #002d4b;
    margin-bottom: 40px;
}

/* Form Styling */
.form-control, 
.form-select {
       border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 15px 20px;
    background-color: #fff;
    color: #666;
    font-size: 13px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #28a745;
}

textarea.form-control {
    resize: none;
}

/* Button */
.btn-contact-form {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

/*.btn-contact-form:hover {*/
/*    background-color: #218838;*/
/*    transform: translateY(-2px);*/
/*}*/

/* Image behavior */
.contact-form-img img {
       height: 628px;
    object-fit: cover;

}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 60px 20px;
    }
}
.form-select:focus {
    box-shadow: unset !important;
    border-color: unset !important;
}