* {
    padding: 0;
    box-sizing: border-box;

}

#powder,
#granulated,
#cloves,
#juice,
#oil,
#essential-oil,
#oleoresin {
    scroll-margin-top: 6rem;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::selection {
    color: #fff;
    background: #3f5d45;
}

body,
html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth
}

.thankyou-sec .go-home {
    border: none;
    text-decoration: none
}

*,
.navbar .nav-items ul {
    margin: 0
}

.filters li a,
.menu-item,
.nav-button a,
.nav-items>ul>li>a,
.nav-logo a,
.thankyou-sec .go-home {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lato, serif;
    font-weight: 600
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.75rem;
}

a,
p {
    font-family: Lato, sans-serif
}


.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3f5d45;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3f5d45;
}


.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

@media only screen and (max-width:767px) {
    div#mobile-menu nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    div#mobile-menu #hamburger-cross {
        font-size: 90px;
    }
}

/* when header is in "dark" mode (top of hero) */
.header-dark .header-links a {
    color: white;
}

.header-dark #hamburger-menu {
    color: white;
}

/* when header switches to normal */
.header-light .header-links a,
.header-light .header-links button {
    color: black;
}

.header-light #hamburger-menu {
    color: black;
}



/* ===================== Homepage CSS ======================== */
section.new-home {
    /* background: #fbfae8; */
}

/* ===================== Homepage CSS End======================== */

/* ===================== Product Cards CSS ======================== */
.product-filter {
    padding-bottom: 0;
}

/* .Products-sec .overlay {

    bottom: -60px;
    background: #f5f3ea;
    color: #006838;
}

.Products-sec .item:hover .overlay {
    opacity: 1;
    bottom: 0
}

.Products-sec .item a img {
    transition: transform 0.6s ease;
}

.Products-sec .item a:hover img {
    transform: rotate(3deg) scale(1.1);
} */

.product-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 17px rgba(0, 0, 0, 0.14),
        0 3px 14px rgba(0, 0, 0, 0.12),
        0 5px 5px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.product-item:hover .product-name {
    opacity: 1;
}


.product-item:active .product-name {
    opacity: 1;
}

.product-item:focus-visible {
    outline: 2px solid #3f5d45;
    outline-offset: 2px;
}

@supports not (aspect-ratio: 4/3) {
    .product-image {
        height: 0;
        padding-bottom: 75%;
    }
}




/* ===================== Product Cards CSS ======================== */
/* ===================== Single Products CSS ======================== */
.technical-details {
    background-color: #ff7113
}

.product-nav .product-view-all {
    display: block;
    width: 23px;
    height: 23px;
    margin: 6px auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1200px;
    perspective: 1200px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-nav .product-view-all:hover {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

.product-nav .product-view-all span {
    display: inline-block;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #a8a8af;
    -webkit-box-shadow: 12px 0 0 #a8a8af, 0 12px 0 #a8a8af, 12px 12px 0 #a8a8af, 8px 0 0 transparent, 0 8px 0 transparent, 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    box-shadow: 12px 0 0 #a8a8af, 0 12px 0 #a8a8af, 12px 12px 0 #a8a8af, 8px 0 0 transparent, 0 8px 0 transparent, 8px 8px 0 transparent, 12px 8px 0 transparent, 8px 12px 0 transparent;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-nav .product-view-all:hover span {
    background-color: #000;
    width: 5px;
    height: 5px;
    -webkit-box-shadow: 16px 0 0 #000, 0 16px 0 #000, 16px 16px 0 #000, 8px 0 0 #000, 0 8px 0 #000, 8px 8px 0 #000, 16px 8px 0 #000, 8px 16px 0 #000;
    box-shadow: 16px 0 0 #000, 0 16px 0 #000, 16px 16px 0 #000, 8px 0 0 #000, 0 8px 0 #000, 8px 8px 0 #000, 16px 8px 0 #000, 8px 16px 0 #000;
}

/* ===================== Single Products CSS End======================== */


/* ===================== thank you page CSS ======================== */
.thankyou-sec h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 4em;
    letter-spacing: 3px;
    color: #3f5d45;
}

/* ===================== thank you page CSS End======================== */


/* ========================================= */

:root {
    --mdc-theme-primary: #435c46;
    --mdc-theme-secondary: #8a9e8e;
    --mdc-theme-background: #fafafa;
    --mdc-theme-surface: #ffffff;
    --mdc-theme-error: #b00020;
    --mdc-theme-on-primary: #ffffff;
    --mdc-theme-on-secondary: #000000;
    --mdc-theme-on-surface: #000000;
    --mdc-theme-on-error: #ffffff;
    --spacing-unit: 8px;
}

/* Material elevation classes */
.mat-elevation-z1 {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}

.mat-elevation-z2 {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.mat-elevation-z3 {
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12);
}

.mat-elevation-z4 {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

.mat-elevation-z6 {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.mat-elevation-z8 {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

/* Material-style header */
.app-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: var(--mdc-theme-surface);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

.scrolled {
    box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);
}

.content {
    padding-top: 64px;
}

/* Material button styles */
.mat-button {
    height: 36px;
    min-width: 64px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
}

.mat-button-primary {
    background-color: var(--mdc-theme-primary);
    color: var(--mdc-theme-on-primary);
}

.mat-button-outlined {
    background-color: transparent;
    border: 1px solid var(--mdc-theme-primary);
    color: var(--mdc-theme-primary);
}

.mat-button:hover {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

/* Material card styles */
.mat-card {
    background-color: var(--mdc-theme-surface);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

/* Material typography */
.mat-headline {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 16px 0;
}

.mat-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 0 16px 0;
}

.mat-subheading {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 16px 0;
}

.mat-body {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Hero section */
.hero-section {
    position: relative;
    padding: 64px 0;
    background-color: #f5f5f5;
    text-align: center;
}

/* Material divider */
.mat-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, .12);
    margin: 16px 0;
}

/* Industry cards */
.industry-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

/* Contact section styles */
.contact-icon {
    color: var(--mdc-theme-primary);
    font-size: 24px;
    margin-right: 16px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--mdc-theme-primary);
}

.swiper-pagination-bullet-active {
    background: #3f5d45;
}


/* Go to top button */
.go-top {
    position: fixed;
    bottom: 16px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--mdc-theme-primary);
    color: var(--mdc-theme-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background-color: #2c4231;
}

.hbspt-form {
    margin-top: 0 !important;
}

/* homepage hero section */
/* 🔁 Blinking cursor */

.hero-sec h1 {
    font-weight: 300;
}

.typed-text {
    color: #fff;
    font-weight: bold;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #fff;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

/* ✨ Blink animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* homepage hero section End*/


/* Responsive styles */
@media (max-width: 768px) {
    .app-bar {
        height: 56px;
    }

    .content {
        padding-top: 56px;
    }

    .product-name {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }

    .categories-section .box {
        min-width: 140px;
    }

    .tablist .tab-buttons {
        overflow-x: scroll;
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}