:root {
    --yellow: #e6cf6f;
    --red: #b31921;
    --green: #8bc440;
    --black: #000;
    --white: #fff;
}


/* contact section start */
.contact-banner-bg {
    background-image: url('/img/4.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

@media (max-width:991px) {
    .contact-banner-bg {
        margin-top: -40px !important;
    }
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    top: 20%;
}

@media (max-width:700px) {
    .contact-overlay {
        top: 33%;
    }
}

.contact-banner-heading {
    font-size: 50px;
}

.breadcrumb-item {
    color: #fff !important;
}

.contact-section {
    padding: 60px 0;
}

.card{
    box-shadow: 0px 0px 5px 2.5px var(--rose);
}


.contact-info-card-organic {
    /* background-color: #7DA83A; */
    border: 2px solid var(--rose);
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03)),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03));
    background-size: 20px 20px;

    color: var(--black);
    padding: 30px 25px;
    border-radius: 30px 10px 30px 10px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-info-card-organic:hover {
    transform: translateY(-5px);
}

.info-icon-organic {
    background-color: var(--rose);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.info-title-organic {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-details-organic {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.info-details-organic a {
    color: var(--black);
    text-decoration: none;
}

.info-details-organic a:hover {
    text-decoration: underline;
    color: var(--rose);
}

@media (max-width: 991.98px) {

    .contact-info-card-organic {
        margin-bottom: 25px;
    }

    .col-lg-4:last-child .contact-info-card-organic {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .contact-info-card-organic {
        padding: 25px 20px;
    }

    .info-icon-organic {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .info-title-organic {
        font-size: 1.05rem;
    }

    .info-details-organic {
        font-size: 0.85rem;
    }
}


.contact-form-wrapper .eyebrow-text-contact {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3BB77E;
    /* Green for eyebrow */
    margin-bottom: 8px;
    display: block;
    /* border: 2px solid var(--black); */
}

.contact-form-wrapper .main-heading-contact {
    font-size: 2.5rem;
    /* Adjust as needed */
    font-weight: 700;
    color: #253D4E;
    /* Dark blue/grey text color */
    line-height: 1.3;
    margin-bottom: 10px;
}

.contact-form-wrapper .form-note {
    font-size: 0.85rem;
    color: #7E7E7E;
    margin-bottom: 30px;
}

.custom-form .form-control {
    background-color: #fff;
    /* White input background */
    border: 1px solid #c2bcbc;
    /* Light grey border */
    border-radius: 10px;
    /* Rounded corners */
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #253D4E;
    box-shadow: none;
    /* Remove default Bootstrap shadow on focus */
    transition: border-color 0.3s ease;
}

.custom-form .form-control:focus {
    border-color: #3BB77E;
    /* Green border on focus */
    box-shadow: 0 0 0 0.2rem rgba(59, 183, 126, 0.25);
    /* Green glow on focus */
}

.custom-form .form-control::placeholder {
    color: #aaa;
}

.custom-form textarea.form-control {
    min-height: 150px;
    /* Adjust textarea height */
}

.btn-send-message {
    background-color: #253D4E !important;
    /* Dark blue/grey button */
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-send-message:hover {
    background-color: #1c2d3a;
    /* Darker shade on hover */
    color: white;
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    /* Rounded corners for image */
    object-fit: cover;
    max-height: 500px;
    /* Max height for the image if needed */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    /* Tablets */
    .contact-image-wrapper {
        margin-top: 40px;
        /* Space above image when it stacks below form */
        text-align: center;
        /* Center image if it's not full width */
    }

    .contact-image-wrapper img {
        max-width: 80%;
        /* Don't let image be too wide on tablet stack */
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .contact-form-wrapper .main-heading-contact {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .contact-form-wrapper {
        text-align: center;
    }

    .contact-form-wrapper .main-heading-contact {
        font-size: 2rem;
    }

    .custom-form .form-control {
        margin-bottom: 1rem;
        /* Ensure consistent spacing for inputs on mobile */
    }

    .custom-form .row .col-md-6:last-child .form-control {
        margin-bottom: 1rem;
        /* Override Bootstrap's default removal of margin */
    }

    .contact-image-wrapper img {
        max-width: 100%;
    }
}