*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}

body{
    font-size:14px;
}


.mycustomheader,
.mycustomheader * {
    box-sizing: border-box;
}

.mycustomheader {
    width: 100%;
    position: relative;
    z-index: 99999;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: #202020;
}
    /* =========================================================
   STICKY HEADER AFTER SCROLL
========================================================= */

    .mycustomheader .mycustom-main {
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #E9E9E9;
        transition: box-shadow .35s ease, background .35s ease, transform .35s ease;
    }


        /* Scroll hone ke baad */

        .mycustomheader .mycustom-main.mycustom-sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 99999;
            background: rgb(254 255 241);
            box-shadow: 0 8px 30px rgba(0,0,0,.12);
            backdrop-filter: blur(10px);
            animation: mycustomStickyIn .35s ease forwards;
        }


/* Sticky animation */

@keyframes mycustomStickyIn {

    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hide {
    display: none;
}

.mycustom-logo {
    max-width: 100px;
}
/* =========================================================
   TOP CONTACT BAR
========================================================= */
.mycustomheader .mycustom-topbar {
    width: 100%;
    min-height: 40px;
    background: linear-gradient( 90deg, #0d0d0d, #151515, #0d0d0d );
    overflow: hidden;
}

.mycustomheader .mycustom-topbar-inner {
    width: 100%;
    max-width: 1320px;
    min-height: 40px;
    margin: auto;
    padding: 0 clamp(15px,3vw,30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: mycustomTopIn .8s ease both;
}

.mycustomheader .mycustom-contact {
    display: flex;
    align-items: center;
    gap: clamp(15px,2.5vw,30px);
    flex-wrap: wrap;
}

.mycustomheader .mycustom-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1px;
    transition: color .3s ease, transform .3s ease;
}

    .mycustomheader .mycustom-contact-item:hover {
        color: #54d57d;
        transform: translateY(-1px);
    }

    .mycustomheader .mycustom-contact-item svg {
        width: 15px;
        height: 15px;
        stroke: #198B3F;
        fill: none;
        stroke-width: 2;
    }

.mycustomheader .mycustom-top-message {
    color: #d9d9d9;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4px;
    white-space: nowrap;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.mycustomheader .mycustom-main {
    width: 100%;
    background: rgb(254 255 241);
    border-bottom: 1px solid #E9E9E9;
    transition: box-shadow .35s ease, background .35s ease;
}

.mycustomheader.mycustom-scrolled .mycustom-main {
    box-shadow: 0 8px 35px rgba(0,0,0,.10);
    background: #ffffff;
}

.mycustomheader .mycustom-main-inner {
    width: 100%;
    max-width: 1320px;
    min-height: clamp(72px,6vw,92px);
    margin: auto;
    padding: 0 clamp(15px,3vw,30px);
    display: flex;
    align-items: center;
    gap: clamp(15px,2.5vw,35px);
}


/* =========================================================
   LOGO
========================================================= */

.mycustomheader .mycustom-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    animation: mycustomLogo .8s .15s ease forwards;
}

    .mycustomheader .mycustom-logo img {
        display: block;
        width: clamp(105px,11vw,155px);
        max-width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
    }

    .mycustomheader .mycustom-logo:hover img {
        transform: scale(1.055) translateY(-1px);
    }


/* =========================================================
   NAVIGATION
========================================================= */

.mycustomheader .mycustom-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.mycustomheader .mycustom-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: clamp(0px,.35vw,5px);
}

.mycustomheader .mycustom-nav-item {
    position: relative;
    opacity: 0;
    animation: mycustomNav .65s ease forwards;
}

    .mycustomheader .mycustom-nav-item:nth-child(1) {
        animation-delay: .25s;
    }

    .mycustomheader .mycustom-nav-item:nth-child(2) {
        animation-delay: .32s;
    }

    .mycustomheader .mycustom-nav-item:nth-child(3) {
        animation-delay: .39s;
    }

    .mycustomheader .mycustom-nav-item:nth-child(4) {
        animation-delay: .46s;
    }

    .mycustomheader .mycustom-nav-item:nth-child(5) {
        animation-delay: .53s;
    }


.mycustomheader .mycustom-nav-link {
    position: relative;
    min-height: clamp(72px,6vw,92px);
    padding: 0 clamp(8px,1vw,15px);
    display: flex;
    align-items: center;
    gap: 5px;
    color: #202020;
    text-decoration: none;
    font-size: clamp(12px,1vw,14px);
    font-weight: 500;
    letter-spacing: .1px;
    white-space: nowrap;
    transition: color .3s ease;
}


    /* underline */

    .mycustomheader .mycustom-nav-link::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 0;
        height: 3px;
        border-radius: 5px 5px 0 0;
        background: #198B3F;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .35s cubic-bezier(.2,.8,.2,1);
    }

    .mycustomheader .mycustom-nav-link:hover {
        color: #198B3F;
    }

        .mycustomheader .mycustom-nav-link:hover::after,
        .mycustomheader
        .mycustom-nav-item.mycustom-active > .mycustom-nav-link::after {
            transform: scaleX(1);
        }

.mycustomheader
.mycustom-nav-item.mycustom-active > .mycustom-nav-link {
    color: #198B3F;
}


/* =========================================================
   ARROW
========================================================= */

.mycustomheader .mycustom-arrow {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .3s ease;
}

.mycustomheader
.mycustom-has-dropdown:hover
.mycustom-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
========================================================= */

.mycustomheader .mycustom-dropdown {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    width: 235px;
    padding: 9px;
    background: #ffffff;
    border: 1px solid #E9E9E9;
    border-radius: 13px;
    box-shadow: 0 18px 50px rgba(0,0,0,.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%,12px) scale(.96);
    transform-origin: top center;
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

    .mycustomheader .mycustom-dropdown::before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        top: -6px;
        left: 50%;
        background: #ffffff;
        border-left: 1px solid #E9E9E9;
        border-top: 1px solid #E9E9E9;
        transform: translateX(-50%) rotate(45deg);
    }

.mycustomheader
.mycustom-has-dropdown:hover
.mycustom-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%,0) scale(1);
}


.mycustomheader .mycustom-dropdown-link {
    width: 100%;
    min-height: 43px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #202020;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    transition: background .3s ease, color .3s ease, padding-left .3s ease;
}

    .mycustomheader .mycustom-dropdown-link:hover {
        background: #EDF9F1;
        color: #198B3F;
        padding-left: 17px;
    }

    .mycustomheader .mycustom-dropdown-link svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        stroke: #198B3F;
        fill: none;
        stroke-width: 2;
    }

    .mycustomheader
    .mycustom-dropdown-link.mycustom-active {
        color: #198B3F;
        background: #EDF9F1;
    }


/* =========================================================
   LOGIN / REGISTER
========================================================= */

.mycustomheader .mycustom-auth {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: mycustomAuth .8s .45s ease forwards;
}

.mycustomheader .mycustom-btn {
    position: relative;
    min-width: clamp(70px,7vw,90px);
    height: clamp(37px,3.2vw,42px);
    padding: 0 clamp(11px,1.3vw,18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 7px;
    text-decoration: none;
    font-size: clamp(11px,1vw,13px);
    font-weight: 700;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

    .mycustomheader .mycustom-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transition: left .6s ease;
    }

    .mycustomheader .mycustom-btn:hover::before {
        left: 120%;
    }

    .mycustomheader .mycustom-btn:hover {
        transform: translateY(-3px);
    }

.mycustomheader .mycustom-login {
    color: #198B3F;
    background: #ffffff;
    border: 1px solid #198B3F;
}

    .mycustomheader .mycustom-login:hover {
        background: #EDF9F1;
        box-shadow: 0 8px 20px rgba(25,139,63,.15);
    }

.mycustomheader .mycustom-register {
    color: #ffffff;
    background: #198B3F;
    border: 1px solid #198B3F;
}

    .mycustomheader .mycustom-register:hover {
        background: #0F7130;
        box-shadow: 0 9px 25px rgba(25,139,63,.25);
    }

.mycustomheader .mycustom-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mycustomheader .mycustom-mobile-toggle {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease;
}

    .mycustomheader .mycustom-mobile-toggle:hover {
        background: #EDF9F1;
        border-color: #198B3F;
    }

    .mycustomheader .mycustom-mobile-toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: #111111;
        border-radius: 10px;
        transition: transform .3s ease, opacity .3s ease;
    }

        .mycustomheader
        .mycustom-mobile-toggle
        span:nth-child(1) {
            transform: translateY(-6px);
        }

        .mycustomheader
        .mycustom-mobile-toggle
        span:nth-child(3) {
            transform: translateY(6px);
        }

.mycustomheader.mycustom-menu-open
.mycustom-mobile-toggle
span:nth-child(1) {
    transform: rotate(45deg);
}

.mycustomheader.mycustom-menu-open
.mycustom-mobile-toggle
span:nth-child(2) {
    opacity: 0;
}

.mycustomheader.mycustom-menu-open
.mycustom-mobile-toggle
span:nth-child(3) {
    transform: rotate(-45deg);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes mycustomTopIn {

    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mycustomLogo {

    from {
        opacity: 0;
        transform: translateX(-30px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes mycustomNav {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mycustomAuth {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media(max-width:1100px) {

    .mycustomheader .mycustom-main-inner {
        gap: 18px;
    }

    .mycustomheader .mycustom-nav-link {
        padding: 0 8px;
        font-size: 12px;
    }

        .mycustomheader .mycustom-nav-link::after {
            left: 8px;
            right: 8px;
        }

    .mycustomheader .mycustom-logo img {
        width: 125px;
    }

    .mycustomheader .mycustom-btn {
        min-width: 68px;
        padding: 0 10px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:950px) {

    .mycustomheader .mycustom-nav-link {
        padding: 0 6px;
        font-size: 11.5px;
    }

    .mycustomheader .mycustom-main-inner {
        justify-content: space-between;
    }

    .mycustomheader .mycustom-logo img {
        width: 115px;
    }

    .mycustomheader .mycustom-auth {
        gap: 5px;
    }

    .mycustomheader .mycustom-btn {
        min-width: 62px;
        padding: 0 8px;
        font-size: 10.5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:850px) {

    .mycustomheader .mycustom-topbar-inner {
        justify-content: center;
        padding: 7px 15px;
    }

    .mycustomheader .mycustom-top-message {
        display: none;
    }

    .mycustomheader .mycustom-main-inner {
        min-height: 74px;
        padding: 0 18px;
    }

    .mycustomheader .mycustom-logo img {
        width: 120px;
    }


    /* Hide desktop auth */

    .mycustomheader .mycustom-auth {
        display: none;
    }


    /* Hamburger */

    .mycustomheader .mycustom-mobile-toggle {
        display: flex;
    }


    /* Mobile Navigation */

    .mycustomheader .mycustom-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: block;
        background: #ffffff;
        border-bottom: 1px solid #E9E9E9;
        box-shadow: 0 18px 35px rgba(0,0,0,.11);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .5s ease, opacity .35s ease;
    }

    .mycustomheader.mycustom-menu-open
    .mycustom-nav {
        max-height: 650px;
        opacity: 1;
    }

    .mycustomheader .mycustom-nav-list {
        display: block;
        width: 100%;
        padding: 11px 20px 18px;
    }


    .mycustomheader .mycustom-nav-item {
        opacity: 1;
        animation: none;
    }


    .mycustomheader .mycustom-nav-link {
        width: 100%;
        min-height: 49px;
        padding: 0 12px;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
    }


        /* Mobile active indicator */

        .mycustomheader .mycustom-nav-link::after {
            left: 0;
            right: auto;
            top: 50%;
            bottom: auto;
            width: 4px;
            height: 27px;
            transform: translateY(-50%) scaleY(0);
            transform-origin: center;
        }

    .mycustomheader
    .mycustom-nav-item.mycustom-active > .mycustom-nav-link::after {
        transform: translateY(-50%) scaleY(1);
    }


    /* Mobile dropdown */

    .mycustomheader .mycustom-dropdown {
        position: static;
        width: 100%;
        display: none;
        padding: 3px 0 5px 13px;
        background: #fafafa;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .mycustomheader
    .mycustom-has-dropdown.mycustom-dropdown-open > .mycustom-dropdown {
        display: block;
    }

    .mycustomheader .mycustom-dropdown::before {
        display: none;
    }

    .mycustomheader .mycustom-dropdown-link {
        min-height: 43px;
        font-size: 12px;
    }

    .mycustomheader
    .mycustom-has-dropdown.mycustom-dropdown-open
    .mycustom-arrow {
        transform: rotate(180deg);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:550px) {

    .mycustomheader .mycustom-topbar {
        min-height: auto;
    }

    .mycustomheader .mycustom-topbar-inner {
        min-height: 36px;
        padding: 6px 10px;
    }

    .mycustomheader .mycustom-contact {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .mycustomheader .mycustom-contact-item {
        font-size: 10px;
    }

        .mycustomheader .mycustom-contact-item svg {
            width: 13px;
            height: 13px;
        }

    .mycustomheader .mycustom-main-inner {
        min-height: 67px;
        padding: 0 13px;
    }

    .mycustomheader .mycustom-logo img {
        width: 105px;
    }

    .mycustomheader .mycustom-mobile-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media(max-width:380px) {

    .mycustomheader .mycustom-contact {
        gap: 8px;
    }

    .mycustomheader .mycustom-contact-item {
        font-size: 9px;
    }

    .mycustomheader .mycustom-main-inner {
        padding: 0 10px;
    }

    .mycustomheader .mycustom-logo img {
        width: 78px;
    }

    .mycustomheader .mycustom-mobile-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
========================================================= */

@media(prefers-reduced-motion:reduce) {

    .mycustomheader *,
    .mycustomheader *::before,
    .mycustomheader *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
.mynewfooter {
    background-color: #ffffff;
    color: #111111;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #18773d;
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.04);
/*    margin-top: 50px;*/
    font-family: 'Poppins', sans-serif;
}

    /* Decorative Background Pattern */
    .mynewfooter::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(#18773d 0.4px, transparent 0.4px);
        background-size: 20px 20px;
        opacity: 0.03;
        pointer-events: none;
    }

    .mynewfooter .veg-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px 20px 20px;
        position: relative;
        z-index: 2;
    }

    .mynewfooter .veg-footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    /* Staggered Animation Classes */
    .mynewfooter .footer-anim {
        opacity: 0;
        transform: translateY(25px);
        animation: footerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .mynewfooter .f-delay-1 {
        animation-delay: 0.1s;
    }

    .mynewfooter .f-delay-2 {
        animation-delay: 0.25s;
    }

    .mynewfooter .f-delay-3 {
        animation-delay: 0.4s;
    }

    .mynewfooter .f-delay-4 {
        animation-delay: 0.55s;
    }

    .mynewfooter .f-delay-5 {
        animation-delay: 0.7s;
    }

    /* Column 1: Brand Info */
    .mynewfooter .veg-footer-brand .brand-logo-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        text-decoration: none;
    }

    .mynewfooter .veg-footer-brand .brand-logo-box {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #111111, #18773d);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 15px rgba(24, 119, 61, 0.2);
        transition: transform 0.3s ease;
    }

        .mynewfooter .veg-footer-brand .brand-logo-box:hover {
            transform: rotate(-6deg) scale(1.05);
        }

        .mynewfooter .veg-footer-brand .brand-logo-box img {
            max-width: 75%;
            max-height: 75%;
            object-fit: contain;
        }

    .mynewfooter .veg-footer-brand .brand-name {
        font-size: 24px;
        font-weight: 800;
        color: #111111;
        letter-spacing: -0.5px;
    }

        .mynewfooter .veg-footer-brand .brand-name span {
            color: #18773d;
        }

    .mynewfooter .veg-footer-brand p {
        color: #555555;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Social Icons */
    .mynewfooter .veg-social-links {
        display: flex;
        gap: 10px;
    }

        .mynewfooter .veg-social-links a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #fbf8ef;
            color: #111111;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(24, 119, 61, 0.15);
        }

            .mynewfooter .veg-social-links a svg {
                width: 16px;
                height: 16px;
                fill: currentColor;
                transition: fill 0.3s ease;
            }

            .mynewfooter .veg-social-links a:hover {
                background: #18773d;
                color: #ffffff;
                transform: translateY(-3px);
                box-shadow: 0 5px 12px rgba(24, 119, 61, 0.3);
            }

    /* Column Headings */
    .mynewfooter .veg-footer-col h4 {
        font-size: 16px;
        font-weight: 700;
        color: #111111;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 8px;
    }

        .mynewfooter .veg-footer-col h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 3px;
            background: #18773d;
            border-radius: 2px;
        }

    /* Links List */
    .mynewfooter .veg-footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mynewfooter .veg-footer-links li {
            margin-bottom: 12px;
        }

            .mynewfooter .veg-footer-links li a {
                color: #555555;
                text-decoration: none;
                font-size: 14px;
/*                font-weight: 500;
*/                transition: all 0.25s ease;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

                .mynewfooter .veg-footer-links li a svg {
                    width: 12px;
                    height: 12px;
                    fill: #555555;
                    transition: fill 0.25s ease, transform 0.25s ease;
                }

                .mynewfooter .veg-footer-links li a:hover {
                    color: #18773d;
                    transform: translateX(5px);
                }

                    .mynewfooter .veg-footer-links li a:hover svg {
                        fill: #18773d;
                    }

    /* Newsletter Section */
    .mynewfooter .veg-newsletter p {
        color: #555555;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .mynewfooter .veg-newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mynewfooter .veg-newsletter-input {
        width: 100%;
        height: 46px;
        padding: 0 15px;
        border-radius: 10px;
        border: 2px solid #eaeaea;
        background: #fbf8ef;
        font-size: 14px;
        outline: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

        .mynewfooter .veg-newsletter-input:focus {
            border-color: #18773d;
            box-shadow: 0 0 0 4px rgba(24, 119, 61, 0.1);
            background: #ffffff;
        }

    .mynewfooter .veg-newsletter-btn {
        height: 46px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, #111111, #18773d);
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(24, 119, 61, 0.2);
    }

        .mynewfooter .veg-newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(24, 119, 61, 0.3);
            background: linear-gradient(135deg, #000000, #22934d);
        }

    /* Bottom Bar */
    .mynewfooter .veg-footer-bottom {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding-top: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #555555;
    }

    .mynewfooter .veg-footer-bottom-links {
        display: flex;
        gap: 20px;
    }

        .mynewfooter .veg-footer-bottom-links a {
            color: #555555;
            text-decoration: none;
            transition: color 0.2s;
        }

            .mynewfooter .veg-footer-bottom-links a:hover {
                color: #18773d;
            }

/* Animation Keyframes */
@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .mynewfooter .veg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .mynewfooter .veg-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mynewfooter .veg-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}