.contact_details_box {
    background: linear-gradient(135deg, #dafa9e, #fdfffe);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(12, 139, 91, 0.12);
    border: 1px solid #dff3ea;
}

.contact_details_box h3 {
    color: #81c408;
    font-weight: 700;
}

.contact_item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact_item i {
    width: 45px;
    height: 45px;
    background: #81c408;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact_item h6 {
    margin-bottom: 3px;
    font-weight: 600;
    color: #222;
}

.contact_item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .contact_details_box {
        margin-top: 40px;
        padding: 35px 25px;
    }
}
.section_title {
    color: #81c408;
    font-weight: 700;
    margin-bottom: 10px;
}

.section_subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.product_info_card {
    background: linear-gradient(135deg, #ffffff, #dbe1de);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid #e1f3ea;
    transition: all 0.35s ease;
}

.product_info_card h4 {
    color: #81c408;
    font-weight: 700;
    margin-bottom: 12px;
}

.product_info_card ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.product_info_card li {
    margin-bottom: 6px;
    color: #444;
}

.product_info_card .small_text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.product_info_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(12, 139, 91, 0.18);
}
 .video-section {
                    background: #f8fbf6;
                }

                .video-card {
                    position: relative;
                    border-radius: 15px;
                    overflow: hidden;
                    cursor: pointer;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                    transition: 0.4s;
                }

                .video-card:hover {
                    transform: translateY(-5px);
                }

                .video-card video {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .video-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
                }

                .play-btn {
                    width: 70px;
                    height: 70px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #2e7d32, #66bb6a);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #fff;
                    font-size: 28px;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
                }

                .video-title {
                    position: absolute;
                    bottom: 10px;
                    left: 15px;
                    color: #fff;
                    font-weight: 600;
                    font-size: 15px;
                    background: rgba(0, 0, 0, 0.5);
                    padding: 5px 12px;
                    border-radius: 6px;
                }