* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}




.about2
{
    font-size: 20px !important;
    margin: 30px auto !important;
}

/* ================================nabar===================*/

/* ------------ NAVBAR WRAPPER 100% BG ------------ */
.nav_hm_wrapper {
    width: 100%;
    display: flex;
    /* height: 80px; */
}

/* ------------ LEFT 70% BG (#E4FFC7) ------------ */
.nav_hm_left_bg {
    width: 60%;
    background: #E4FFC7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /* border-bottom: 2px solid #000; */
}

/* ------------ RIGHT 30% BG (#6FA765) ------------ */
.nav_hm_right_bg {
    width: 40%;
    background: #6FA765;
    /* border-bottom: 2px solid #000; */
}

/* ------------ LOGO ------------ */
.nav_hm_logo img {
    width: 110px;
}

/* ------------ MENU ------------ */
.nav_hm_menu {
    display: flex;
    gap: 35px;
}

.nav_hm_menu a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav_hm_menu a:hover {
    color: #000;
}

/* ------------ MOBILE MENU BUTTON ------------ */
.nav_hm_mobile_btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ------------ RESPONSIVE 900PX ------------ */
@media (max-width: 900px) {

    .nav_hm_right_bg {
        display: none;
        /* Hide right bg on mobile */
    }

    .nav_hm_left_bg {
        width: 100%;
    }

    .nav_hm_menu {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background: #E4FFC7;
        width: 100%;
        padding: 15px 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-bottom: 2px solid #000;
        z-index: 3;
    }

    .nav_hm_menu.nav_hm_show {
        display: flex;
    }

    .nav_hm_mobile_btn {
        display: block;
    }
}




/* ============================= */

/* ================================================================== */



/* ===============================
   Area of Use Section Styling
================================*/
.home_area_section {
    width: 100%;
    background: #E6FFC8;
    padding: 50px 0;
}

.home_area_container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.home_area_title {
    text-align: center;
    color: #005500;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* List Styling */
.home_area_list {
    list-style: disc;
    padding-left: 40px;
}

.home_area_item {
    font-size: 16px;
    color: #003300;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE DESIGN
================================*/

/* Tablet */
@media (max-width: 992px) {
    .home_area_title {
        font-size: 20px;
    }

    .home_area_item {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .home_area_section {
        padding: 35px 0;
    }

    .home_area_title {
        font-size: 18px;
    }

    .home_area_list {
        padding-left: 20px;
    }

    .home_area_item {
        font-size: 14px;
        margin-bottom: 8px;
    }
}




/* ============================================================ */




/* -------------------------
   MAIN SECTION STYLING
--------------------------*/



/* ---------- MAIN SECTION ---------- */
.home_section {
    width: 100%;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* LEFT BG (70%) */
.home_bg_left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #E4FFC7;
    z-index: 1;
}

/* RIGHT BG (30%) */
.home_bg_right {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #6FA765;
    z-index: 1;
}

/* CONTENT CONTAINER */
.home_container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ---------- LEFT CONTENT ---------- */
.home_left {
    width: 50%;
}

.home_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1B5E20;
    margin-bottom: 20px;
}

.home_desc {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

/* ---------- RIGHT IMAGE ---------- */
.home_right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.home_img_wrap {
    width: 100%;
    max-width: 480px;
    /* background: #CDE6C5; */
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    padding: 10px;
}

.home_img {
    width: 100%;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    object-fit: cover;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* TABLET VIEW */
@media (max-width: 992px) {

    .home_bg_left,
    .home_bg_right {
        width: 100%;
        height: 50%;
    }

    .home_bg_left {
        top: 0;
    }

    .home_bg_right {
        bottom: 0;
        top: auto;
    }

    .home_container {
        flex-direction: column;
        text-align: center;
    }

    .home_left,
    .home_right {
        width: 100%;
    }

    .home_title {
        font-size: 28px;
    }
}

/* MOBILE VIEW */
@media (max-width: 576px) {

    .home_section {
        padding: 40px 0;
    }

    .home_title {
        font-size: 24px;
    }

    .home_desc {
        font-size: 14px;
    }

    .home_img_wrap {
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .home_img {
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    /* Mobile BG - 100% single color */
    .home_bg_right {
        display: none;
    }

    .home_bg_left {
        width: 100%;
    }
}



/* -------------------------------------------- */



/* Section Background */
.home_offering_section {
    background: #75A968;
    padding: 50px 20px;
    text-align: center;
}

/* Title */
.home_offering_title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Slider Wrapper */
.home_offering_slider_wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* Slider Track */
.home_offering_slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

/* Card */
.home_offering_card {
    background: #DFF1D0;
    min-width: 30%;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    transition: all .3s ease;
}

.home_offering_card:hover {
    transform: translateY(-5px);
}

/* Image */
.home_offering_img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* Text */
.home_offering_text {
    font-size: 15px;
    margin-top: 12px;
    font-weight: 600;
    color: #444;
}

/* Slider Buttons */
.home_offering_prev,
.home_offering_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffd9;
    border: none;
    padding: 10px 14px;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.home_offering_prev:hover,
.home_offering_next:hover {
    background: #fff;
}

.home_offering_prev { left: 10px; }
.home_offering_next { right: 10px; }

/* Responsive */
@media (max-width: 992px) {
    .home_offering_card {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .home_offering_card {
        min-width: 60%;
    }
}

@media (max-width: 576px) {
    .home_offering_card {
        min-width: 85%;
    }

    .home_offering_title {
        font-size: 20px;
    }
}




/* ========================== */



.home_offering_section {
    padding: 40px;
    text-align: center;
}

.home_offering_title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 60px;
}

.slider_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider_track {
    display: flex;
    width: max-content;
}

.home_offering_card {
    /* width: 300px; */
    margin: 0 15px;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.home_offering_card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.home_offering_card p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Auto slider animation */
@keyframes slideMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider_track {
    animation: slideMove 20s linear infinite;
}



/* ---------------------------- */


/* ---------------------- SECTION WRAPPER ---------------------- */
.why_choose_section {
    background: #e3ffcd;
    padding: 50px 20px;
    text-align: center;
}

/* ---------------------- HEADING ---------------------- */
.why_choose_title {
    font-size: 22px;
    font-weight: 700;
    color: #1c4e1a;
    margin-bottom: 40px;
}

/* ---------------------- BOXES GRID ---------------------- */
.why_choose_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

/* ---------------------- EACH BOX ---------------------- */
.why_choose_card {
    background: #1c5e1f;
    padding: 30px 20px;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 120px;
    transition: 0.3s ease;
}

.why_choose_card:hover {
    transform: translateY(-6px);
}

/* ---------------------- BUTTON ---------------------- */
.why_choose_btn {
    margin-top: 35px;
    padding: 8px 18px;
    background: #1c5e1f;
    color: #fff;
    border: none;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.why_choose_btn:hover {
    background: #174d18;
}

/* ---------------------- RESPONSIVE ---------------------- */
@media (max-width: 1100px) {
    .why_choose_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why_choose_grid {
        grid-template-columns: 1fr;
    }
}




/* =====================================Fooert========================= */



/* =======================
   MAIN FOOTER SECTION
========================*/
.footer_section {
    width: 100%;
    background: #73A768;
    padding: 50px 0;
}



.foot_add
{
     /* white-space: nowrap; */
    text-overflow: ellipsis; 
}


.foot_head_add
{
    padding-left: 20px;
     white-space: nowrap;
    text-overflow: ellipsis; 
}


.footer_container {
    width: 90%;
    /* max-width: 1300px; */
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* =======================
   LOGO
========================*/
.footer_logo_box  img {
    width: 150px;
}

.footer_logo {
    width: 100%;
    object-fit: contain;
        /* height: 100px; */
}

/* =======================
   FOOTER COLUMNS
========================*/
.footer_col {
    min-width: 180px;
}

.footer_title {
    font-size: 18px;
    font-weight: 600;
    color: #E4FFC7;
    margin-bottom: 15px;
}

.footer_list {
    padding-left: 0;
    list-style: none;
}

.footer_link {
    color: #e6e6e6;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer_link:hover {
    color: #000000;
    font-weight: 600;
}

/* =======================
   RESPONSIVE DESIGN
========================*/

/* Tablet */
@media (max-width: 992px) {
    .footer_container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer_col {
        width: 100%;
    }

    .footer_logo_box {
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer_title {
        font-size: 16px;
    }

    .footer_link {
        font-size: 13px;
    }

    .footer_container {
        gap: 25px;
    }
}







/* ============================================================= */
/* ========================== ABOUT PAGE =============================== */


/* MAIN CONTAINER */
.about_pg_wrapper {
    background: #e7f8d5;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.about_pg_title {
    font-size: 32px;
    font-weight: bold;
    color: #2e5b28;
    margin-bottom: 20px;
}

.about_pg_desc_top {
    width: 90%;
    margin: auto;
    font-size: 17px;
    line-height: 1.6;
    color: #1A237E;
}

.about_pg_desc_bottom {
    width: 90%;
    margin: 25px auto 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #1A237E;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about_pg_title {
        font-size: 28px;
    }

    .about_pg_desc_top,
    .about_pg_desc_bottom {
        font-size: 15px;
        padding: 0 10px;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .about_pg_title {
        font-size: 24px;
    }

    .about_pg_desc_top,
    .about_pg_desc_bottom {
        font-size: 14px;
    }
}




/* ------------------------------------------------------------------------- */

/* MAIN SECTION */
.about_serv_section {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* TOP AREA */
.about_serv_top {
    background: #6eab6d;
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.about_serv_heading {
    font-size: 24px;
    margin-bottom: 20px;
}

.about_serv_features {
    display: flex;
    /* justify-content: center; */
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px 0px;
}

.about_serv_item {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about_serv_desc {
    font-size: 13px;
    width: 80%;
    margin: auto;
    opacity: 0.9;
}

/* STRENGTHS AREA */
.about_serv_strength_area {
    background: #d7f5c7;
    padding: 40px 20px;
    text-align: center;
}

.about_serv_strength_title {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about_serv_strength_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about_serv_strength_card {
    background: #0d8d3a;
    padding: 25px 15px;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about_serv_strength_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about_serv_features {
        flex-direction: column;
        gap: 15px;
    }

    .about_serv_strength_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about_serv_heading {
        font-size: 20px;
    }

    .about_serv_strength_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about_serv_strength_card {
        font-size: 14px;
        padding: 20px;
    }
}





/* ===========================
   MAIN SECTION
=========================== */
.mission_vission_section {
    width: 100%;
    background: #e5f6d6;
    padding: 40px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.mission_vission_heading {
    font-size: 32px;
    font-weight: 700;
    color: #0b4f1a;
    margin-bottom: 30px;
}

/* ===========================
   MISSION BOX
=========================== */
.mission_vission_mission_box {
    background: #78a86d;
    padding: 30px 20px;
    /* width: 90%; */
    margin: auto;
    border-radius: 6px;
    color: #fff;
}

.mission_vission_mission_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission_vission_mission_text {
    font-size: 15px;
    line-height: 1.6;
    margin: auto;
    max-width: 1000px;
}

/* ===========================
   VISION BOX
=========================== */
.mission_vission_vision_box {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto 0;
    text-align: center;
}

.mission_vission_vision_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b4f1a;
}

.mission_vission_vision_text {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    max-width: 1000px;
    margin: auto;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

    .mission_vission_heading {
        font-size: 26px;
    }

    .mission_vission_mission_title,
    .mission_vission_vision_title {
        font-size: 18px;
    }

    .mission_vission_mission_text,
    .mission_vission_vision_text {
        font-size: 14px;
        padding: 0 10px;
        text-align: justify;
    }

    .mission_vission_mission_box,
    .mission_vission_vision_box {
        width: 95%;
    }
}

@media (max-width: 480px) {

    .mission_vission_heading {
        font-size: 22px;
    }

    .mission_vission_mission_title,
    .mission_vission_vision_title {
        font-size: 16px;
    }

    .mission_vission_mission_text,
    .mission_vission_vision_text {
        font-size: 13px;
    }
}




/* =================================SERVICE PAGE==================== */



.service_container {
    margin: auto;
    background-color: #E4FFC7;
    padding: 40px 0;
}

.service_title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #176419;
}

.service_grid {
    display: grid;
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service_box {
    background: transparent;
    padding: 15px;
    text-align: center;
    border: 1px solid #176419;
}

.service_box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform .3s;
}

.service_box img:hover {
    transform: scale(1.05);
}

.service_heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #176419;
}

.service_text {
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
    .service_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service_grid {
        grid-template-columns: 1fr;
    }
}

/* ⭐ IMAGE POPUP ZOOM EFFECT ⭐ */
.popup_overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.popup_content {
    margin: auto;
    display: block;
    width: 70%;
    max-width: 600px;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.5); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.popup_close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}





/* ========================== CONTACT PAGE =============================== */



/* ------------------------------
   CONTACT PAGE MAIN STYLING
--------------------------------*/
.contact_pg_section {
    width: 100%;
    padding: 40px 20px;
    background: #E4FFC7;
    font-family: Arial, sans-serif;
}

.contact_pg_container {
    width: 90%;
    margin: auto;
}

.contact_pg_title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0d5700;
}

/* Flex layout */
.contact_pg_flexbox {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Content Box */
.contact_pg_left {
    flex: 1;
    min-width: 300px;
}

.contact_pg_left h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #0e3906;
}

.contact_pg_left p,
.contact_pg_left a {
    font-size: 15px;
    line-height: 22px;
    color: #222;
    text-decoration: none;
}

.contact_pg_icon {
    margin-right: 6px;
    font-size: 16px;
}

/* Right Image Box */
.contact_pg_right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contact_pg_right img {
    width: 100%;
    /* max-width: 450px; */
    border-radius: 12px;
}

/* -----------------------------------
   RESPONSIVE DESIGN
--------------------------------------*/

/* Tablets */
@media (max-width: 900px) {
    .contact_pg_flexbox {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact_pg_left {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contact_pg_title {
        font-size: 22px;
    }

    .contact_pg_left p {
        font-size: 14px;
    }
}





/* ========================== PRODUCT PAGE =============================== */


.product
{
     background-color: #E4FFC7;
}

.product_page_container {
    width: 90%;
    margin: auto;
    padding: 30px;
}

.product_page_title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
}

.product_page_section {
    margin-bottom: 60px;
}

.product_page_heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #176419;
}

.product_page_content {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.product_page_content img {
    width: 360px;
    border-radius: 5px;
}

.product_page_text {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media(max-width:768px) {
    .product_page_content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product_page_content img {
        width: 70%;
    }

    .product_page_text {
        width: 100%;
    }
}


/* =========================== */


.contact_pg_icon {
    font-size: 20px;
    margin-right: 8px;
    color: #176419; 
}

.contact_pg_social a {
    margin-right: 12px;
    text-decoration: none;
}

.contact_pg_social i:hover {
    color: #f57c00;
    transform: scale(1.1);
    transition: 0.3s ease;
}


/* ====================== */


/* Floating Button Container */
.float_btn_container_ {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.float_btn {
    width: 50px;
    height: 50px;
    background: #ff7f32;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

/* Hover Effect */
.float_btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Icon Image */
.float_btn_whatsapp_ img {
    width: 28px;
    height: 28px;
}

/* Specific Colors */
.float_btn_call_ {
    background: #08ee59;
}

.float_btn_whatsapp_ {
    background: #25D366;
}

.float_btn_email_ {
    background: #007bff;
}

/* Responsive */
@media(max-width: 576px) {
    .float_btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .float_btn_container_ {
        right: 15px;
        bottom: 20px;
    }
}





/* ========================================== */


/* MAIN SECTION */




.form-section
{
        width: 100%;
    padding: 40px 20px;
    background: #E4FFC7;
    font-family: Arial, sans-serif;
}


.cont_form_section {
    width: 100%;
    padding: 50px 0;
    background: #f4f7fb;
    display: flex;
    justify-content: center;
}

.cont_form_container {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cont_form_title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.cont_form_subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

/* FORM */
.cont_form_box {
        width: 60%;
    margin: 40px auto;
    box-shadow: 1px 1px #75A968;
    background-color: #75A968;
    padding: 40px;
    border-radius: 10px
}

.cont_form_group {
    margin-bottom: 18px;
}

.cont_form_label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.cont_form_input,
.cont_form_textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.cont_form_textarea {
    height: 120px;
    resize: none;
}

.cont_form_input:focus,
.cont_form_textarea:focus {
    border-color: #ff5e14;
}

/* BUTTON */
.cont_form_btn {
    width: 100%;
    padding: 14px;
    background: #ff5e14;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cont_form_btn:hover {
    background: #e14d0b;
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .cont_form_container {
        padding: 20px;
    }

    .cont_form_title {
        font-size: 24px;
    }

    .cont_form_btn {
        font-size: 16px;
    }
}




/* ============================================================= */


@media (max-width: 768px) {
    .product_page_text ul li {
        text-align: left;
    }
    
    .cont_form_box {
    width: 100%;
    margin: 20px auto;
}



.home_offering_slider
{
    gap: 1px;
}


/*.home_offering_section {*/
/*    padding: 50px;*/
/*    text-align: center;*/
/*}*/


}















