/* ============================================ */
/* NPAV Website Updated CSS */
/* ============================================ */

@font-face {
    font-family: 'Sailec';
    src: url('fonts/Sailec-Medium.woff2') format('woff2'),
         url('fonts/Sailec-Medium.woff') format('woff');
    font-weight: 500; 
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sailec';
    src: url('fonts/Sailec-Regular.woff2') format('woff2'),
         url('fonts/Sailec-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Optima';
    src: url('fonts/Optima-Medium.woff2') format('woff2'),
         url('fonts/Optima-Medium.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* --- Root Variables --- */
:root {
    --npav-green-primary: rgb(0,143,79);
    --npav-green-dark: #007a44;
    --npav-light-bg: #f8f9fa;
    --npav-dark-bg: #01180d;
    --npav-text-color: #c0c0c0;
    --npav-buy-button-light-green: #e0f2e0; 
    --npav-mrp-color: orange;
    --npav-font-optima: 'Optima', 'Segoe UI', Candara, Calibri, Arial, sans-serif;
    --npav-font-sailec: 'Sailec', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --npav-font-body: var(--npav-font-sailec);
    --npav-font-sailec-medium-weight: 500;
    --npav-font-sailec-large-weight: 700;
}
/* --- Global Styles --- */
body {
    /* font-family: 'Jost', sans-serif; */
    font-family: var(--npav-font-body);
    color: #212529;
}.content-all{
    overflow: hidden;
}/* ---------------------------------------------------- */
/* 3. FONT USAGE (Apply Sailec Medium and Large) */
/* ---------------------------------------------------- */

/* LARGE USE: Use Sailec Bold for Headings */
h1, h2, h3, h4, h5, h6, .display-1, .display-2 {
    font-family: var(--npav-font-optima);
    font-weight: var(--npav-font-sailec-large-weight); 
}
/* MEDIUM USE: Use Sailec Medium (Weight 500) for Navigation and Buttons */
.btn, .nav-link, .navbar-brand {
    font-family: var(--npav-font-sailec);
    font-weight: var(--npav-font-sailec-medium-weight);
}
/*
============================================
   Custom Wide Container for full width feel
============================================
*/

.container-custom-wide {
    width: 100%;
    max-width: 1600px; 
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1800px) {
    .container-custom-wide {
        max-width: 1700px;
    }
}
/* ============================================
   Top Bar
============================================ */
.top-bar {
    background-color: var(--npav-dark-bg);
    color: #ccc;
    font-size: 0.85rem;
}
.top-bar a {
    text-decoration: none;
    color: #ccc;
}
.top-bar > .container-xxl i {
    color: var(--npav-green-primary);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 4px;
    margin-right: 6px;
    text-decoration: none;
    color: #0b2a55 !important;
}
.social-icons a i {
    font-size: 15px;
    line-height: 1;
    color: inherit; 
}
.social-icons a:hover {
    background-color: var(--npav-green-primary);
    color: #ffffff !important;
}.contact-group {
background: rgb(82 86 40 / 58%); 
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px; 
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-group .separator {
    margin: 0 8px;
    opacity: 0.5; 
}
/* ============================================
   NAVBAR – CLEAN & CONFLICT-FREE
============================================ */

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-height: 70px;
}
.navbar-brand {
    padding: 0 !important;
    margin-right: 1.25rem;
}
.navbar-brand img {
    max-width: 150px;
    /* height: 42px; */
}button.navbar-toggler {
    float: right;
}.right-cta-block.d-flex.align-items-center {
    float: left;
    display: inline-block;
}
@media (min-width: 900px) and (max-width: 1450px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.1rem !important;
        font-size: 12px!important;
        font-weight: 400;
        color: #333;
    } 
    .btn-npav-green, .btn-npav-outline {
        font-size: 12px!important;
    }
}
/* ---------------- Desktop (≥992px) ---------------- */
@media (min-width: 992px) {
    .btn-npav-green, .btn-npav-outline {
        font-size: 14px;
    }    .container-custom-wide {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .navbar-collapse {
        display: flex !important;
        align-items: center;
    }
    .navbar-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.0rem;
        margin: 0;
        padding: 0;
    }
    .navbar-nav .nav-item {
        white-space: nowrap;
    }
    .navbar-nav .nav-link {
        padding: 0.35rem 0.45rem;
        font-size: 16px;
        font-weight: 400;
        color: #333 ;
    }    .navbar .navbar-nav > .nav-item > .nav-link {
        color: #333;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--npav-green-primary) !important;
    }
    .right-cta-block {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-left: 0.75rem;
        flex-shrink: 0;
    }
    .right-cta-block .nav-link {
        padding: 0 !important;
    }}
/* ---------------- Mobile (<992px) ---------------- */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.6rem 0.9rem !important;
        color: rgb(89 92 95) ! important;
    }
    .right-cta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-top: 1rem;
    }
    .right-cta-block .btn {
        width: 100%;
        text-align: center;
    }
}
/* ============================================ */
/* CONSOLIDATED DROPDOWN & MEGA MENU STYLES (FINAL VERSION) */
/* ============================================ */


.navbar-nav {
    overflow: visible !important;
}
.nav-item.dropdown {
    overflow: visible !important;
}
/* --- 1. Base Dropdown Styles (Applies to simple menus) --- */

.dropdown-menu {
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem;
}
@media (min-width: 992px) {
    .dropdown-menu {
        max-width: 320px;
        min-width: 200px;
        white-space: normal;
    }
}

/* Base Dropdown Item Styles */
.dropdown-item {
    word-wrap: break-word;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s, color 0.2s;
}
.dropdown-item:hover {
    /* background: var(--npav-green-primary, rgb(0,143,79)); */
    background-color: #008f4fa8 !important;
    color: #fff;
}
/* --- 2. Mega Menu Styles (Overrides the base styles and adds polish) --- */

/* 2.1 Mega Menu Container - (Width, Centering, and Positioning) */
/* .navbar-nav .dropdown-menu.mega-menu { */
    /* position: fixed !important;  */
    /* max-height: 80vh !important; 
    overflow-y: auto !important; */
    /* top: 70px !important; 
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90vw !important; 
    max-width: 1200px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
    border-radius: 6px; 
    padding: 1.5rem 2rem; 
    z-index: 1040;
    background: #fff;
    border: 1px solid #eee; */
/* } */
/* .navbar-nav .dropdown-menu.mega-menu {
    position: fixed !important;
    top: 11%;
    left: 46% !important;
    transform: translateX(-50%) !important;
    width: 55vw !important;
    max-width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    z-index: 1040;
    background: #fff;
    border: 1px solid #eee;
} */
.navbar-nav .dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 55vw;
    max-width: none;
    transform: none;
    height: auto;
}/* 2.2 #mydiv Wrapper (Critical Width Fix for your specific HTML) */
.navbar-nav .dropdown-menu.mega-menu #mydiv {
    min-width: auto !important; 
    width: 100% !important; 
    padding: 0 !important; 
}
/* 2.3 Row and Column Spacing */
.mega-menu .row {
    margin: -10px; 
}.mega-menu .col-md-4 {
    padding: 10px;
}
/* 2.4 Column Headings (head-of-link)  */
.head-of-link {
 /* margin-bottom: 12px; */
 margin-bottom: 1%;
 padding-bottom: 8px; 
 border-bottom: 2px solid rgba(0, 143, 79, 0.1); 
 display: flex;
 align-items: center;
 gap: 10px;
 color: #fff;
 font-size: 15px;
 letter-spacing: 1px;
 background-color: #0b1f44cf;
 font-weight: 400 !important;
 padding: 2% 5%; 
 border-radius: 6px;
 font-size: 16px;
}

/* 2.5 Menu Links (simple-link) */
.mega-menu a.simple-link {
    font-size: 0.95rem;
    color: #495057; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 5px 10px;
    margin: 4px 0;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 4px;
    text-decoration: none;
    white-space: normal; 
    word-wrap: break-word;
}
/* 2.6 Menu Link Hover State - FIXED */
.dropdown-menu.mega-menu a.simple-link:hover {
    /* background-color: var(--npav-green-primary, rgb(0,143,79)) !important; */
    background-color: #008f4fa8 !important;
    color: #fff !important;
    font-weight: 500;
}
/* 2.7 New Tag Badge */
.new-tag {
    background-color: #ff4c4ce6;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 12px;
    font-weight: 300;
    flex-shrink: 0;
    letter-spacing: 1px;
}
/* 2.8 Image within Menu (Optional) */
.mega-menu .menuimg {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 6px;
    object-fit: cover;
}
/* 2.9 Clean up the unnecessary <li> wrapper */
.dropdown-menu.mega-menu > li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}
 .cart-icon { position: relative; } 
 .cart-count { position: absolute; top: -6px; right: -8px; background: #ff4d4f; color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
@media (min-width: 992px) {
    .navbar > .container-custom-wide {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
}

/* ============================================ */
/* Hero Slider Styles - Responsive Version */
/* ============================================ */
.hero-slider-area {
    position: relative;
    overflow: hidden;
}
/* Slider Items */
.hero-slider-area .slider-item {
    width: 100%;
    height: 70vh; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Mobile: slightly smaller height */
@media (max-width: 767px) {
    .hero-slider-area .slider-item {
        height: 60vh; 
    }
}
/* Owl Carousel Navigation Buttons */
.hero-slider-area .owl-nav button.owl-prev,
.hero-slider-area .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    font-size: 24px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    opacity: 0;
}
/* Show nav buttons on hover */
.hero-slider-area:hover .owl-nav button.owl-prev,
.hero-slider-area:hover .owl-nav button.owl-next {
    opacity: 1;
}
.hero-slider-area .owl-nav button.owl-prev {
    left: 20px;
}
.hero-slider-area .owl-nav button.owl-next {
    right: 20px;
}
/* Owl Carousel Dots */
.hero-slider-area .owl-dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.hero-slider-area .owl-dots .owl-dot span {
    background: #fff !important;
    border: 2px solid var(--npav-green-primary) !important;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}
.hero-slider-area .owl-dots .owl-dot.active span {
    background: var(--npav-green-primary) !important;
}


/* ============================================ */
/* Product Tabs Section (FINAL DARK THEME W/ PARTICLES) */
/* ============================================ */

/* Main Section Container and Background */
.tabs-section {
    padding: 10px 0; 
  background-color: var(--npav-light-bg);/* UPDATED: Deep Blue-Gray Background */
    position: relative; 
    overflow: hidden; 
}.owl-theme .owl-nav {
    margin-top: 0px;
}/* Particle Container Styles */

.particles-layer {
    position: absolute;
    inset: 0;
    /* z-index: 1; */
    pointer-events: none;
}
.tabs-section .container-xxl {
    position: relative;
    z-index: 5;
}
.tabs-section .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background-color: #f7f3f3; 
    border-radius: 40px; 
    padding: 10px 20px; 
    border: 1px solid #e9ecef; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    max-width: max-content;
    margin: 0 auto 40px auto;
}
.tabs-section .nav-pills .nav-item {
    margin: 0 !important;
}
.tabs-section .nav-pills .nav-link {
    background-color: transparent;
    color: #333;
    border: 1px solid #ced4da !important;
    border-radius: 40px !important;
    padding: 10px 25px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
    white-space: nowrap;
}
.tabs-section .nav-pills .nav-link.active {
    background-color: var(--npav-green-primary) !important;
    color: #fff !important;
    border-color: var(--npav-green-primary) !important;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4);
}

.tab-content-box {
    background-color: #fff;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px dashed #ced4da;
    padding: 25px;
}
@media (min-width: 768px) {
    .tab-content-box {
        padding: 60px; /* Increased padding */
    }
}
.tab-title {
    color: var(--npav-green-primary);
}
/* ============================================ */
/* Product Card Styles */
/* ============================================ */

.product-card .card-title {
    display: -webkit-box;                  
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;       
    line-clamp: 2;              

    overflow: hidden;

    line-height: 1.5;
    min-height: calc(1.5em * 2);

    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}
.product-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-section {
    background-color: var(--npav-light-bg); 
    padding: 80px 0; 
}
.product-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
     position: relative;
    z-index: 20;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card-img-top-wrapper {
    background-color: #f0f8ff; 
    padding: 20px 0; 
    text-align: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}.card-img-top-wrapper img {
    max-height: 150px;
    object-fit: contain;
}

.product-card img {
    max-height: 150px;
    object-fit: contain;
    margin: 1rem auto;
}
.product-card .card-text {
    min-height: 40px;
    line-height: 1.4;
}
/* Pricing Grid */
.product-pricing {
    display: grid;
    grid-template-areas:
        "save price"
        "mrp info";
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: auto;
    margin-bottom: 5px;
    width: 100%;
}
.product-card .save-tag {
    grid-area: save;
    background-color: #00ffaa; 
    color: var(--npav-dark-bg);
    font-weight: 500;
    padding: 0px 14px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1rem;
    justify-self: start;
    clip-path: polygon(0% 0%, 94% 0%, 88% 50%, 94% 100%, 0% 100%, 6% 50%);
}
.product-card .price-tag {
    grid-area: price;
    color: #212529;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    justify-self: end;
}
.product-card .mrp-tag {
    grid-area: mrp;
    display: block;
    /* color: var(--npav-mrp-color); */
    color: #6c757d !important;
    text-decoration: line-through;
    /* font-size: 0.9rem; */
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    justify-self: start;
    padding-left: 2px;
}
.product-card .product-info-text {
    grid-area: info;
    margin: 0 !important;
    font-size: 0.85rem;
    color: #6c757d !important;
    justify-self: end;
}
.btn-npav-outline.btn-lg {
    padding: 10px 20px; 
    font-size: 1rem;
    line-height: 1.5;
}

/* Buy Now Button (Inside Card) */
.product-card .btn-npav-green {
    background-color: #d1f7d1;
    color: var(--npav-dark-bg);
    padding: 10px 30px;
    border-radius: 40px;
    width: 50%;
    margin-top: auto;
    margin-bottom: 0 !important;
    font-weight: 400;
}
.product-card .btn-npav-green:hover {
    color: #fff;
    transform: translateY(-1px);
    background-color: var(--npav-green-dark);
}
/* Know More Link */
.product-card .know-more-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--npav-green-primary);
    font-weight: 500;
    font-size: 0.9rem;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease, padding 0.3s ease-out;
}
.product-card:hover .know-more-link {
    max-height: 40px;
    padding-top: 8px;
    padding-bottom: 5px;
    opacity: 1;
    visibility: visible;
}
.product-card .know-more-link:hover {
    color: var(--npav-green-dark);
    text-decoration: underline;
}
/* ============================================ */
/* Final Outline Button Styles (.btn-npav-outline) */
/* ============================================ */

/* .btn-npav-outline {
    border: 2px solid var(--npav-green-primary, #4CAF50);
    font-weight: 600;
    border-radius: 8px; 
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block; 
    width: auto; 
    background-color: var(--npav-green-primary, #4CAF50);
    border-color: var(--npav-green-primary, #4CAF50);
    color: #fff;
} */

/* .btn-npav-outline:hover {
    background-color: var(--npav-green-primary, #4CAF50);
    border-color: var(--npav-green-primary, #4CAF50); 
    color: #fff;
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4); 
} */

/* .btn-npav-outline.btn-lg {
    padding: 12px 40px; 
    font-size: 1.15rem; 
    line-height: 1.5;
} */

.btn-npav-outline {
    background-color: transparent;
    border: 2px solid var(--npav-green-primary);
    color: var(--npav-green-primary) !important;
    font-weight: 400;
    border-radius: 6px;
    padding: 0.45rem 1.1rem;
    transition: all 0.3s ease;
}
.btn-npav-outline:hover {
    background-color: var(--npav-green-primary);
    color: #fff !important;
}
.btn-npav-solid {
    background-color: var(--npav-green-primary);
    border: 2px solid var(--npav-green-primary);
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
}
.btn-npav-solid:hover {
    background-color: var(--npav-green-dark);
}

/* ============================================ */
/* CTA Section */
/* ============================================ */
.cta-section {
    background-color: var(--npav-green-primary);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
}
.cta-section .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}
.cta-section .btn-light {
    color: var(--npav-green-primary);
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    transition: all 0.2s ease;
}
.cta-section .btn-light:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* ============================================ */
/* Footer Styles - Keeping as is */
/* ============================================ */

footer {
    position: relative;
    background-image:
        /* linear-gradient(
            rgba(1, 24, 13, 0.92),
            rgba(1, 24, 13, 0.92)
        ), */
        url("../img/footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.footer-top {
    padding: 3% 0 20px;
}.footer-top h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.npav-logo {
    height: 45px;
    margin-bottom: 15px;
}
.footer-brand-info {
    color: #dddddd;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.footer-link-list .nav-link {
    color: #dddddd;
    padding: 5px 0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
}
.footer-link-list .nav-link:hover {
    color: #FF9800;
}
.footer-cta-section {
    margin:0;
}
.footer-cta-card {
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    height: 100%;
}
.footer-cta-card:hover .cta-arrow {
    transform: translateX(5px);
}
.footer-cta-left {
    background: linear-gradient(90deg, var(--npav-green-dark) 0%, rgba(0,143,79,0.7) 100%);
}
.footer-cta-right {
    background: linear-gradient(90deg, rgba(0,143,79,0.7) 0%, var(--npav-green-dark) 100%);
}
.footer-cta-card p:first-child {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500! important;
    letter-spacing: 1px;
    color: #dddddd;
}
.footer-cta-card p:last-child {
    font-size: 0.9rem;
    margin: 0;
    color: #dddddd;
}
.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}
.footer-copyright {
    /* border-top: 1px solid rgba(255,255,255,0.15); */
    /* padding: 15px 0; */
    padding: 1% 1%;
    font-size: 0.85rem;
    color: var(--npav-text-color);
    letter-spacing: 0.5px;
}
.footer-copyright a {
    color: var(--npav-text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-copyright a:hover {
    color: var(--npav-green-primary);
}
.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 4px;
    margin-right: 6px;
    text-decoration: none;
    color: #0b2a55 !important;
}
.footer .social-icons a i {
    font-size: 15px;
    line-height: 1;
}
/* Hover */
.social-icons a:hover {
    background-color: var(--npav-green-primary);
    color: #ffffff !important;
}

/* ============================================
   Content Section
============================================ */
.content-section {
    padding: 20px 0;
    margin-bottom: 20px;
}

/* ============================================
   Feature Cards (Equal Height Guaranteed)
============================================ */
.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 45px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
/* Wider cards spacing */
.col-lg-6 .feature-card {
    padding-left: 40px;
    padding-right: 40px;
}
/* Hover */
/* Base hover style - you might want to remove the pattern properties */
.feature-card:hover {
    background-color: #004d2b; 
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 77, 43, 0.4); 
    background-image: none; 
    background-size: auto; 
}

/* 1st CARD: Advanced Threat Detection */
.row > div:nth-child(1) .feature-card:hover {
    /* Replace with your actual image path for the first card */
    background-image: url('../img/feature_on_hover_1.png'); 
    background-size: cover; /* Adjust size as needed: cover, contain, or specific dimensions */
    background-repeat: no-repeat;
    background-position: center;
}
/* 2nd CARD: Proactive Security */
.row > div:nth-child(2) .feature-card:hover {
    /* Replace with your actual image path for the second card */
    background-image: url('../img/feature_on_hover_2.png'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
/* 3rd CARD: Malware Security */
.row > div:nth-child(3) .feature-card:hover {
    /* Replace with your actual image path for the third card */
    background-image: url('../img/feature_on_hover_3.png'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
/* 4th CARD: Lightweight & Fast */
.row > div:nth-child(4) .feature-card:hover {
    /* Replace with your actual image path for the fourth card */
    background-image: url('../img/feature_on_hover_4.png'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
/* 5th CARD: Multi-Device Protection */
.row > div:nth-child(5) .feature-card:hover {
    /* Replace with your actual image path for the fifth card */
    background-image: url('../img/feature_on_hover_5.png'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
/* 6th CARD: 24/7 Expert Support */
.row > div:nth-child(6) .feature-card:hover {
    /* Replace with your actual image path for the sixth card */
    background-image: url('../img/feature_on_hover_6.png'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
/* ============================================
   Icon Wrapper
============================================ */
.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--npav-buy-button-light-green);
    transition: background-color 0.3s ease;
}
.feature-card:hover .feature-icon-wrapper {
    background-color: #fff;
}
.feature-card img {
    width: 50px;
    height: 50px;
}
/* ============================================
   3D Flip Effect for Feature Image
============================================ */
.feature-icon-wrapper {
    perspective: 800px; /* enables 3D */
}
.feature-card img {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
/* Flip image completely */
.feature-card:hover img {
    transform: rotateY(180deg);
}


/* ============================================
   Text
============================================ */
.feature-card h5 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--npav-dark-bg);
}
.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;

    /* OPTIONAL: keeps text from changing layout */
    flex-grow: 1;
}
/* Hover text color */
.feature-card:hover h5,
.feature-card:hover p {
    color: #fff;
}
/* ============================================ */
/* Added: Section Title Styling */
/* ============================================ */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
}
/* ========================================================= */
/* --- Testimonial Section Styles (FINAL FIXED & INLINE CSS MOVED) --- */
/* ========================================================= */

/* MOVED INLINE CSS from the <div class="container-xxl"> */
.testimonial-section .container-xxl {
    position: relative; 
    z-index: 2;
}
.testimonial-section {
    position: relative; 
    padding: 100px 0 80px 0; 
}
/* Background Image */
.section-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/reviews.png"); 
    background-size: cover;
    background-position: center right; 
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
/* Title & Subtitle (LEFT ALIGNED) */
.testimonial-section .section-title,
.testimonial-section .section-subtitle {
    color: #343a40; 
    text-shadow: none; 
    position: relative;
    z-index: 2;
    text-align: left; /* FINAL FIX: Title is left aligned */
    margin-bottom: 5px; 
}.testimonial-section .section-title {
    font-weight: 700;
}.testimonial-section .section-subtitle {
    color: #6c757d;
    margin-bottom: 30px; 
}

/* Testimonial Card */
.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff; 
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    height: 100%; 
    text-align: left;
    position: relative;
    z-index: 2;
}.testimonial-card blockquote {
    color: #495057; 
    line-height: 1.6;
    flex-grow: 1; 
    margin-bottom: 15px;
}.testimonial-card .client-name {
    margin-top: auto;
    font-weight: 400;
    color: #212529;
    font-size: 1.1rem;
}
/* Star Rating */
.testimonial-card .star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}.testimonial-card .star-rating i {
    font-size: 1.1rem;
}

/* Owl Carousel Wrapper */
.testimonial-section #testimonial-carousel {
    margin-top: 20px !important; 
    position: relative; 
}

/* Owl Carousel Arrows (Visible and outside the cards) */
.testimonial-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120%; 
    left: -10%;   
    z-index: 10;
}
.testimonial-section .owl-nav button.owl-prev,
.testimonial-section .owl-nav button.owl-next {
    position: absolute;
    top: 0;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    background: #f8f9fa; 
    border: 1px solid #ccc; 
    font-size: 1.2rem;
    color: #6c757d; 
    transition: all 0.2s ease;
    outline: none;
    opacity: 1; 
}
.testimonial-section .owl-nav button span {
    display: none !important; 
}
/* Arrow content: Corrected for Font Awesome 6 */
.testimonial-section .owl-nav button.owl-prev::before {
content: "\f053";
font-family: 'Font Awesome 6 Free';
font-weight: 900;
line-height: 38px;
display: block;
}.testimonial-section .owl-nav button.owl-next::before {
content: "\f054"; 
font-family: 'Font Awesome 6 Free'; 
font-weight: 900;
line-height: 38px;
display: block;
}
.testimonial-section .owl-nav.disabled {
    display: block !important;
    opacity: 1 !important;
}
/* Final Arrow Positioning */
.testimonial-section .owl-nav button.owl-prev {
    left: 0; 
}.testimonial-section .owl-nav button.owl-next {
    right: 0; 
}

.testimonial-section .owl-nav button:hover {
    background: var(--npav-green-primary);
    color: white; 
    border-color: var(--npav-green-primary);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
/* Owl Carousel Dots */
.testimonial-section .owl-dots {
    margin-top: 30px;
    text-align: center;
}.testimonial-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    display: block;
    border-radius: 30px;
    transition: background 0.2s ease;
}.testimonial-section .owl-dots .owl-dot.active span {
    background: var(--npav-green-primary);
}

/* Responsive */
@media (min-width: 992px) { 
    .testimonial-section { padding: 100px 0; }    .testimonial-section .owl-nav {
        width: 110%; 
        left: -5%; 
    }
}
@media (max-width: 768px) {
    .section-background-blur { background-position: center top; }
}
/* ========================================= */
/* Image */
/* ========================================= */

.users-image {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}
.users-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
    background: #fff;
}
/* ========================================= */
/* Text */
/* ========================================= */

.users-title {
    font-size: 2.6rem;
    font-weight: 700; /* Changed from 800 */
    margin-bottom: 15px;
    color: #000;
}
.users-desc {
    font-size: 1.05rem;
    color: #5f6f73;
    max-width: 560px;
}
/* ========================================= */
/* Features */
/* ========================================= */

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dff5ec;
    color: #008f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-item h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}
.feature-item p {
    font-size: 0.95rem;
    color: #6b7c80;
    line-height: 1.55;
}
/* ========================================= */
/* Mobile */
/* ========================================= */

@media (max-width: 991px) {
    .users-secured::before {
        width: 100%;
        height: 45%;
    }
}
@media (max-width: 767px) {
    .users-secured {
        padding: 3% 0;
    }
    .users-title {
        font-size: 2rem;
        text-align: center;
    }
    .users-desc {
        text-align: center;
        margin: 0 auto;
    }
}
/* ========================================================= */
/* --- Security Features Section Styles (Image Fixes) ---    */
/* ========================================================= */

.security-features-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
}
.security-features-section .feature-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.5s ease-in-out; 
}
/* MOVED INLINE BACKGROUND IMAGES TO CSS FOR SEO */
.feature-card-wrapper.card-zerov-deeplearn {
    background-image: url('../img/Zero_Deep_learn_ai.png');
}
.feature-card-wrapper.card-secure-web {
    background-image: url('../img/secure_web_and_payments.png');
}
.feature-card-wrapper.card-pc-optimization {
    background-image: url('../img/PC_optimization.png');
}
.feature-card-wrapper.card-auto-updates {
    background-image: url('../img/Auto_security_updates.png');
}
.feature-card-wrapper.card-privacy-lockdown {
    background-image: url('../img/Privacy_lockdown.png');
}
/* ----------------------------------------------------- */
/* 1. INITIAL STATE: TALL OVAL CARD (Wrapper & Content) */
/* ----------------------------------------------------- */
.security-features-section .feature-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px; 
    height: 400px; 
    overflow: hidden;
    border-radius: 9999px; 
    background-size: cover; 
    background-position: center;
    border: 5px solid rgba(255, 255, 255, 1);
    transition: all 0.5s ease-in-out, box-shadow 0.3s;
    cursor: pointer;
}
/* Fully visible background */
.security-features-section .feature-card-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit; 
    z-index: 1;
    background: transparent;
}
/* Text content - initially bottom center */
.security-features-section .circle-content {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center; 
    padding: 15px 0;
    z-index: 2;
    color: white;
    transition: all 0.5s ease-in-out;
}
/* Feature Title Styling */
.security-features-section .feature-card-wrapper .feature-title {
    font-size: 1.0em; 
    font-weight: 600;
    margin-bottom: 2px !important;
    text-align: center; 
    color: white;
    padding: 0 40px;
    display: block;
}
/* Description Styling (hidden initially) */
.security-features-section .feature-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s, padding-top 0.4s; 
    text-align: left;
}
/* ----------------------------------------------------- */
/* 2. HOVER STATE: EXPANSION & CONTENT REVEAL           */
/* ----------------------------------------------------- */

/* Shrink/expand columns */
.security-features-section .security-row:hover .feature-col {
    max-width: 10%; 
    flex-basis: 10%; 
}.security-features-section .security-row .feature-col:hover {
    max-width: 40%; 
    flex-basis: 40%;
}
/* Card transformation */
.security-features-section .feature-col:hover .feature-card-wrapper {
    max-width: 100%; 
    border-radius: 20px; 
    height: 400px; 
    box-shadow: 0 0 0 1px #e9ecef, 0 15px 30px rgba(0,0,0,0.4), 0 0 30px rgba(0,153,255,0.8); 
    display: block; 
    padding: 30px; 
}
/* Keep overlay transparent */
.security-features-section .feature-col:hover .feature-card-wrapper::after {
    background: transparent;
}
/* Move title and description to left-bottom on hover */
.security-features-section .feature-col:hover .circle-content {
    position: absolute;
    bottom: 20px; 
    left: 20px;  
    width: calc(100% - 40px);
    text-align: left;
    padding: 0;
    margin: 0;
}
/* Reveal description */
.security-features-section .feature-col:hover .feature-description {
    max-height: 200px; 
    opacity: 1; 
    padding-top: 5px; 
    text-align: left;
}
/* Adjust title alignment and font on hover */
.security-features-section .feature-col:hover .feature-card-wrapper .feature-title {
    text-align: left;
    font-size: 1.1em;
    padding: 0;
}
/* Paragraph inside description */
.security-features-section .feature-description p {
    color: inherit;
    text-align: inherit;
}
/* ============================================ */
/* Added: New Pricing Plans Section */
/* ============================================ */

/* Section Container */
.pricing-plans-section {
    padding-top: 20px;
    padding-bottom: 50px;
    background-color: var(--npav-light-bg); 
}
.pricing-plans-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
}
.pricing-plans-section .text-muted {
    font-size: 1.1rem;
    color: #6c757d !important;
}
/* Base Card Styling */
.pricing-plans-section .plan-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}
.pricing-plans-section .plan-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
/* Header */
.pricing-plans-section .plan-header {
    text-align: center;
    margin-bottom: 30px;
}
.pricing-plans-section .plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--npav-green-dark);
}
.pricing-plans-section .plan-tagline {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
}
/* Pricing Display */
.pricing-plans-section .plan-price {
    margin-top: 15px;
}
.pricing-plans-section .price-value {
     font-size: 2rem;
    font-weight: 400;
    color: #212529;
}
.pricing-plans-section .price-duration {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}
/* Features List */
.pricing-plans-section .plan-features {
    padding-left: 0;
    margin-bottom: 30px;
}
.pricing-plans-section .check-item {
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    align-items: center;
    min-height: 48px;
}
/* Uses Boxicons (bx-check, bx-x) */
.pricing-plans-section .check-item i {
    font-size: 1.25rem;
    margin-right: 10px;
    color: var(--npav-green-primary);
    width: 20px;
    text-align: center;
}
.pricing-plans-section .check-item.disabled {
    color: #adb5bd;
    opacity: 0.7;
}
.pricing-plans-section .check-item.disabled i {
    color: #adb5bd;
}
/* Recommended/Best Value Card (Premium) */
.pricing-plans-section .plan-card.recommended {
    border-color: var(--npav-green-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 4px var(--npav-green-primary);
    transform: translateY(-10px);
}
.pricing-plans-section .plan-card.recommended:hover {
    transform: translateY(-15px);
}
.pricing-plans-section .plan-card.recommended .ribbon {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--npav-green-primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* ============================================ */
/* Combined Tabbed/2-Column Accordion FAQ Styles */
/* ============================================ */

.faq-section {
    background-color: var(--npav-light-bg); 
    padding-top: 50px;
}
.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700; 
    color: var(--npav-green-dark);
}
/* --- 1. Horizontal Tab Navigation Styling (Top Bar) --- */
.faq-tabs {
    border: 1px solid #c2c9d8; 
    border-radius: 8px;
    padding: 10px 15px;
    justify-content: center; 

    margin-bottom: 0 !important;
}
.faq-tabs .nav-item {
    margin: 0 10px; 
}
.faq-tabs .nav-link {
    font-size: 1.0rem;
    font-weight: 400;
    color: #6c757d; 
    padding: 2px 15px;
    border-radius: 6px; 
    border: none;
    transition: all 0.3s ease;
    background-color: transparent;
}
.faq-tabs .nav-link:hover:not(.active) {
    color: var(--npav-green-dark); 
    background-color: #f1f1f1;
}
/* Active Tab Style (The Dark Green Background) */
.faq-tabs .nav-link.active {
    color: #ffffff; 
    background-color: var(--npav-green-dark);
    border: 1px solid var(--npav-green-dark); 
    transform: none; 
}
/* --- 2. Accordion Styling (Inside the 2 Columns) --- */
.faq-accordion-column {
    --bs-accordion-border-width: 0;
}
.faq-accordion-column .accordion-item {
    border: 1px solid #e9ecef; 
    border-radius: 8px;
    margin-bottom: 15px; 
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}
/* Question Header (The button) */
.faq-accordion-column .accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--npav-green-dark); 
    padding: 18px 20px;
    background-color: #ffffff; 
    box-shadow: none !important;
    transition: all 0.3s ease;
}
/* Active Question Header (Expanded) */
.faq-accordion-column .accordion-button:not(.collapsed) {
    color: var(--npav-green-primary);
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}
/* Styling the Expand/Collapse Icon (+) */
.faq-accordion-column .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007a44'%3E%3Cpath fill-rule='evenodd' d='M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm.5-9a.5.5 0 0 0-1 0v2H6a.5.5 0 0 0 0 1h1.5v2a.5.5 0 0 0 1 0v-2H10a.5.5 0 0 0 0-1H8.5V6z'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: 100%;
    transform: none; 
    filter: brightness(0.7);
}
/* Icon for Active/Expanded State (Minus icon) */
.faq-accordion-column .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235cb85c'%3E%3Cpath fill-rule='evenodd' d='M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm-4-7a.5.5 0 0 0 0 1h8a.5.5 0 0 0 0-1H4z'/%3E%3C/svg%3E");
    filter: none; 
}
/* Answer Content */
.faq-accordion-column .accordion-body {
    padding: 20px;
    font-size: 1.0rem;
    line-height: 1.7;
    color: #495057;
    background-color: #ffffff;
    border-top: 1px solid #f1f1f1;
}
@media (max-width: 768px) {
    .faq-accordion-column {
        margin-bottom: 15px;
    }
}
/* ============================================
   RESTORE CTA BUTTON STYLES (NO NAV IMPACT)
============================================ */

/* Button container */
.right-cta-block .d-flex {
    align-items: center;
}
/* Buy Now button */
.btn-npav-green {
    background-color: var(--npav-green-primary);
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 4px 8px rgba(0,143,79,0.35);
    white-space: nowrap;
}
.btn-npav-green:hover {
    background-color: var(--npav-green-dark);
    transform: translateY(-1px);
     color: #fff;
}
/* Renewal button */
/* .btn-npav-outline {
    background-color: transparent;
    border: 2px solid var(--npav-green-primary);
    color: var(--npav-green-primary) !important;
    font-weight: 400;
    border-radius: 6px;
    padding: 0.45rem 1.1rem;
    white-space: nowrap;
} */

/* .btn-npav-outline:hover {
    background-color: var(--npav-green-primary);
    color: #fff !important;
} */


/* ============================================ */
/* Added: Partner & Feedback Section Styles */
/* ============================================ */
.partner-feedback-section {
    padding: 40px 0;
    background-color: #fcfdfe; 
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="1" fill="%23c2c9d8" /></svg>');
    background-size: 100px 100px;
}
.partner-feedback-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}
.partner-feedback-section .section-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 50px;
}
/* Feedback Box Container */
.feedback-box-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* --- Left Column: Form Styling --- */
.feedback-box-wrapper .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #d9dfe8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.feedback-box-wrapper .form-control:focus {
    border-color: var(--npav-green-primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 143, 79, 0.25);
}
.feedback-box-wrapper textarea.form-control {
    min-height: 150px;
}
/* Button Styling */
.partner-feedback-section .btn-npav-green {
    font-size: 1.05rem;
    padding: 6px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}
.partner-feedback-section .btn-npav-green i {
    margin-left: 8px;
    font-size: 1.2em;
}
/* --- Right Column: Contact Cards Styling --- */
.contact-info-block h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.contact-info-block p {
    font-size: 1rem;
    color: #5f6f73;
    line-height: 1.6;
}
.contact-card-v2 {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.contact-card-v2 img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
}
.contact-card-v2 h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}
.contact-card-v2 a {
    color: var(--npav-green-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}
.contact-card-v2 a:hover {
    color: var(--npav-green-dark);
}
.contact-card-v2 a i {
    font-size: 1.2em;
    margin-left: 5px;
    vertical-align: middle;
}
/* ============================================ */
/* Awards and Certifications Section */
/* ============================================ */
.awards-section {
    background-color: #f7f7f7; 
    padding-top: 50px;
    padding-bottom: 50px;
}
/* Main Section Title Text (Standard dark color, no background) */
.awards-title {
    color: #212529; 
    font-size: 2.2rem;
    font-weight: 700;
}
.awards-section .lead {
    color: #6c757d;
    font-size: 1.15rem;
    margin-bottom: 1%; 
}

/* Award Item Styling */
.award-item {
    padding: 10px; 
}
.award-badge {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden; 
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
}
.award-badge img {
    height: auto;
    max-height: 230px; 
    width: auto;
    object-fit: contain;
    padding: 20px;
    flex-grow: 1;
}
/* Individual Award Label */
.award-badge .award-label {
    background-color: #4CAF50; 
    color: #fff; 
    padding: 10px 5px; 
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: capitalize;
    width: 100%;
    border-radius: 0 0 6px 6px;
}

/* Owl Carousel Arrows Styling */
.awards-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5px; 
    pointer-events: none; 
}
/* Arrow Button Background and Shape */
.awards-section .owl-nav button {
    background: #fff !important; 
    color: #6c757d !important; 
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto; 
    opacity: 0.8;
    z-index: 10;
}
.awards-section .owl-nav button:hover {
    background: #f8f9fa !important;
    opacity: 1;
}
/* Font Awesome Icons */
.awards-section .owl-nav button.owl-prev:before {
    content: "\f053"; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900;
}.awards-section .owl-nav button.owl-next:before {
    content: "\f054"; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900;
}.awards-section .owl-nav button span {
    display: none;
}
/* Custom Button Styling for the 'Explore' CTA */
.btn-npav-green.btn-lg {
    background-color: #4CAF50; 
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}
.btn-npav-green.btn-lg:hover {
    background-color: #388E3C;
}
/* ============================================ */
/* Blog/News Section Styles */
/* ============================================ */
blog-section {
    background-color: #f8f9fa; 
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529; 
    /* margin-bottom: 50px; */
}
/* Individual Article Card */
.article-card {
    background-color: #fff;
    border-radius: 8px;
    
    border: 1px solid #dee2e6;
    
    overflow: hidden;
    height: 100%; 
    display: flex;
    flex-direction: column;
}
.article-card a.card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    flex-grow: 1; 
}
/* Image Wrapper for the Neon Image */
.card-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Card Body Content */
.article-card .card-body {
    padding: 15px;
    flex-grow: 1;
}
.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8rem; 
}
.article-summary {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    /* Limit summary to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.2rem; /* Ensure minimum height for summaries */
}
/* Card Footer (Read Link and Date) */
.article-card .card-footer {
    padding: 10px 15px;
    border-top: 1px solid #f1f1f1;
    font-size: 0.85rem;
}
.article-card .continue-reading {
    color: #4CAF50; /* Green link color */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.article-card .continue-reading:hover {
    color: #FF9800;
}
.article-card .article-date {
    color: #6c757d;
}
/* Owl Carousel Navigation for Blog Section (Dark Arrows on light background) */
.blog-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}
.blog-section .owl-nav button {
    background: #4CAF50 !important; /* Green background for arrows */
    color: #fff !important;
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    opacity: 0.9;
}.blog-section .owl-nav button:hover {
    background: #388E3C !important;
    opacity: 1;
}.blog-section .owl-nav button span { display: none; }.blog-section .owl-nav button.owl-prev:before { content: "\f053"; font-family: 'Font Awesome 5 Free'; font-weight: 900; }.blog-section .owl-nav button.owl-next:before { content: "\f054"; font-family: 'Font Awesome 5 Free'; font-weight: 900; }


/* ------------------- Product Section ------------------- */
.product-main-section {
    padding: 3rem 0;
    /* background-color: #f9f9f9; */
    /* background: linear-gradient(82deg, rgba(0, 143, 79, 0.05) 0%, rgba(0, 143, 79, 0.12) 45%, rgba(0, 143, 79, 0.18) 100%); */
    background: linear-gradient(82deg, rgba(0, 143, 79, 0.12) 0%, rgb(0 143 79 / 12%) 45%, rgb(0 143 79 / 0%) 100%);
}
/* ------------------- Product Image ------------------- */
.pd-product-image-container {
    max-width: 450px;
    margin: 0 auto;
    text-align: center; /* centers Powered By below image */
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pd-product-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    /* box-shadow: 0 1rem 2rem rgba(0,0,0,0.15); */
}
.pd-product-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}
.pd-product-image-container img:hover {
    transform: scale(1.05);
}
.pd-powered-by {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 1rem; /* keeps it below the image */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.pd-powered-by .fw-bold {
    font-size: 1.2rem;
    color: #222;
}
.pd-powered-by img {
    height: 65px;
    width: auto;
}


/* ------------------- Pricing ------------------- */
.pd-price-text {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1b1b1b;
}
.pd-old-price {
    text-decoration: line-through;
    color: #FF9800;
    font-size: 1.1rem;
    margin-right: 0.75rem;
}
.pd-save-badge {
    border-radius: 0.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    grid-area: save;
    background-color: #00ffaa;
    color: var(--npav-dark-bg);
    font-weight: 500;
    /* padding: 0 14px; */
    padding: 0.5% 2%;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    justify-self: start;
    clip-path: polygon(0% 0%, 94% 0%, 88% 50%, 94% 100%, 0% 100%, 6% 50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pd-save-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #00e699;
}

/* ------------------- Buttons ------------------- */
.pd-btn, .pd-buy-now-btn, .pd-btn-custom {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.65rem 2.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}/* 
.pd-features-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
} */

.pd-features-section {
    background-image: url('../img/featurebg.png');
    background-size: cover;          
    background-repeat: no-repeat;   
    background-position: center;     
    background-color: rgba(24, 101, 149, 0.07); 
    padding: 4rem 0;               
    border-radius: 0.5rem;
    position: relative;
    z-index: 1;
}
/* ---------- Actions Wrapper (Grid) ---------- */
.row.g-3.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.icon-text-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Align left, grid handles spacing */
}
.icon-text-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 2.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-buy-now-btn {
    background: linear-gradient(135deg, #198754, #1fa65b);
    color: #fff;
    border: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.65rem 2.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pd-buy-now-btn:hover {
    background: linear-gradient(135deg, #1fa65b, #198754);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.25);
    color: #fff;
}
/* ---------- Secondary Links ---------- */
.secondary-link {
    color: #198754;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2.1rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}
.secondary-link i {
    font-size: 1rem;
    margin-left: 0.3rem;
}
.secondary-link:hover {
    color: #1fa65b;
    text-decoration: none; /* no underline */
}
/* ---------- Icons inside buttons ---------- */
.icon-text-1 .icon1 i {
    font-size: 1rem;
}
/* ---------- Responsive Columns ---------- */
/* @media (max-width: 1200px) {
    .col-lg-3 {
        flex: 1 1 calc(33.33% - 1rem);
    }} */

/* @media (max-width: 992px) {
    .col-md-4 {
        flex: 1 1 calc(50% - 1rem);
    }} */

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 1 1 100%;
    }
    .icon-text-1 {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}
.actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem; /* spacing between buttons/links */
    align-items: center;
}
.actions-wrapper button,
.actions-wrapper .secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ------------------- Review Section ------------------- */
.pd-review-stars i {
    color: #f7c948;
    margin-right: 2px;
}
.pd-review-link {
    font-size: 0.9rem;
    color: #198754;
    text-decoration: none;
    font-weight: 500;
}
.pd-review-link:hover {
    text-decoration: underline;
}
/* ------------------- Billing / Pricing ------------------- */
.pd-billing-info {
    margin-top: 1rem;
}
.pd-billing-info .billing-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.pd-billing-info .billing-label {
    font-weight: 500;
    min-width: 130px;
    color: #333;
}
.pd-billing-info .billing-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1b1b1b;
}
.pd-billing-info small {
    color: #6c757d;
    font-size: 0.85rem;
}
/* ------------------- Dropdown / Select ------------------- */
select.pd-select {
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: #fff;
    color: #333;
    appearance: none;
}
select.pd-select:hover, select.pd-select:focus {
    transform: scale(1.02);
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    border-color: #198754;
    outline: none;
}
/* ------------------- Feature Cards ------------------- */
.pd-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
}
.pd-feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    background-color: #e6f7ff;
}
.pd-feature-card .d-flex h4 {
    transition: color 0.3s ease;
}
.pd-feature-card:hover .d-flex h4 {
    color: #198754;
}
.pd-feature-card p {
    transition: color 0.3s ease;
}
.pd-feature-card:hover p {
    color: #333;
}
.pd-feature-icon {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}
.pd-feature-card:hover .pd-feature-icon {
    /* transform: rotate(10deg) scale(1.1); */
     transform: rotateY(-180deg) scale(1.1);
}
/* ------------------- OS Compatibility ------------------- */
.pd-compatibility img, .compos {
    width: 45px;
    height: 45px;
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}
.pd-compatibility img:hover, .compos:hover {
    transform: scale(1.1);
}
/* ------------------- Misc Links ------------------- */
.pd-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-weight: 500;
}
.pd-links a.text-danger:hover {
    color: #c70039;
}
.pd-links a.text-primary:hover {
    color: #0b5ed7;
}
/* ------------------- Famous Products ------------------- */
.pd-famous-product-card {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}
.pd-famous-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}
.pd-famous-product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}
.pd-famous-product-card img:hover {
    transform: scale(1.08);
}
.pd-famous-product-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.pd-famous-product-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}
.pd-famous-product-card .pd-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}
/* ------------------- Responsive / Equal Height ------------------- */
@media (min-width: 768px) {
    .pd-equal-height-row {
        display: flex;
        flex-wrap: wrap;
    }
    .pd-equal-height-row > .col-md-4,
    .pd-equal-height-row > .col-md-3 {
        display: flex;
    }
}
.app-loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1055; /* above modal backdrop */
    display: none;
}
.app-loading-container .spinner-border {
    width: 3rem;
    height: 3rem;
}.error-message {
    color: #dc3545! important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.error {
    color: #dc3545 ! important;
    font-size: 0.875rem ! important;
    margin-top: 0.25rem ! important;
}
/* ------------------- Modal Wrapper ------------------- */
.demo-request-modal .modal-dialog {
    max-width: 700px;         
    margin: 1.75rem auto;    
}
.demo-request-modal .modal-content {
    /* background: #f7faff;       */
    border-radius: 1rem;
    padding: 2%;
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.2);
    border: none;
    position: relative;
    overflow: hidden;
}
/* ------------------- Header ------------------- */
.demo-request-modal .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #008f4f;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.demo-request-modal .btn-close {
    background-color: #d4f2e0;  
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    color: #008f4f;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.demo-request-modal .btn-close:hover {
    background-color: #008f4f;
    color: #fff;
}
/* ------------------- Modal Body ------------------- */
.demo-request-modal .modal-body {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
/* ------------------- Form Fields ------------------- */
.demo-request-modal input.form-control,
.demo-request-modal textarea.form-control {
    border-radius: 0.5rem;
    border: 1px solid #b5d0c7; 
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.demo-request-modal input.form-control:focus,
.demo-request-modal textarea.form-control:focus {
    border-color: #008f4f;
    box-shadow: 0 0 0 0.2rem rgba(0, 143, 79, 0.25);
}
/* ------------------- Submit Button ------------------- */
.demo-request-modal button[type="submit"] {
    background: #008f4f; 
    color: #fff;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.6rem 2rem;
    border: none;
    transition: all 0.3s ease;
}
.demo-request-modal button[type="submit"]:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0.75rem 1rem rgba(0,0,0,0.15);
}
/* ------------------- Loader ------------------- */
.demo-request-modal .app-loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1055;
    display: none;
}
/* ------------------- Error Messages ------------------- */
.demo-request-modal .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* ------------------- Responsive ------------------- */
@media (max-width: 576px) {
    .demo-request-modal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    .demo-request-modal button[type="submit"] {
        padding: 0.6rem 1rem;
    }
}





    
   