/*
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
 * ----------------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* family */
    --manrope: "Manrope", sans-serif;
    /* colors */
    --gradientIcon: linear-gradient(to bottom, #0ECECE 0%, #12C7B3 100%);
    --gradientBorder: linear-gradient(to right, #0ECECE 0%, #12C7B3 100%);
    --gradientBg: linear-gradient(to bottom, #102A43 0%, #12B5BF 100%);
    --smallFontColor: 64, 74, 61;
    --primaryBlue: 1, 41, 80;
    --primaryGreen: 3, 188, 171;
    --fullWhite: 255, 255, 255;
    --darkBlack: 9, 9, 11;
    --lghtBlack: 156, 163, 175;
    --sectionBg: 250, 250, 250;
    --grey: 113, 113, 122;
    --lightBlue: 19, 207, 207;
    --black: 19, 207, 207;

    /* heading text sizes */
    --sectionHead: 80px;
    --subsectionHead: 48px;
    --sectionSubHead: 14px;
    --bodytext: 16px;
    --casualSize: 18px;
    --sectionCardHead: 30px;
    --topHeadCard: 20px;
    --cardHead: 18px;
}

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

}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    display: inline-flex;
    transition: color 0.4s ease;
}

a:hover {
    color: rgb(var(--lightBlue));
}
/*  =========================== Sticky header==========================*/
.theme-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    background: transparent;
    transition: all 0.3s ease-in-out;
}
.theme-header.is-sticky {
    background-color: #ffffff; /* Solid background on scroll */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.theme-header .mobile-toggle i {
    transition: color 0.3s ease;
}
.theme-header.is-sticky .topnav {
    display: none !important; 
}
.theme-header.is-sticky .logo-white { display: none !important; }
.theme-header.is-sticky .logo-colored { display: block !important; }
.theme-header.is-sticky .nav-menu > li > a {
    color: #333333 !important; 
}
.theme-header.is-sticky .mobile-toggle i {
    color: #333333 !important;
}

.theme-header.is-sticky .mega-menu-wrap ul.mega-menu > li.mega-menu-item > a.mega-menu-link {
    color: #333333 !important;
}
/*  ============================Sticky header ===================================================*/
/* top navbar */
.topnav {
    background: rgba(var(--primaryBlue));
    font-family: var(--primaryFont);
}

.top-contact {
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    color: rgba(var(--primaryGreen));
    font-size: 14px;
    margin-right: 10px;
}

.glow-line {
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, .8),
            #ffffff,
            rgba(255, 255, 255, .8),
            transparent);
}

.contact-item a {
    color: rgba(var(--fullWhite));
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: rgba(var(--primaryGreen));
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: rgba(var(--fullWhite));
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: rgba(var(--primaryGreen));
    ;
    transform: translateY(-2px);
}

/* main nav */
.main-nav {
    border-bottom: 1px solid rgba(var(--fullWhite), 20%);
    background-color: rgba(var(--fullWhite), 10%);
    padding: 16px 0;
}

#primary-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: start;
    margin-bottom: 0px;
    gap: 32px;
}

#primary-menu li a {
    color: var(--grey);
}

.nav-right i {
    color: rgb(var(--lghtBlack));
}

.nav-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: rgb(var(--lightBlue));
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: .3s ease;
    color: rgb(var(--primaryBlue));
    font-size: 14px;
    font-weight: 500;
}

.nav-button a {
    color: rgba(var(--fullWhite));
}

.nav-button i,
.btn-primary-custom .btn-primary-inner i,
.btn-border-custom i,
.learn-more-btn i,
.explore-link i {
    font-size: 16px;
    line-height: 16px;
}

.nav-button a {
    position: relative;
    z-index: 2;
    color: rgb(var(--fullWhite));
    text-decoration: none;
    transition: .3s ease;
}

.nav-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradientBorder);
    transform: scaleX(0);
    transform-origin: bottom;
    transition: transform .4s ease;
    z-index: -1;
}

.nav-button:hover::before {
    transform: scaleX(1);
}

.nav-button:hover {
    transform: translateY(-3px);
    color: rgb(var(--fullWhite));
}

.mega-menu-toggle {
    display: none !important;
}

#mega-menu-wrap-primary .mega-menu-toggle+#mega-menu-primary {
    display: block !important;
    background: transparent !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    color: rgb(var(--fullWhite));
    font-size: 14px;
    letter-spacing: 0.35px;
    padding: 0 16px;
    transition: color 0.4s ease;
    font-weight: 500 !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
    background-color: transparent;
    color: rgb(var(--fullWhite));
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    background: transparent;
    color: rgb(var(--fullWhite));
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus {
    color: rgb(var(--lightBlue));
    font-weight: 500 !important;
}

.icon-btn {
    color: rgb(var(--fullWhite));
    border: 1px solid rgba(var(--fullWhite), 10%);
    font-size: 24px;
    line-height: 24px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: color 0.4s ease;
}

.icon-btn:hover {
    color: rgb(var(--lightBlue));
}

/* banner section */
.hero-banner {
    padding: 64px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 84%), url("https://injectovends.com/wp-content/uploads/2026/07/banner-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 140px;
}


.banner-subtitle,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--sectionSubHead);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgb(var(--primaryGreen));
    font-family: var(--manrope);
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 24px;
}

.banner-content h1 {
    font-size: var(--sectionHead);
    letter-spacing: -1.76px;
    line-height: 76px;
    color: rgb(var(--fullWhite));
    font-weight: 900;
}

.text-highlight {
    color: rgb(var(--lightBlue));
}

.content-style {
    font-size: var(--bodytext);
    line-height: 29px;
    color: rgb(var(--grey));
}

.banner-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    position: relative;
    transform: translateY(0px);
    transition: transform 0.4s ease;
}

.btn-primary-custom .btn-primary-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    background: transparent;
    color: rgb(var(--fullWhite));
    border: none;
    z-index: 3;
    transition: color 0.4s ease;
    gap: 8px;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--primaryBlue));
    border-radius: 8px;
    z-index: 1;
}

.btn-primary-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 100%;
    background: var(--gradientBorder);
    border-radius: 8px;
    z-index: 0;
    transition: z-index 0.6s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);

}

.btn-primary-custom:hover::after {
    z-index: 1;
    transition: z-index 0.6s ease;
}

.btn-primary-custom:hover .btn-primary-inner {
    color: rgb(var(--primaryBlue));
}

.btn-border-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: rgb(var(--fullWhite));
    border: 1px solid rgb(var(--fullWhite));
    padding: 16px 32px;
    background: transparent;
    transition: background 0.4s ease;
    border-radius: 8px;
}

.btn-border-custom:hover {
    background: rgb(var(--fullWhite), .1);
    color: rgb(var(--fullWhite));
}

.hero-img img {
    border-radius: 24px;
    border: 3px solid rgb(var(--fullWhite));
    box-shadow: 0 0 14 0 rgba(var(--black), 25%);
}

/* trusted-section */
.trusted-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.trusted-content {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: rgb(var(--fullWhite));
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.logo-track img {
    height: 59px;
    width: auto;
    object-fit: cover;
    opacity: .8;
    transition: .3s;
}

.logo-track img:hover {
    opacity: 1;
}

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

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

/* formula section */
.formula-section {
    padding: 60px 0px;
}

.section-head {
    font-size: var(--subsectionHead);
    line-height: 53px;
    color: rgb(var(--primaryBlue));
    font-weight: 700;
}

.section-tag {
    padding-bottom: 16px;
}

.formula-card {
    background: rgb(var(--fullWhite));
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    transition: .3s ease;
    height: 100%;
    border: 1px solid rgb(var(--lightBlue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.formula-card:hover {
    transform: translateY(-5px);
}

.formula-card h6 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: rgb(var(--primaryBlue));
    letter-spacing: -1.76px;
}

.formula-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    color: rgb(var(--grey));
}

.formula-symbol {
    font-size: 36px;
    font-weight: 300;
    color: rgb(var(--lightBlue));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formula-symbol.equal {
    color: rgb(var(--primaryGreen));
    display: flex;
    align-items: center;
    justify-content: center;
}

.formula-main {
    padding: 24px;
    background-color: #F6FBFF;
    border: 1px solid rgb(var(--lightBlue));
    border-radius: 20px;
    margin-top: 40px;
}

.result-card {
    border: none;
    background: transparent;
}

.result-card h6 {
    font-size: 32px;
    font-weight: 700;
}

.result-card p {
    font-size: 18px;
    color: rgb(var(--lightBlue));
}

/* about section */
.about-section {
    background: rgb(var(--primaryBlue));
    padding: 64px 0;
}

.about-divider {
    height: 1px;
    background: rgba(var(--darkBlack), 0.08);
    margin: 35px 0 25px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgb(var(--lightBlue));
    font-weight: 700;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    font-family: rgb(var(--manrope));
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(var(--lightBlue), 0.6);
}

.learn-more-btn:hover {
    opacity: 1;
}

.certification-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.certificate-item img {
    max-height: 90px;
    width: auto;
}

.about-feature-box {
    border-radius: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(var(--lightBlue), 12%);
    flex: 0 0 calc(50% - 20px);
    flex-direction: column;
    gap: 8px;
    border-radius: 20px;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: var(--cardHead);
    color: rgb(var(--fullWhite));
    font-weight: 500;
    padding-top: 8px;
}

.feature-content p {
    margin: 0;
    color: rgb(var(--fullWhite), 0.8);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

/* choose section */
.choose-section {
    padding: 64px 0;
}

.choose-card {
    background: #fff;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    border-radius: 18px;
    padding: 16px;
    height: 100%;
    transition: all .3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: rgba(var(--primaryGreen), 0.25);
}

.choose-icon {
    margin-bottom: 15px;
}

.choose-icon i {
    font-size: 32px;
    background: var(--gradientBg);
    -webkit-text-fill-color: transparent;
}

.choose-card h4 {
    font-size: 26px;
    font-size: clamp(20px, 2vw, var(--topHeadCard));
    color: rgb(var(--darkBlack));
    margin-bottom: 10px;
    font-weight: 600;
}

.choose-card p {
    color: rgb(var(--grey));
    line-height: 1.7;
    margin-bottom: 0;
}

/*product-section */
.product-section {
    padding: 64px 0px;
}

.product-card.large-card {
    padding: 32px;
}

.product-card {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f8f8;
    padding: 24px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 250px;
    transition: background 0.4s ease;
}

.product-img {
    position: relative;
    height: 100%;
}

.product-img img {
    position: absolute;
    right: -16%;
    bottom: -35%;
    z-index: 0;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.large-card .product-img img {
    right: 0%;
    bottom: -12%;
}

.product-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.large-card h3 {
    font-size: 35px;
    line-height: 36px;
    font-weight: 700;
    color: rgb(var(--primaryBlue));
}

.small-card h4 {
    font-size: var(--topHeadCard);
    font-weight: 700;
    line-height: 28px;
    color: rgb(var(--primaryBlue));
    margin-bottom: 0;
}

.product-content p {
    font-family: var(--manrope);
    font-size: var(--bodytext);
    color: rgb(var(--grey));
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.29%;
    color: rgb(var(--primaryBlue));
}

.product-card:hover {
    background: rgba(var(--lightBlue), 5%);
}

.product-card:hover .product-img img {
    transform: scale(1.2);
}

/* Product section */
.items-section {
    background: rgb(var(--sectionBg));
    padding: 64px 0;
}

.items-main {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.item-card {
    padding: 32px;
    border: 1px solid #D6D6D6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border-radius: 32px;
    background: transparent;
    transform: translateY(0);
    transition: background 0.4s ease, transform 0.4s ease;
}

.item-content h4 {
    font-size: var(--topHeadCard);
    color: rgb(var(--primaryBlue));
    font-weight: 700;
    letter-spacing: -0.88%;
    line-height: 28px;
}

.item-content span {
    font-size: var(--bodytext);
    color: rgb(var(--primaryBlue));
    font-weight: 500;
    letter-spacing: -0.88%;
    line-height: 28px;
    display: inline-flex;
}

.item-content p {
    font-size: var(--sectionSubHead);
    color: rgb(var(--grey));
    line-height: 20px;
    letter-spacing: -3.32%;
    font-weight: 500;
}

.item-card:hover,
.item-card:active {
    background: rgba(var(--lightBlue), 5%);
    transform: translateY(4px);
}

/* testimonial section */
.testimonial-section {
    padding: 64px 0;
}

.testimonial-card {
    border: 1px solid rgba(var(--darkBlack), 0.08);
    border-radius: 28px;
    padding: 32px;
    text-align: left;
    background: rgb(var(--fullWhite));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.testimonial-highlighter {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    color: rgb(var(--lightBlue));
    width: 40px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid rgba(var(--lightBlue), 12%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 22px;
    font-style: italic;
    color: rgb(var(--grey));
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-user h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: rgb(var(--primaryBlue));
    margin-bottom: 0;
}

.testimonial-user p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: rgb(var(--grey));
    margin-bottom: 0;
}

/* Navigation */

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.testimonial-prev {
    left: -15px;
   	background: var(--gradientBorder);
    color: rgb(var(--fullWhite));
}

.testimonial-next {
    right: -15px;
    background: var(--gradientBorder);
    color: rgb(var(--fullWhite));
}

.testimonial-prev i,
.testimonial-next i {
    font-size: 14px;
}

/* Pagination */

.testimonialSwiper {
    padding-bottom: 50px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d5dbe5;
    opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--gradientBorder);
}

/* cta section */
.cta-section {
    padding: 64px 0px;
    background: linear-gradient(90deg, rgba(var(--primaryBlue), 80%) 0%, rgba(var(--primaryBlue), 80%) 100%), url("https://hivends.org/injectovends/wp-content/uploads/2026/07/ct-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-btn.btn-primary-custom .btn-primary-inner {
    color: rgb(var(--primaryBlue));
}

.cta-btn.btn-primary-custom::before {
    background: rgb(var(--fullWhite));
}

/* main footer */
.main-footer-section {
    background: url('https://hivends.org/injectovends/wp-content/uploads/2026/07/footer-bg.png'), linear-gradient(90deg, rgba(var(--primaryBlue), 100%) 0%, rgba(var(--primaryBlue), 100%) 100%) ;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--fullWhite);
    padding: 96px 0 40px 0;
}

.foot-head {
    font-size: var(--sectionCardHead);
    font-weight: 700;
    color: rgb(var(--fullWhite));
    margin: 0;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 15px 0;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.newsletter-form button {
    border: none;
    background: rgb(var(--primaryGreen));
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
}

.footer-content {
    padding-bottom: 60px;
}

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

.footer-about {
/*     color: rgb(var(--grey)); */
	color: #fff;
    line-height: 22px;
    font-weight: 400;
    font-size: var(--sectionSubHead);
}

.subscribe-form {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    flex-wrap: wrap;
}

.subscribe-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    font-family: sans-serif;
    transition: border-color 0.2s ease;
}

.subscribe-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.subscribe-input::placeholder {
    color: #627d98;
    /* Muted slate blue text color matching image */
}

.subscribe-btn {
    background-color: #ffffff;
    color: #0d233a;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    /* Prevents text wrapping onto two lines */
    transition: opacity 0.2s ease;
}

.subscribe-btn:hover {
    opacity: 0.9;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.footer-social a {
    color: rgb(var(--lghtBlack));
    font-size: 20px;
    line-height: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--fullWhite), 10%);
    border-radius: 30px;
}

.stay-p {
    font-size: 12px;
}

.footer-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
}

.double-arrow {
    margin-right: 10px;
}

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

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

.footer-links a {
/*     color: rgb(var(--grey)); */
	color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.footer-links a:hover {
    color: rgb(var(--lightBlue));
}

.foot-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgb(var(--primaryBlue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-contact-item span {
    color: rgba(255, 255, 255, .75);
    display: block;
    margin-bottom: 5px;
}

.foot-contact-item h6 {
    color: #fff;
    line-height: 1.7;
    font-size: var(--topHeadCard);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgb(var(--fullWhite), .1);
    background: rgb(var(--bottomFooter));
    padding: 20px 0;
    text-align: center;
    color: rgb(var(--lghtBlack));
    font-size: 15px;
}

/* Responsive */
@media(max-width:575px) {
    .feature-item {
        flex-direction: column-reverse;
        text-align: center;
    }

    .inner-banner {
        padding: 50px 0 40px;
    }

    .certification-wrap {
        justify-content: center;
    }

    .learn-more-btn {
        margin-bottom: 25px;
    }

    .large-card,
    .small-card {
        height: 280px;
    }

    .product-content {
        padding: 20px;
    }

    .large-card h3 {
        font-size: 24px;
    }

    .small-card h4 {
        font-size: 20px;
    }

    .choose-card {
        padding: 20px;
    }
}

@media(max-width: 767px) {
    .img-wrapper img {
        position: relative;
        top: 0px;
    }
}

@media(max-width:992px) {
    :root {
        --sectionHead: 25px;
    }

    .img-wrapper img {
        position: relative;
        top: 0px;
    }

    .main-nav-container {
        padding: 16px 0;
    }

    #primary-menu {
        justify-content: center;
        gap: 20px;
    }

    .trusted-content {
        justify-content: center;
        padding-left: 22px;
        padding-right: 0;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .logo-track {
        gap: 50px;
    }

    .logo-track img {
        height: 35px;
    }

    .product-section {
        padding: 70px 0;
    }

    .large-card {
        height: 450px;
    }

    .small-card {
        height: 260px;
    }

    .choose-section {
        padding: 70px 0;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-prev,
    .testimonial-next {
        display: none;
    }

    .formula-section {
        padding: 70px 0;
    }

    .formula-card {
        padding: 25px 15px;
    }

    .result-card h5 {
        font-size: 22px;
    }

    .about-section {
        padding: 70px 0;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-icon i {
        font-size: 45px;
    }

    .certificate-item img {
        max-height: 70px;
    }
}

/* @media(max-width:1200px) {
    :root {
        --sectionHead: 30px;
    }
} */

/* ********************************************inner pages********************************** */
/* --------------about------------- */
.about-image-box {
    position: relative;
}

.about-image-box img {
    border-radius: 15px;
}

.experience-card {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--gradientBorder);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.counter-box {
    text-align: center;
}

.counter-box h3 {
    color: transparent;
    background: var(--gradientBg);
    background-clip: text;
    font-weight: 700;
}

.journey-section {
    background: rgb(var(--sectionBg));
}

.timeline-card,
.commitment-card {
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    transition: .3s;
}

.timeline-card:hover,
.commitment-card:hover {
    transform: translateY(-5px);
}

.timeline-card h2 {
    font-size: 50px;
    font-weight: 700;
    background: var(--gradientBg);
    background-clip: text;
    color: transparent;
}

.commitment-card {
    text-align: center;
}

.commitment-card i {
    border-radius: 50px;
    font-size: 45px;
    margin-bottom: 20px;
    background: var(--gradientBorder);
    color: white;
    font-size: 26px;
    padding: 15px 28px;
    display: flex;
    justify-content: center
}

/* --------------director-message------------- */
.director-message-section,
.leadership-section {
    padding: 64px 0;
}

.director-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgb(var(--primaryGreen));
}

.director-image-box img {
    border-radius: 24px;
}

.director-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: rgb(var(--primaryBlue));
}

.quote-box {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(var(--darkBlack), 0.08);
}

.quote-box i {
    font-size: 50px;
    margin-bottom: 20px;
    background: var(--gradientBg);
    color: transparent;
    background-clip: text;
}

.signature-box {
    margin-top: 30px;
}

.signature-box h5 {
    color: rgb(var(--primaryBlue));
    margin-bottom: 5px;
}

.signature-box span {
    color: rgb(var(--grey));
}

.leadership-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    text-align: center;
    transition: .3s;
}

.leadership-card:hover {
    transform: translateY(-5px);
}

.leadership-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(var(--primaryGreen), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-icon i {
    font-size: 28px;
    color: rgb(var(--primaryGreen));
}

.future-vision-section {
    padding: 100px 0;
    background: var(--gradientBg);
    color: #fff;
}

.section-tag-white {
    color: #fff;
}

.vision-head {
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 700;
    margin: 20px 0;
}

.future-vision-section p {
    max-width: 850px;
    margin: auto;
    opacity: .9;
}

.vision-stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 25px;
}

.vision-stat h3 {
    font-size: 42px;
    margin-bottom: 5px;
    color: #fff;
}

/* --------------director-message------------- */
.services-section,
.process-section,
.partner-section {
    padding: 64px 0;
}

.process-section {
    background: rgb(var(--sectionBg));
}

.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    border-radius: 20px;
    padding: 35px;
    transition: .3s;
}

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

.service-card i {
    font-size: 42px;
    margin-bottom: 20px;
    color: rgb(var(--primaryGreen));
    color: transparent;
    background: var(--gradientIcon);
    background-clip: text;
}

.process-card {
    text-align: center;
    padding: 30px 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
    background: var(--gradientBg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    color: #fff;
    font-size: 28px;
}

.process-arrow {
    font-size: 30px;
    color: rgb(var(--primaryGreen));
    font-weight: 700;
}

.partner-list {
    margin-top: 25px;
    padding-left: 20px;
}

.partner-list li {
    margin-bottom: 12px;
    color: rgb(var(--grey));
}

.stat-card {
    text-align: center;
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: transparent;
    background: var(--gradientBorder);
    background-clip: text;
}

/*  */
.quality-hero-section,
.quality-process-section,
.standards-section {
    padding: 64px 0;
}

.quality-process-section {
    background: var(--gradientBg);
}

.quality-process-section .section-tag {
    color: var(--fullWhite);
}

.quality-image-box {
    position: relative;
}

.quality-image-box img {
    border-radius: 15px;
}

.floating-quality-card {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--gradientBg);
    color: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
}

.floating-quality-card h4 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.quality-features {
    margin-top: 30px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.quality-feature i {
    color: rgb(var(--primaryGreen));
}

.quality-step-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    transition: .3s;
}

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

.step-number {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradientBg);
    background-clip: text;
    color: transparent;
}

.standards-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
}

.standard-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(var(--darkBlack), 0.08);
}

.standard-item:last-child {
    border: none;
}

.standard-item i {
    font-size: 32px;
    min-width: 40px;
    color: transparent;
    background: var(--gradientBorder);
    background-clip: text;
}

.standard-item h5 {
    color: rgb(var(--primaryBlue));
    margin-bottom: 5px;
}

.standard-item p {
    margin: 0;
    color: rgb(var(--grey));
}

/* partner-with us */
.partner-hero-section,
.partnership-benefits-section,
.contact-section {
    padding: 64px 0;
}

.partnership-benefits-section {
    background: rgb(var(--sectionBg));
}

.partner-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-point i {
    color: rgb(var(--primaryGreen));
}

.benefit-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
    text-align: center;
    transition: .3s;
}

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

.benefit-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: transparent;
    background: var(--gradientIcon);
    background-clip: text;
}

.contact-info-box {
    margin-top: 40px;
}

.partner-image-box img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
}

.partner-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.partner-contact-item i {
    width: 55px;
    height: 55px;
    background: var(--gradientBg);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(var(--darkBlack), 0.08);
}

.form-control {
    height: 55px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
}

/* breadcrumb */
.inner-banner {
    position: relative;
    background: rgb(var(--primaryBlue));
    padding: 140px 0 60px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.inner-banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 100%;
    background: var(--gradientBorder);
    z-index: -1;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.mega-menu #mega-menu-item-48 {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
}

#mega-menu-item-48::after {
    content: "";
    width: 196px;
    height: 46px;
    display: flex;
    margin: 0 16px;
    background: url("https://hivends.org/injectovends/wp-content/uploads/2026/07/injecto-logo.png") center/contain no-repeat;
}

.mobile-toggle {
    color: #fff !important;
}

/* --- WordPress Sub-Menu Fixes for Mobile Drawer --- */

/* Hide submenu by default for accordion effect */
.mobile-nav-menu .sub-menu {
    display: none; 
    list-style: none !important;
    padding-left: 20px;
    margin: 0;
    border-top: 1px solid #eee;
}

/* Add a dropdown arrow icon to items with children */
.mobile-nav-menu .menu-item-has-children > a {
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-menu .menu-item-has-children > a::after {
    content: '\f107'; /* FontAwesome Angle Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.mobile-nav-menu .menu-item-has-children.active-accordion > a::after {
    transform: rotate(180deg);
}


/* Scrollable */
/* Apply ONLY to Mobile and Tablet (below desktop breakpoint) */
@media (max-width: 991px) {
    .drag-scroll-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px; /* Safe space */
        cursor: grab;
        
        /* Hide scrollbar completely across browsers */
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }
    
    .drag-scroll-container::-webkit-scrollbar {
        display: none; 
    }
    
    .drag-scroll-container:active {
        cursor: grabbing;
    }
    
    /* Make each item take up 85% of the screen width */
    .drag-scroll-container .feature-item {
        flex: 0 0 85%;
        max-width: 85%;
    }
	
	.product-drag-scroll {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 15px; 
        cursor: grab;
        
        /* Hide scrollbars completely */
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
    
    .product-drag-scroll::-webkit-scrollbar {
        display: none; 
    }
    
    .product-drag-scroll:active {
        cursor: grabbing;
    }
    
    /* Make each small product card take up 85% of the screen width */
    .product-drag-scroll > .col-md-6 {
        flex: 0 0 85% !important;
        max-width: 85% !important;
    }
	.product-card {
		padding: 0px !important;
		
	}
	.product-card.small-card .product-img {
        padding-right: 15px !important;
        padding-bottom: 15px !important;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
	.product-card.small-card .product-img img {
        max-width: 80% !important; 
        height: auto !important;
        object-fit: contain;
    }
	.product-img img {
		position: absolute;
		right: -3%;
		bottom: 9%;
		z-index: 0;
		transform: scale(1);
		transition: transform 0.4s ease;
	}
 
}

