/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */


:root {
    --primary-color: #188244;
    --primary-dark: #5b322e;
    --secondary-color: #b3de2b;
    --secondary-dark: #e86421;
    --accent-color: #f4f7e9;

    --dark-color: #20251a;
    --text-color: #5f635a;
    --light-color: #ffffff;
    --border-color: #e7e9df;

    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;

    --transition: all 0.3s ease;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --container-width: 1320px;
    --section-padding: 90px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    border: 0;
    cursor: pointer;
}
.section-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.sub-title {
    display: inline-block;
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.section-description {
    max-width: 750px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
}

.btn-primary {
    color: var(--light-color);
    background: var(--primary-color);
}

.btn-primary:hover {
    color: var(--light-color);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--light-color);
    background: var(--secondary-dark);
}

.btn-secondary:hover {
    color: var(--light-color);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    color: var(--light-color);
    background: var(--primary-color);
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
    :root {
        --section-padding: 75px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 65px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 55px 0;
    }

    body {
        font-size: 15px;
    }

    .container {
        max-width: 540px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .sub-title {
        font-size: 13px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .btn {
        min-height: 46px;
        padding: 11px 24px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 50px 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title {
        font-size: 25px;
    }
}


/* Heade-section */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 10px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: white;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: 17px;
    font-weight: normal !important;
    outline: none;
}

/* =========================================================
   HEADER
========================================================= */

.nv-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

.nv-header-row {
    min-height: 125px;
}


/* =========================================================
   LOGO
========================================================= */

.nv-logo {
    display: flex;
    align-items: center;
    padding: 0 75px;
}

.nv-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nv-logo img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.nv-desktop-nav {
    width: 100%;
}

.nv-desktop-nav .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nv-desktop-nav .nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nv-desktop-nav .nav-menu li a {
    display: inline-flex;
    align-items: center;

    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.nv-desktop-nav .nav-menu li a:hover {
    color: #b8df42;
}


/* =========================================================
   DESKTOP DROPDOWN ARROW
========================================================= */

.nv-desktop-nav .menu-item-has-children > a::after {
    content: "";

    width: 7px;
    height: 7px;

    margin-left: 9px;
    margin-top: -4px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(45deg);

    transition: 0.3s ease;
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.nv-desktop-nav .menu-item-has-children {
    position: relative;
}

.nv-desktop-nav .menu-item-has-children > .sub-menu {
    position: absolute;

    top: calc(100% + 20px);
    left: 50%;

    min-width: 230px;

    margin: 0;
    padding: 12px 0;

    list-style: none;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 99999;
}

.nv-desktop-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.nv-desktop-nav .sub-menu li {
    width: 100%;
}

.nv-desktop-nav .sub-menu li a {
    display: flex;

    width: 100%;

    padding: 11px 18px;

    color: #333333;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    white-space: normal;

    transition: 0.25s ease;
}

.nv-desktop-nav .sub-menu li a:hover {
    color: #526c1d;
    background: #f3f6eb;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.nv-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 20px;
}


/* =========================================================
   GET IN TOUCH
========================================================= */

.nv-header-contact {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 55px;

    padding: 0 30px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;

    color: #ffffff;
    background: transparent;

    text-decoration: none;

    font-size: 18px;
    font-weight: 500;

    white-space: nowrap;

    transition: all 0.3s ease;

    margin: 0 75px;
}

.nv-header-contact:hover {
    color: #fff;

    background: #b3de2b;

    border-color: #168243;
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.nv-menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;

    background: transparent;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;
}

.nv-menu-toggle span {
    display: block;

    width: 30px;
    height: 2px;

    background: #ffffff;

    transition: all 0.3s ease;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.nv-mobile-overlay {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 99998;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* JS OPEN CLASS */

.nv-mobile-overlay.nv-mobile-overlay-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   MOBILE MENU PANEL
========================================================= */

.nv-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 88vw);
    height: 100vh;

    background: #ffffff;

    z-index: 99999;

    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform 0.4s ease,
        visibility 0.4s ease;

    overflow-y: auto;

    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
}


/* JS OPEN CLASS */

.nv-mobile-menu.nv-mobile-menu-open {
    transform: translateX(0);

    visibility: visible;
}


/* =========================================================
   BODY LOCK WHEN MENU OPEN
========================================================= */

body.nv-mobile-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE MENU INNER
========================================================= */

.nv-mobile-menu-inner {
    min-height: 100%;

    padding: 30px 28px 40px;
}


/* =========================================================
   MOBILE MENU HEADER
========================================================= */

.nv-mobile-menu-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #e6e6e6;
}

.nv-mobile-menu-head > span {
    color: #176b16;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.nv-menu-close {
    position: relative;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f2f4ec;

    cursor: pointer;
}

.nv-menu-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    background: #176b16;

    transform-origin: center;
}

.nv-menu-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.nv-menu-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.nv-mobile-nav {
    padding-top: 25px;
}

.nv-mobile-nav .nv-mobile-menu-list {
    display: flex;

    flex-direction: column;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nv-mobile-nav .nv-mobile-menu-list li {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    border-bottom: 1px solid #eeeeee;
}


/* =========================================================
   MOBILE MAIN MENU LINK
========================================================= */

.nv-mobile-nav .nv-mobile-menu-list > li > a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 55px;

    padding: 15px 45px 15px 5px;

    color: #176b16;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.nv-mobile-nav .nv-mobile-menu-list > li > a:hover {
    color: #ff7b32;

    padding-left: 10px;
}

.nv-submenu-toggle {
    position: absolute;

    top: 7px;
    right: 0;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 5;
}


/* Arrow */

.nv-submenu-toggle::before {
    content: "";

    width: 9px;
    height: 9px;

    border-right: 2px solid #176b16;
    border-bottom: 2px solid #176b16;

    transform: rotate(45deg);

    transition: transform 0.3s ease;
}


/* Arrow when submenu open */

.menu-item.nv-submenu-open > .nv-submenu-toggle::before {
    transform: rotate(225deg);
}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.nv-mobile-nav .nv-mobile-menu-list .sub-menu {
    display: none;

    width: 100%;

    margin: 0;
    padding: 5px 0 10px;

    list-style: none;

    background: #f3f6eb;
}


/* OPEN SUBMENU */

.nv-mobile-nav
.nv-mobile-menu-list
.menu-item.nv-submenu-open
> .sub-menu {
    display: block;
}


.nv-mobile-nav
.nv-mobile-menu-list
.sub-menu li {
    border-bottom: 0;
}

.nv-mobile-nav
.nv-mobile-menu-list
.sub-menu li a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 45px;

    padding: 10px 15px;

    color: #4d4d4d;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    transition: all 0.25s ease;
}

.nv-mobile-nav
.nv-mobile-menu-list
.sub-menu li a:hover {
    color: #176b16;

    background: rgba(23, 107, 22, 0.08);

    padding-left: 20px;
}


.nv-mobile-nav
.nv-mobile-menu-list
.sub-menu
.sub-menu {
    background: #e9eedc;

    padding-left: 10px;
}

.nv-mobile-contact {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;

    margin-top: 30px;

    border-radius: 50px;

    background: #ff7b32;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.nv-mobile-contact:hover {
    color: #ffffff;

    background: #176b16;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .nv-logo {
        padding: 0 45px;
    }

    .nv-logo img {
        width: 175px;
    }

    .nv-desktop-nav .nav-menu {
        gap: 25px;
    }

    .nv-desktop-nav .nav-menu li a {
        font-size: 16px;
    }

    .nv-header-contact {
        min-width: 180px;

        height: 52px;

        margin: 0 45px;

        font-size: 16px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 1199px) {

    .nv-header-row {
        min-height: 100px;
    }

    .nv-logo {
        padding: 0 30px;
    }

    .nv-logo img {
        width: 160px;
    }

    /* Hide desktop navigation */

    .nv-desktop-nav {
        display: none;
    }

    /* Hide desktop contact */

    .nv-header-contact {
        display: none;
    }

    /* Show hamburger */

    .nv-menu-toggle {
        display: flex;

        margin-right: 25px;
    }

    .nv-header-actions {
        gap: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nv-header-row {
        min-height: 85px;
    }

    .nv-logo {
        padding: 0 20px;
    }

    .nv-logo img {
        width: 135px;
    }

    .nv-menu-toggle {
        width: 45px;
        height: 45px;

        margin-right: 15px;
    }

    .nv-menu-toggle span {
        width: 28px;
    }

    .nv-mobile-menu {
        width: 340px;

        max-width: 90vw;
    }

    .nv-mobile-menu-inner {
        padding:
            25px 22px 35px;
    }

    .nv-mobile-menu-head {
        padding-bottom: 20px;
    }

    .nv-mobile-menu-head > span {
        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .nv-logo {
        padding-left: 15px;
    }

    .nv-logo img {
        width: 125px;
    }

    .nv-menu-toggle {
        margin-right: 8px;
    }

    .nv-mobile-menu {
        width: 315px;

        max-width: 88vw;
    }

    .nv-mobile-menu-inner {
        padding:
            22px 20px 30px;
    }

    .nv-mobile-nav .nv-mobile-menu-list > li > a {
        font-size: 16px;
    }

    .nv-mobile-nav
    .nv-mobile-menu-list
    .sub-menu li a {
        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 375px) {

    .nv-logo img {
        width: 115px;
    }

    .nv-mobile-menu {
        width: 300px;

        max-width: 90vw;
    }

}

/* =========================================================
   BODY LOCK WHEN MOBILE MENU OPEN
========================================================= */

body.nv-menu-open {
    overflow: hidden;
}


/* =========================================================
   BANNER
========================================================= */

.nv-banner {
    position: relative;

    width: 100%;
    min-height: 821px;

    display: flex;
    align-items: center;

    background-image: url(https://novavedic.com/wp-content/uploads/2026/08/Web_Photo_Editor-scaled.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


.nv-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgb(24 31 18 / 53%) 0%, rgb(24 31 18 / 45%) 30%, rgb(24 31 18 / 22%) 55%, rgb(24 31 18 / 0%) 75%, rgba(24, 31, 18, 0) 100%);
}

/* =========================================================
   BANNER CONTENT
========================================================= */

.nv-banner-content {
    position: relative;

    width: 100%;

    z-index: 2;

    padding-top: 130px;
    padding-bottom: 70px;
}

.nv-banner-inner {
    padding: 0 0 0 75px;
}

/* =========================================================
   BANNER TITLE
========================================================= */
.nv-banner-title {
    margin: 0 0 38px;
    color: #ffffff;
    font-size: 66px;
    line-height: 88px;
    font-weight: 400;
    text-transform: uppercase;
}
/* =========================================================
   BANNER DESCRIPTION
========================================================= */

.nv-banner-description {
    max-width: 1050px;

    margin: 0 0 42px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   BANNER ACTION BOX
========================================================= */

.nv-banner-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 860px;

    min-height: 125px;

    padding: 25px 60px;

    border-radius: 10px;

    background: rgba(61, 93, 12, 0.78);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* =========================================================
   ACTION TEXT
========================================================= */

.nv-banner-action-text {
    color: #ffffff;

    font-size: 27px;
    line-height: 1.3;

    font-weight: 600;
}


/* =========================================================
   ACTION BUTTON
========================================================= */

.nv-banner-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 275px;
    height: 58px;
    padding: 0 35px;
    border-radius: 50px;
    background: #b3de2b;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nv-banner-action-btn:hover {
    background: #ffffff;
    color: #176b16;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1399px) {

    .nv-header-row {
        min-height: 115px;
    }

    .nv-logo img {
        width: 190px;
    }

    .nv-desktop-nav .nav-menu {
        gap: 28px;
    }

    .nv-desktop-nav .nav-menu li a {
        font-size: 16px;
    }

    .nv-header-contact {
        min-width: 190px;
        height: 56px;
        font-size: 16px;
    }

    .nv-banner {
        min-height: 720px;
    }

    .nv-banner-description {
        font-size: 20px;
    }

    .nv-banner-action {
        max-width: 800px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nv-header-row {
        min-height: 95px;
    }

    .nv-logo img {
        width: 165px;
    }

    /* Desktop menu hide */
    .nv-desktop-nav {
        display: none;
    }

    /* Desktop button hide */
    .nv-header-contact {
        display: none;
    }

    /* Toggler show */
    .nv-menu-toggle {
        display: flex;
    }

    .nv-header-actions {
        justify-content: flex-end;
    }

    .nv-banner {
        min-height: 720px;
    }

    .nv-banner-content {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .nv-banner-title {
        font-size: clamp(42px, 6vw, 62px);
    }

    .nv-banner-description {
        max-width: 800px;

        font-size: 18px;
        line-height: 1.7;
    }

    .nv-banner-action {
        max-width: 750px;
        min-height: 110px;

        padding: 22px 35px;
    }

    .nv-banner-action-text {
        font-size: 22px;
    }

    .nv-banner-action-btn {
        min-width: 220px;
        height: 54px;

        font-size: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nv-header-row {
        min-height: 85px;
    }

    .nv-logo img {
        width: 145px;
    }

    .nv-menu-toggle {
        width: 45px;
        height: 45px;
    }

    .nv-banner {
        min-height: 720px;

        background-position: center center;
    }

    .nv-banner-content {
        padding-top: 135px;
        padding-bottom: 45px;
    }

    .nv-banner-inner {
        width: 100%;
    }

    .nv-banner-title {
        margin-bottom: 25px;

        font-size: clamp(35px, 9vw, 50px);
			font-weight:600 !important;
        line-height: 1.15;
    }

    .nv-banner-description {
        margin-bottom: 30px;

        font-size: 16px;
        line-height: 1.65;
    }

    .nv-banner-action {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;

        gap: 20px;

        max-width: 100%;
        min-height: auto;

        padding: 25px;
    }

    .nv-banner-action-text {
        text-align: center;

        font-size: 20px;
    }

    .nv-banner-action-btn {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .nv-header-row {
        min-height: 78px;
    }

    .nv-logo img {
        width: 125px;
    }

    .nv-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .nv-menu-toggle span {
        width: 24px;
    }

    .nv-banner {
        min-height: 680px;
    }

    .nv-banner-content {
        padding-top: 3px;
    }

    .nv-banner-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .nv-banner-description {
        font-size: 14px;
    }

    .nv-banner-action {
        padding: 22px 18px;
    }

    .nv-banner-action-text {
        font-size: 18px;
    }

    .nv-mobile-menu {
        width: 90%;
    }
}
/* About us */

.about-section {
    background: var(--accent-color);
    padding: var(--section-padding);
}
.about-section .row {
    min-height: 690px;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    height: 620px;
}

.about-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 88%;
    height: 560px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 53%;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 0;
}

.about-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .sub-title {
    display: inline-flex;
    align-items: center;
    padding: 13px 23px;
    margin-bottom: 35px;
    border-radius: var(--radius-pill);
    background: #e6eadf;
    color: var(--primary-dark);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}
.about-content .section-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.about-content .section-title span {
    color: var(--secondary-color);
}

.about-content .section-description {
    max-width: 760px;
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-color);
}
.btn-secondary {
    min-width: 180px;
    min-height: 50px;
    padding: 15px 0px;
    color: var(--light-color);
    background: var(--primary-dark);
    font-size: 16px;
    font-weight: 500;
    border: none;
}

 .btn-secondary:hover {
    color: var(--light-color);
    background: var(--primary-color);
}

@media (max-width: 1199px) {

    .about-section .row {
        min-height: 620px;
    }

    .about-image-wrap {
        height: 560px;
    }

    .about-main-image {
        height: 510px;
    }

    .about-overlay-image {
        height: 250px;
    }

    .about-content {
        padding-left: 45px;
    }

    .about-content .section-title {
        font-size: 42px;
    }

    .about-content .section-description {
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .about-section .row {
        min-height: auto;
    }

    .about-image-wrap {
        height: 570px;
        margin-bottom: 60px;
    }

    .about-main-image {
        width: 88%;
        height: 520px;
    }

    .about-overlay-image {
        width: 53%;
        height: 250px;
    }

    .about-content {
        padding-left: 0;
        padding-right: 0;
    }

    .about-content .section-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .about-image-wrap {
        height: 430px;
        margin-bottom: 45px;
    }

    .about-main-image {
        width: 90%;
        height: 390px;
    }

    .about-overlay-image {
        width: 55%;
        height: 185px;
        border: 5px solid var(--accent-color);
    }

  .about-content .sub-title {
    margin-bottom: 25px;
    padding: 11px 18px;
    font-size: 13px;
    margin-top: 28px;
}

    .about-content .section-title {
        margin-bottom: 22px;
        font-size: 32px;
        line-height: 1.12;
    }

    .about-content .section-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-content .btn-secondary {
        min-width: 170px;
        min-height: 50px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {

    .about-image-wrap {
        height: 350px;
    }

    .about-main-image {
        height: 315px;
    }

    .about-overlay-image {
        height: 150px;
    }

    .about-content .section-title {
        font-size: 28px;
    }
}

/* Marquee-section  */

.marquee-section {
    padding: 0;
    overflow: hidden;
}

.marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-row-light {
    background: #b3de2b52;
    color: var(--primary-dark);
}
.marquee-row-orange {
    background: var(--primary-dark);
    color: var(--light-color);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-left 28s linear infinite;
}

.marquee-reverse {
    animation: marquee-right 28s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    padding: 10px 35px;
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
    text-transform: uppercase;
}

.marquee-row-light .marquee-content span {
    color: var(--dark-color);
}

.marquee-row-orange .marquee-content span {
    color: var(--light-color);
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 1199px) {
    .marquee-content span {
        padding: 9px 28px;
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .marquee-content span {
        padding: 8px 25px;
        font-size: 34px;
    }

    .marquee-track {
        animation-duration: 24s;
    }
}

@media (max-width: 767px) {
    .marquee-content span {
        padding: 8px 20px;
        font-size: 26px;
    }

    .marquee-track {
        animation-duration: 20s;
    }
}

@media (max-width: 575px) {
    .marquee-content span {
        padding: 7px 16px;
        font-size: 21px;
    }

    .marquee-track {
        animation-duration: 18s;
    }
}

/* Services-section */

.services-section {
    padding: 0;
   background: #047232;
}

.services-section .row {
    margin: 0;
}

.services-section [class*="col-"] {
    padding: 0;
}

.service-image,
.service-content {
    position: relative;
    width: 100%;
    height: auto;
}

.service-image {
    overflow: hidden;
}

.service-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: rgb(13 79 0 / 0%);
    z-index: 1;
}

.service-image:hover > img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.service-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 48px;
    background: #047232;
    color: var(--light-color);
}
.service-number {
    display: block;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fefefe80;
    padding-top: 12px;
}
.service-content h3 {
    max-width: 470px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--light-color);
}

.service-content p {
    max-width: 500px;
    margin-bottom: 28px;
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    text-transform: none;
    color: var(--light-color);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 52px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
}
.service-btn:hover {
    color: #0d4f00;
    background: var(--light-color);
    border-color: var(--light-color);
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .service-image,
    .service-content {
        height: 400px;
    }

    .service-content {
        padding: 40px 35px;
    }

    .service-content h3 {
        font-size: 30px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-icon img {
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 991px) {
    .service-image,
    .service-content {
        height: 400px;
    }

    .service-content {
        padding: 40px 35px;
    }

    .service-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-image {
        height: 360px;
    }

    .service-content {
        height: auto;
        min-height: 370px;
        padding: 45px 30px;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-icon {
        width: 85px;
        height: 85px;
    }

    .service-icon img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .service-image {
        height: 320px;
    }

    .service-content {
        min-height: 380px;
        padding: 40px 25px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .service-btn {
        min-width: 170px;
        min-height: 50px;
        font-size: 14px;
    }
}

/* Product-section */

.products-section {
    background: var(--accent-color);
	padding:var(--section-padding);
}

.products-heading {
    max-width: 800px;
    margin: 0 auto 65px;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    padding: 13px 23px;
    margin-bottom: 35px;
    border-radius: var(--radius-pill);
    background: #e6eadf;
    color: var(--primary-dark);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}
.products-heading .section-title { 
    font-size: 50px;
    line-height: 61px;
}
.products-heading .section-title span {
    color: #b3de2b;
}
.products-carousel {
    position: relative;
}

.product-item {
    padding: 0 15px;
}

.product-card {
    overflow: hidden;
    background: var(--light-color);
    border: 1px solid #ece9e1;
    border-radius: var(--radius-md);
}

.product-image {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: var(--light-color);
}

.product-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image > img {
    transform: scale(1.03);
}

.product-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 35%;
    background: linear-gradient(
        to bottom,
        rgba(13, 79, 0, 0),
        rgba(13, 79, 0, 0.92)
    );
}

.product-leaf {
    position: absolute;
    bottom: 32px;
    left: 50%;
    z-index: 2;
    width: 60px;
    height: 60px;
    transform: translateX(-50%);
}

.product-leaf img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image h3 {
    position: absolute;
    right: 10px;
    bottom: -1px;
    left: 10px;
    z-index: 3;
    margin: 0;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}
.product-content {
    min-height: 115px;
    padding: 24px 25px;
    background: #195e0d;
}
.product-content p {
    display: block;
    margin: 0;
    color: var(--light-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

.products-carousel .owl-nav {
    margin: 0;
}

.products-carousel .owl-nav button.owl-prev,
.products-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1;
    transform: translateY(-50%);
    transition: var(--transition);
}

.products-carousel .owl-nav button.owl-prev {
    left: -5px;
}

.products-carousel .owl-nav button.owl-next {
    right: -5px;
}

.products-carousel .owl-nav button:hover {
    color: var(--light-color);
    background: var(--primary-color);
}

.products-carousel .owl-dots {
    margin-top: 25px;
}

.products-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #cbd2c3;
}

.products-carousel .owl-dot.active span {
    background: var(--primary-color);
}

@media (max-width: 1199px) {
    .products-heading {
        margin-bottom: 55px;
    }

    .products-heading .section-title {
        font-size: 48px;
    }

    .product-image {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .products-heading .section-title {
        font-size: 40px;
    }

    .product-image {
        height: 340px;
    }

    .product-content {
        min-height: 120px;
    }
}

@media (max-width: 767px) {
    .products-heading {
        margin-bottom: 45px;
    }

    .products-heading .sub-title {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .products-heading .section-title {
        font-size: 32px;
    }

    .product-item {
        padding: 0 25px;
    }

    .product-image {
        height: 330px;
    }

    .product-content {
        min-height: 110px;
        padding: 22px;
    }

    .product-content p {
        font-size: 14px;
    }

    .products-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .products-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

@media (max-width: 575px) {
    .products-heading .section-title {
        font-size: 28px;
    }

    .product-image {
        height: 310px;
    }

    .product-image h3 {
        font-size: 22px;
    }
}

/* Commitiment-section */

.commitment-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
    background: url("https://novavedic.com/wp-content/uploads/2026/08/bg-veda.jpeg") center center / cover no-repeat;
}

.commitment-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(22, 62, 14, 0.58);
}

.commitment-section .container {
    position: relative;
    z-index: 1;
}

.commitment-heading {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
}

.commitment-section .section-title span {
    color: #fff;
}

.commitment-section .row {
    position: relative;
}

.commitment-section .col-lg-4 {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
}

.commitment-card {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px 22px 18px 45px;
    overflow: hidden;
    border-radius: 5px;
    background: #0c5a07;
    transition: all 0.3s ease;
}

.commitment-orange {
    background: var(--primary-dark);
}

.commitment-card:hover {
    transform: translateY(-4px);
}

.commitment-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 90px;
}

.commitment-icon {
    position: absolute;
    top: 30px;
    left: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21%;
    height: auto;
}
.commitment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.commitment-number {
    position: absolute;
    top: 25px;
    right: 22px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: rgb(255 255 255 / 26%);
}
.commitment-card h3 {
    margin: 0 20px 8px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.commitment-card p {
    color: #fff;
}

.commitment-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

@media (max-width: 1199px) {

    .commitment-section {
        padding: 65px 0;
    }

    .commitment-section .section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {

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

    .commitment-heading {
        margin-bottom: 30px;
    }

    .commitment-section .section-title {
        font-size: 34px;
    }

}

@media (max-width: 767px) {

    .commitment-section {
        padding: 50px 0;
    }

    .commitment-heading {
        margin-bottom: 25px;
    }

    .commitment-section .section-title {
        font-size: 29px;
    }

    .commitment-section .sub-title {
        font-size: 13px;
    }

    .commitment-card {
        height: auto;
    }
}

@media (max-width: 575px) {

    .commitment-section {
        padding: 45px 0;
    }

    .commitment-section .section-title {
        font-size: 25px;
    }
}

/* Footer-section */

.main-footer {
    position: relative;
    background: #0c4d00;
    color: #fff;
    overflow: hidden;
}

.footer-main {
    position: relative;
    padding: 106px 3.5% 125px;
    background: url(https://novavedic.com/wp-content/uploads/2026/08/vedic-footer.png);
}
.footer-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    background: url("YOUR-FOOTER-PATTERN-URL") center bottom / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.footer-main .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 30%;
    height: auto;
    display: block;
}

.footer-about p {
    max-width: 462px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 35px;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ff7b32;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 600;
}

.footer-links ul {
    padding: 22px 0 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #b3de2b;
}

.footer-contact {
    padding-left: 10px;
}

.footer-contact-item {
    margin-bottom: 30px;
}

.footer-contact-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.footer-contact-title i {
    width: 22px;
    color: #b3de2b;
    font-size: 21px;
    text-align: center;
}
.footer-contact-title h3 {
    font-size: 23px;
}

.footer-contact-item > a,
.footer-contact-item > p {
    display: block;
    margin: 0 0 4px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 30px;
    text-decoration: none;
}

.footer-contact-item > a:hover {
    color: #b3de29;
}

.footer-contact-item p {
    max-width: 620px;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    padding: 25px 3.5%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 57, 0, 0.72);
}

.copyright {
    margin: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.5;
}

.footer-policy {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

.footer-policy a {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-policy a:hover {
    color: #ff7934;
}

@media (max-width: 1399px) {
    .footer-main {
        padding: 75px 3% 110px;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-about p {
        font-size: 18px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 23px;
    }

    .footer-links a,
    .footer-contact-item > a,
    .footer-contact-item > p {
        font-size: 17px;
    }

    .copyright,
    .footer-policy a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .footer-main {
        padding: 65px 4% 80px;
    }

    .footer-about p {
        max-width: 600px;
    }

    .footer-contact {
        padding-left: 0;
    }

    .footer-bottom {
        padding: 22px 4%;
    }

    .footer-policy {
        justify-content: flex-start;
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 55px 20px 65px;
    }

    .footer-logo {
        margin-bottom: 22px;
    }

    .footer-logo img {
        width: 175px;
    }

    .footer-about p {
        font-size: 16px;
        line-height: 1.7;
    }

    .footer-social {
        gap: 27px;
        margin-top: 25px;
    }

    .footer-social a {
        font-size: 19px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 21px;
    }

    .footer-links ul {
        padding-top: 16px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a,
    .footer-contact-item > a,
    .footer-contact-item > p {
        font-size: 15px;
    }

    .footer-contact-title {
        margin-bottom: 7px;
    }

    .footer-contact-item {
        margin-bottom: 25px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-policy {
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-policy a {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 50px 18px 0px;
    }

    .footer-logo img {
        width: 155px;
    }

    .footer-about p {
        font-size: 15px;
    }

    .footer-social {
        gap: 23px;
    }

    .footer-contact-title h3 {
        font-size: 19px;
    }

    .footer-contact-item > a,
    .footer-contact-item > p,
    .footer-links a {
        font-size: 14px;
    }

    .footer-policy {
        gap: 18px;
    }
}
/* Testimonial-section */

section.testimonial {
    padding: var(--section-padding);
}
img.img-fluid.testimonial-img {
    border-radius: 13px;
}

@media(max-width:767px){
	.nv-banner-inner{
		padding:0;
	}
	.nv-logo {
     padding: 0 0; 
}
	 .section-title {
    font-size: 30px !important;
    line-height: 45px !important;
}
	section.section.about-section.pt-0 {
    padding: 0;
}
	.footer-main {
    background: #0c4d00;
}
	.nv-header-actions {
    position: absolute;
    right: 0;
    top: 24px;
}
	.nv-banner {
    position: relative;
    width: 100%;
  
    display: flex;
    align-items: center;
    background-image: url(https://novavedic.com/wp-content/uploads/2026/08/baner.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
	.nv-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgb(24 31 18 / 86%) 0%, rgb(24 31 18 / 57%) 30%, rgb(24 31 18 / 22%) 55%, rgb(24 31 18 / 55%) 75%, rgba(24, 31, 18, 0) 100%);
}
}

.breadcrumb-section {
    background: url(https://novavedic.com/wp-content/uploads/2026/08/bredacrumb.png) rgba(0,0,0,0.5);
    background-color: #2d5669;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 163px 0px 100px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 5px solid #a9cf47;
    background-blend-mode: multiply;
}
	.breadcrumb-section .page-header-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
		text-align:center;
}
@media (max-width: 767px) {
	span.simple-breadcrumb-nav {
    display: none;
}
}


.inner-page-image,
.director-image,
.quality-image,
.pcd-hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.inner-page-image img,
.director-image img,
.quality-image img,
.pcd-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.inner-page-image:hover img,
.director-image:hover img,
.quality-image:hover img,
.pcd-hero-image:hover img {
    transform: scale(1.04);
}

.page-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    background: rgba(179, 222, 43, 0.15);
    color: var(--secondary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inner-page-content,
.director-content,
.quality-content,
.pcd-hero-content,
.contact-intro {
    height: 100%;
}

.inner-page-content p,
.director-content p,
.quality-content p,
.pcd-hero-content p,
.contact-intro p,
.inner-page-intro p,
.quality-highlight p,
.mission-intro p,
.values-heading p,
.pcd-intro p,
.contact-bottom p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.85;
}

.inner-page-content p:last-child,
.director-content p:last-child,
.quality-content p:last-child,
.pcd-hero-content p:last-child {
    margin-bottom: 0;
}

.inner-page-intro,
.quality-highlight,
.pcd-intro,
.contact-bottom,
.values-heading {
    padding: 55px 60px;
    margin-top: 35px;
    background: var(--accent-color);
    border-radius: var(--radius-lg);
}

.inner-page-box {
    height: 100%;
    padding: 32px 30px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(32, 37, 26, 0.07);
    transition: var(--transition);
}

.inner-page-box:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 18px 45px rgba(32, 37, 26, 0.11);
}

.inner-page-box h3,
.inner-page-feature h3,
.quality-list-box h3,
.pcd-benefits h3,
.process-box h3 {
    margin-bottom: 14px;
    color: var(--dark-color);
    font-size: 21px;
    font-weight: 600;
}

.inner-page-box p,
.inner-page-feature p,
.quality-list-box p,
.pcd-benefits p,
.process-box p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.box-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 13px;
    font-weight: 600;
}

.inner-page-feature,
.quality-list-box,
.pcd-benefits {
    height: 100%;
    padding: 35px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(32, 37, 26, 0.06);
}

.inner-page-feature ul,
.quality-list-box ul,
.pcd-benefits ul {
    margin: 20px 0 0;
    padding-left: 20px;
}

.inner-page-feature li,
.quality-list-box li,
.pcd-benefits li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.7;
}

.director-signature {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.director-signature strong {
    color: var(--primary-color);
    font-size: 23px;
}

.director-signature span {
    color: var(--text-color);
    font-size: 16px;
}

.director-vision {
    padding: 55px 65px;
    margin-top: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f4f7e9, #ffffff);
    border: 1px solid var(--border-color);
}

.quality-highlight {
    background: linear-gradient(135deg, #eef6e4, #ffffff);
}

.quality-list-box {
    margin-top: 35px;
}

.mission-intro {
    max-width: 900px;
    margin: 0 auto 45px;
}

.mission-card {
    height: 100%;
    padding: 45px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-6px);
}

.mission-card-green {
    background: #eef6e5;
    border-color: rgba(24, 130, 68, 0.12);
}

.mission-card-orange {
    background: #fff2e9;
    border-color: rgba(232, 100, 33, 0.12);
}

.mission-card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
    padding: 14px;
    border-radius: 50%;
    background: var(--light-color);
}

.mission-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-card .section-title {
    font-size: 30px;
    line-height: 1.3;
}

.values-heading {
    margin-top: 45px;
}

.pcd-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 25px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    background: var(--secondary-dark);
    color: var(--light-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.inner-page-button:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.pcd-process {
    margin-top: 45px;
    padding: 55px 45px;
    border-radius: var(--radius-lg);
    background: #20251a;
}

.pcd-process .section-title,
.pcd-process p {
    color: var(--light-color);
}

.process-box {
    height: 100%;
    padding: 28px 22px;
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
}

.process-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 700;
}

.process-box h3 {
    color: var(--light-color);
    font-size: 18px;
}

.process-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.pcd-benefits {
    margin-top: 35px;
}

.contact-info-box {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-info-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-info-item strong {
    color: var(--dark-color);
    font-size: 15px;
}

.contact-form-box {
    padding: 45px;
    border-radius: var(--radius-lg);
    background: var(--light-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 45px rgba(32, 37, 26, 0.08);
}

.contact-form-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 500;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fafbf7;
    color: var(--dark-color);
    font-family: var(--body-font);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.contact-form-box textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form-box input[type="submit"] {
    width: auto;
    min-width: 170px;
    margin-bottom: 0;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--secondary-dark);
    color: var(--light-color);
    font-weight: 600;
    cursor: pointer;
}

.contact-form-box input[type="submit"]:hover {
    background: var(--primary-color);
}

.contact-bottom {
    margin-top: 45px;
    text-align: center;
}

@media (min-width: 992px) {
    .about-page > .col-lg-6,
    .directors-page > .col-lg-5,
    .directors-page > .col-lg-7,
    .quality-page > .col-lg-6,
    .pcd-franchise-page > .col-lg-7,
    .pcd-franchise-page > .col-lg-5 {
        margin-bottom: 35px;
    }

    .about-page > .col-md-6,
    .directors-page > .col-md-6,
    .quality-page > .col-md-6,
    .mission-page > .col-md-6,
    .pcd-franchise-page > .col-md-6 {
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .inner-page-image img,
    .director-image img,
    .quality-image img,
    .pcd-hero-image img {
        min-height: 350px;
    }

    .inner-page-content,
    .director-content,
    .quality-content,
    .pcd-hero-content,
    .contact-intro {
        margin-top: 30px;
    }

    .inner-page-intro,
    .quality-highlight,
    .pcd-intro,
    .director-vision,
    .values-heading,
    .contact-bottom {
        padding: 40px;
    }

    .mission-card {
        padding: 35px;
        margin-bottom: 25px;
    }

    .pcd-process {
        padding: 40px 30px;
    }

    .contact-form-box {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .page-eyebrow {
        font-size: 11px;
        padding: 6px 14px;
    }

    .inner-page-content p,
    .director-content p,
    .quality-content p,
    .pcd-hero-content p,
    .contact-intro p,
    .inner-page-intro p,
    .quality-highlight p,
    .mission-intro p,
    .values-heading p,
    .pcd-intro p,
    .contact-bottom p {
        font-size: 14px;
        line-height: 1.75;
    }

    .inner-page-image img,
    .director-image img,
    .quality-image img,
    .pcd-hero-image img {
        min-height: 280px;
    }

    .inner-page-intro,
    .quality-highlight,
    .pcd-intro,
    .director-vision,
    .values-heading,
    .contact-bottom {
        padding: 30px 22px;
    }

    .inner-page-box,
    .inner-page-feature,
    .quality-list-box,
    .pcd-benefits {
        padding: 26px 22px;
    }

    .mission-card {
        padding: 30px 22px;
    }

    .mission-card .section-title {
        font-size: 25px;
    }

    .pcd-process {
        padding: 35px 20px;
    }

    .contact-form-box {
        padding: 30px 22px;
    }

    .inner-page-button {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .inner-page-image img,
    .director-image img,
    .quality-image img,
    .pcd-hero-image img {
        min-height: 240px;
    }

    .inner-page-box h3,
    .inner-page-feature h3,
    .quality-list-box h3,
    .pcd-benefits h3,
    .process-box h3 {
        font-size: 18px;
    }

    .inner-page-box p,
    .inner-page-feature p,
    .quality-list-box p,
    .pcd-benefits p,
    .process-box p {
        font-size: 13px;
    }
}

.custom-card-box {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-card-box:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 35px rgba(24, 130, 68, 0.12);
}

.custom-card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
}

.custom-card-box:hover::before {
  opacity: 1;
}

.custom-card-box h3 {
  color: var(--primary-dark);
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.custom-card-box p {
  margin-bottom: 0;
  flex-grow: 1;
}

.custom-card-box .icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.custom-card-box:hover .icon-wrapper {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: rotateY(180deg);
}
img.img-styled.img-fluid {
    border-radius: 10px;
}
section.inner-page {
    padding: var(--section-padding);
}
section.inner-page .section-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    line-height: 53px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    padding: 8px;
    background: #188244;
    border: none;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}
.wpcf7-form {
    max-width: 100%;
    margin: 0 auto;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    display: block;
    margin-top: 6px;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--dark-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    height: 45px;
}

.wpcf7-form textarea {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 130, 68, 0.08);
}

.wpcf7-form input[type="submit"] {
    display: inline-block;
    margin-top: 4px;
    padding: 12px 28px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--primary-color);
    color: #fff;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.wpcf7-form .wpcf7-not-valid-tip {
    margin-top: 4px;
    font-size: 12px;
}

.wpcf7-form .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 8px 12px;
    font-size: 13px;
}

@media (max-width: 767px) {
    .wpcf7-form label {
        margin-bottom: 10px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"] {
        height: 42px;
    }

    .wpcf7-form textarea {
        height: 85px;
        min-height: 85px;
        max-height: 85px;
    }
}

#sequence {
    width: 100%;
    float: left;
    background: #8ebb00;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #ffffff !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 9px 0;
    font-size: 15px;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid;
}
section.single-product-wrapper.py-md-5.pb-3 .btn-default:hover {
   background:#188243;
	color:#fff;
}
a.btn-primary.flex-shrink-0.m-0 {
    background: var(--primary-dark);
    padding: 11px 40px;
    border-radius: 10px;
}
a.btn-primary.flex-shrink-0.m-0:hover{
	background:var(--primary-color);
}
strong.text-primary-color {
    font-size: 16px;
}

@media(max-width:767px){
	.chaty-channels {
    display: none;
}
	.breadcrumb-section {
    padding:90px 0px 57px;
}
}
/* ADD THIS IN YOUR EXISTING CSS FOR LISTS INSIDE CARDS/BOXES */
.policy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-family: var(--body-font);
}

.policy-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Cta-section */

.nv-cta-section {
	position:relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background: url("https://novavedic.com/wp-content/uploads/2026/08/nobavedic.png") center center / cover no-repeat;
}

.nv-cta-content {
    max-width: 680px;
}

.nv-cta-content .section-title span {
    color: var(--secondary-color);
}

.nv-cta-content p {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    text-transform: none;
}

.nv-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nv-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 15px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nv-cta-btn span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nv-cta-btn strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.nv-cta-btn small {
    font-size: 15px;
    font-weight: 500;
    line-height: 33px;
}

.nv-cta-btn i {
    flex-shrink: 0;
    font-size: 16px;
    transition: var(--transition);
}

.nv-cta-btn:hover {
    transform: translateX(6px);
}

.nv-cta-btn:hover i {
    transform: translateX(4px);
}

.nv-cta-btn-primary {
    color: #fff;
    background: var(--primary-color);
}

.nv-cta-btn-primary:hover {
    color: #fff;
    background: #146e39;
}

.nv-cta-btn-light {
    color: var(--dark-color);
    background: #fff;
}

.nv-cta-btn-light:hover {
    color: var(--dark-color);
    background: var(--accent-color);
}

.nv-cta-btn-orange {
    color: #000000;
    background: #b3de2b;
}

.nv-cta-btn-orange:hover {
    color: #fff;
    background: #188244;
}

@media (max-width: 991px) {

    .nv-cta-section {
        padding: 70px 0;
    }

    .nv-cta-content {
        max-width: 100%;
        margin-bottom: 35px;
    }

    .nv-cta-content .section-title {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .nv-cta-section {
        padding: 60px 0;
    }

    .nv-cta-content .section-title {
        font-size: 30px;
    }

    .nv-cta-content p {
        font-size: 14px;
    }

    .nv-cta-btn {
        min-height: 70px;
        padding: 14px 18px;
    }

    .nv-cta-btn strong {
        font-size: 14px;
    }

}

@media (max-width: 575px) {

    .nv-cta-content .section-title {
        font-size: 26px;
    }

    .nv-cta-btn {
        min-height: 65px;
    }

    .nv-cta-btn small {
        font-size: 11px;
    }

}