/* Reset & Variables */
:root {
    --gold: #d0a456;
    --gold-dark: #b88d44;
    --green: #0f6636;
    --green-dark: #24627c;
    --green-light: #24627c;
    --base-color: #24627c;
    --base-color-dark: #24627c;
    --base-color-light: #24627c;
    --secondary-color: #d0a456;
    --light-bg: #fdfdfd;
    --light-gray: #f5f7fa;
    --border-light: #eaebed;
    --dark-bg: #1c1f24;
    --darker-gray: #15171a;
    --border-secondary: #2c2f36;
    --text-dark: #1f2937;
    --text-gray-dark: #4b5563;
    --text-gray-light: #9ca3af;
    --font-1: 'Outfit', sans-serif;
    --font-2: 'Inter', sans-serif;
    --color-1: #063e20;
    --color-2: #195041;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: var(--font-2);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

body {
    /* overflow: scroll; */
    /* scrollbar-color: red orange; */
    /* scrollbar-width: thin; */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-1);
}

ul {
    list-style: none;
    padding: 0px;
}

a {
    text-decoration: none
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text--primary {
    color: var(--base-color)
}

.text-primary-custom {
    color: #d0a456;
}

.text-green {
    color: var(--green);
}

.text-secondary-custom {
    color: var(--secondary-color);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

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

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-self-end {
    align-self: flex-end;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow-1 {
    flex-grow: 1;
}

@media (min-width: 768px) {
    .md-flex-row {
        flex-direction: row;
    }

    .md-px-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 992px) {
    .lg-flex-row {
        flex-direction: row;
    }

    .lg-w-50 {
        width: 50% !important;
    }

    .lg-w-30 {
        width: 33.333% !important;
    }

    .lg-w-20 {
        width: 20% !important;
    }

    .lg-pl-5 {
        padding-left: 3rem;
    }
}

/* Sizing & Positioning Utilities */
.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.max-w-lg {
    max-width: 800px;
}

.max-w-md {
    max-width: 600px;
}

.w-max {
    width: max-content;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.object-fit-cover {
    object-fit: cover;
}

.d-none {
    display: none;
}

/* Color Utilities */
.text-gold {
    color: var(--gold) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-green-light {
    color: var(--green) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-gray-dark {
    color: var(--text-gray-dark) !important;
}

.text-gray-light {
    color: var(--text-gray-light) !important;
}

.text-light {
    color: #f9fafb !important;
}

.text-white {
    color: #ffffff !important;
}

.bg-primary, .bg-primary-custom {
    background-color: var(--green) !important;
}

.bg-secondary {
    background-color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-light {
    background-color: rgb(248 249 250) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-darker-gray {
    background-color: var(--darker-gray) !important;
}

.bg-dark-overlay {
    background-color: rgba(18, 20, 24, 0.75);
}

.border-light {
    border-color: var(--border-light) !important;
}

.border-secondary {
    border-color: var(--border-secondary) !important;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.25;
}

.lh-base {
    line-height: 1.6;
}

.lh-lg {
    line-height: 1.8;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-90 {
    opacity: 0.9;
}

/* Effects & Transitions */
.transition {
    transition: all 0.3s ease;
}

.hover-gold:hover {
    color: var(--gold) !important;
}

.hover-green:hover {
    color: var(--green) !important;
}

.hover-white:hover {
    color: #ffffff !important;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

.hover-gold-border:hover {
    border-color: var(--gold) !important;
}

.hover-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover-translate-y:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    padding: 14px 40px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--base-color);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(208, 164, 86, 0.3);
}

.btn-green {
    background-color: var(--color-2);
    color: #fff;
}

.btn-green:hover {
    background-color: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(36, 124, 63, 0.3);
}

.btn-outline-green {
    color: var(--green);
    border: 1px solid var(--green);
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background-color: var(--green);
    color: #fff;
}

.btn-outline-dark {
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-outline-light:hover,.btn-outline-light:active {
    background-color: #fff;
    color: var(--text-dark) !important;
}

/* Nav */
.nav-item {
    position: relative;
    padding: 20px 20px;
    white-space: nowrap;
    color: #ffffffe8;
    font-size: 1.005rem;
    /* text-transform: uppercase; */
    font-weight: 600 !important;
    transition: all 350ms ease;
    border-bottom: 4px solid transparent;
    /* vertical-align: text-top; */
    line-height: 1;
    /* vertical-align: sub; */
}

.mobile-nav .nav-item {
    border-bottom: 0px;
    padding: 8px 0px !important;
}

.light .nav-item {
    color: #114227;
}

.nav-item:hover, .nav-item.active {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary-color);
}

.light .nav-item:hover, .light .nav-item.active {
    color: #114227;
    background: rgba(255, 255, 255, 0.04);
    border-color: #114227;
    background: rgba(255, 255, 255, 0.15);
    --tr: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-bottom .nav-item span0 {
    position: relative;
    line-height: normal;
    overflow: hidden;
    display: inline-block;
}

.header-bottom .nav-item span0:before {
    content: attr(data-attr);
    position: absolute;
    color: var(--secondary-color);
    /* inset: 0; */
    /* transform: translateX(-100%); */
    /* transform: translateX(-28%); */
    /* transform-origin: bottom; */
    left: 0;
    top: 0;
    display: block;
    width: 0%;
    transition: all 550ms linear;
    overflow: hidden;
}

.header-bottom .nav-item:hover span:before {
    width: 100%;
    /* transform: translateX(0%); */
}

.header-bottom .nav-item {
}

.header-bottom .nav-item {
}

/* Hero Slider specific overrides */
.hero-slider .owl-dots {
    display: none;
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 30;
}

.hero-slider .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 5px 8px;
    transition: all 0.3s ease;
}

.hero-slider .owl-theme .owl-dots .owl-dot.active span, .hero-slider .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--gold);
    transform: scale(1.3);
}

/* Product Specifics */
.group:hover .group-hover-scale {
    transform: scale(1.05);
}

/* Review Specifics */
.min-hide-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-carousel .owl-dots {
    margin-top: 30px !important;
    display: flex;
    gap: 5px 8px;
    align-items: center;
    justify-content: center;
}

.review-carousel .owl-dots span {
    width: 12px;
    height: 10px;
    border-radius: 999px;
    background-color: var(--secondary-color);
    display: inline-block;
    transition: all 350ms ease;
}

.review-carousel .owl-dot.active span {
    width: 22px;
    background: var(--base-color);
}

.review-carousel .owl-theme .owl-dots .owl-dot.active span {
    background: var(--green);
}

.feature-card {
    flex: 1 1 300px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 1.5rem;
}

.feature-card .icon-wrapper {
    transition: color 0.3s ease;
    color: var(--base-color);
}

.feature-card .icon-wrapper span {
    display: inline-flex;
    width: 55px;
    height: 55px;
    background-color: var(--green-dark);
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.feature-card:hover .icon-wrapper {
    color: var(--secondary-color) !important;
}

.about-img img {
    border: 8px solid #fff;
}

.experience-badge {
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 6px solid #fff;
}

.sec-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

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

.product-img {
    position: relative;
    padding-bottom: 63%;
    background-color: #eee;
    /* border-radius: 10px; */
    overflow: hidden;
}

.product-img__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: all 350ms ease
}

.bg-light-gray {
    background-color: #f3f4f6 !important;
}

.product-info h3 {
    font-size: 1.25rem;
    padding: 5px 0 0;
}

.product-btn__link {
    text-decoration: none;
    color: var(--base-color);
    font-weight: 500;
    font-size: 0.875rem;
}

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

.review-card p {
}

.review-card h6 {
    font-family: var(--font-2);
    color: #161616;
    font-size: 1.155rem;
    line-height: normal;
}

.review-card .designation {
}

.review-card p.title {
    margin-bottom: 10px;
    font-size: 1.275rem;
    font-weight: 500;
    color: var(--base-color);
}

.review-stars {
    color: #e2b300;
    font-size: 13px;
}

.sitebtn-primary {
    background: linear-gradient(90deg, #114227 0%, #175235 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(17, 66, 39, 0.2);
}

.btn-primary-custom {
    background-color: var(--base-color);
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: var(--base-color);
    color: #fff;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.quotes-bg {
    /* background: url('../images/bg/bg-quotes.webp'); */
    /* background-color: var(--green); */
}

.quotes-bg:before {
    content: '';
    inset: 0;
    background-color: var(--green) !important;
    z-index: 1;
    position: absolute;
    opacity: 0.8;
}

.brand-logo :is(img, svg) {
    /* max-width: 300px; */
    /* width: 100%; */
    width: 440px;
}

.toggle-btn {
    background-color: var(--base-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px 0px 6px 0px;
    line-height: 15px;
    font-size: 25px;
}

.svg-logo {
    /* display: inline-block; */
    /* opacity: 0; */
    /* transform: translateY(40px) scale(0.95); */
    /* animation: logoEntrance 1.2s cubic-bezier(.16,1,.3,1) forwards; */
    margin: 9px 0;
}

.svg-logo svg {
    /* width: 200px; /* adjust */
    height: auto;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.is-home .svg-logo svg * {
    opacity: 0;
    transform: translateX(20px);
    animation: partReveal 0.9s ease forwards 0.5s;
}

.svg-logo svg *:nth-child(1) {
    animation-delay: 0.2s;
}

.svg-logo svg *:nth-child(2) {
    animation-delay: 0.4s;
}

.svg-logo svg *:nth-child(3) {
    animation-delay: 0.6s;
}

.svg-logo svg *:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes partReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlay {
    position: absolute;
    z-index: 1;
    fill: #607D8B;
    pointer-events: none;
    z-index: 0;
}

.home-top {
    top: 5%;
    right: 2%;
}

.home-top svg {
    opacity: 0.1;
    width: 300px;
}

.home-top svg {
    animation: movex 2s ease alternate infinite;
}

@keyframes movex {
    0% {
        transform: translateX(0px)
    }

    100% {
        transform: translateX(5px)
    }
}

.home-top svg g {
    opacity: 0;
    transform: translateY(-20px);
    animation: pipeanim 0.2s cubic-bezier(1, 0, 0, 1.06) forwards;
}

.home-top svg g:nth-child(1) {
    animation-delay: 0.4s;
}

.home-top svg g:nth-child(2) {
    animation-delay: 0.6s;
}

.home-top svg g:nth-child(3) {
    animation-delay: 0.8s;
}

.home-top svg g:nth-child(4) {
    animation-delay: 0.2s;
}

.home-top svg g:nth-child(5) {
    animation-delay: 0.1s;
}

@keyframes pipeanim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-hero {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-carousel .owl-item.active .hero-hero .img {
    animation: heroSlide 1s ease forwards;
}

@keyframes bounceInDown0 {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-400px,0);
        transform: translate3d(0,-400px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-100px,0);
        transform: translate3d(0,-100px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.hero-carousel .owl-item .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0px 1px 4px #1d1d1d;
}

.light .hero-carousel .hero-content h1 {
    color: #212121
}

.hero-carousel .hero-content h1 .text-high {
    color: var(--secondary-color)
}

.light .hero-carousel .hero-content h1 .text-high {
    color: var(--color);
}

.hero-carousel .owl-item .hero-content p {
    margin-bottom: 10px;
    color: var(--para-color);
    /* white-space: normal; */
    text-shadow: 0px 1px 4px #1d1d1d;
}

.hero-carousel .owl-item.active .hero-content p {
    margin-bottom: 20px;
}

.hero-carousel .owl-item .hero-content .btnwrap .btn-green {
    color: var(--color-text);
    background-color: var(--color);
}

@keyframes fadeUp {
    0% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@keyframes heroSlide {
    0% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-content {
    overflow: hidden;
    --color: var(--secondary-color);
    --color-text: #212121;
    --para-color: #f9fafb;
    background-color: #041220bd;
    --bgc: rgb(17 66 39 / 55%);
    /* min-width: 100%; */
    padding: 20px 40px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
    background: transparent;
    padding: 17px 10px;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    /* opacity: 0;
    transform: translateY(40px); */
    padding: 0;
}

.light .hero-content {
    --color: var(--green);
    --color-text: #fff;
    --para-color: #000;
    --bgcolor: rgb(251 251 251 / 84%);
    background: rgb(255 255 255 / 84%);
    border-left: 8px solid var(--color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    /* opacity: 0;
    transform: translateY(40px); */
}

.hero-carousel .owl-item.active .hero-content h1 {
    animation: fadeDown 1s ease
}

.hero-carousel .owl-item.active .hero-content p {
    animation: fadeDown 1.2s ease;
    /* animation-delay: 0.5s; */
}

.hero-carousel .owl-item.active .hero-content .btnwrap {
    animation: fadeDown 0.5s ease-in-out /* opacity: 1;
    transform: translateY(0); */
}

.overlay-ab {
    opacity: 0.2;
    left: 10px;
    width: 450px;
    z-index: 0;
}

.overlay-about {
    opacity: 0.08;
    right: 10px;
    width: 450px;
    z-index: 0;
    bottom: 20%;
}

.overlay-products {
    opacity: 0.4;
    right: 40px;
    width: 250px;
    z-index: 0;
    top: 20px;
}

.overlay-quotes, .overlay-footer {
    z-index: 0;
    /* background-color: red; */
    inset: 0;
}

.overlay-quotes:before, .overlay-footer:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #081c0eeb;
    z-index: 1
}

.inner-hero {
    /* background-color: var(--dark-blue); */
    min-height: 170px;
}

.inner-hero-overlay {
    background-color: rgba(10, 25, 47, 0.85);
    /* Dark blue overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inner-hero-img {
    object-fit: cover;
    object-position: center;
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(36, 124, 63, 0.1);
    color: var(--secondary-green);
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-list-icon {
    color: var(--secondary-green);
    margin-top: 0.25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.package-card {
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-green);
}

.package-title-icon {
    color: var(--primary-gold);
    margin-right: 10px;
}

.show-z-index {
    position: relative;
    z-index: 20;
}

/* prdinfo Product Detail Page Styles */
.prdinfo-detail-section {
    position: relative;
    padding: 0rem 0 1rem;
    background-color: #fff;
}

.prdinfo-detail-section table {
    width: 100%;
    word-wrap: break-word;
}

.prdinfo-table-wrapper:not(.autosize) {
    table-layout: fixed;
}

.product-content td, .product-content th {
    word-break: break-word;
}

.prdinfo-detail-section * {
    font-family: var(--font-2);
    line-height: 1.5;
}

.prdinfo-detail-section strong {
    font-weight: 500;
}

.prdinfo-detail-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #424242;
    margin-bottom: 0.25rem;
}

.prdinfo-detail-section :is(p, li, table td) {
    font-size: 14px;
    line-height: 1.55;
}

.prdinfo-title {
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--base-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-2);
    position: relative;
    padding-bottom: 0.5rem;
}

.prdinfo-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.prdinfo-paragraph {
    font-size: 1.05rem;
    color: var(--text-gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 90%;
}

/* prdinfo Tables */
.prdinfo-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.prdinfo-table {
    width: 100%;
    /* min-width: 600px; */
    border-collapse: collapse;
    background-color: #fff;
    text-align: left;
    margin-top: 0.45rem;
}

.prdinfo-table-th {
    background-color: var(--green);
    color: #fff;
    font-weight: 600;
    padding: 11px 15px;
    /* text-transform: capitalize; */
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prdinfo-table-td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.prdinfo-table-td:not(.middle-top) {
    vertical-align: top;
}

.prdinfo-table tbody tr:last-child .prdinfo-table-td {
    border-bottom: none;
}

.prdinfo-table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

.prdinfo-table tbody tr:hover {
    background-color: #f0fdf4;
    /* Light green tint */
}

/* prdinfo Lists */
.prdinfo-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.prdinfo-list-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-gray-dark);
    line-height: 1.6;
    font-weight: 500;
}

.prdinfo-list-item::before {
    content: '\f058';
    /* FontAwesome Check Circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--base-color-light);
    font-size: 1.1rem;
    line-height: 1.55;
}

/* prdinfo Images */
.prdinfo-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

.prdinfo-image.h200 {
    height: 220px;
}

.prdinfo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.product-sidebar {
}

.prdinfo-sidebar-link {
    border-left: 3px solid transparent;
}

.prdinfo-sidebar-link:hover, .prdinfo-sidebar-link.active {
    border-left-color: var(--base-color);
    background-color: var(--light-gray);
}

.prdinfo-sidebar-link.active .fa-chevron-right {
    opacity: 1;
    color: var(--base-color);
}

.prdinfo-sidebar-title {
    font-family: var(--font-2);
    font-size: 1.255rem;
}

.footer-ul a {
    color: #cecece;
}

.title-label {
}

.floating-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #20b858;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

footer h3 {
    font-size: 1.05rem;
}

.pimg-none {
    display: none;
}

.header-bottom {
    --color: #033e1e;
    background: linear-gradient(90deg, #0e3b25 0%, #175235 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.light .header-bottom {
    background: linear-gradient(90deg, #c39b56 0%, #D4AE6A 100%);
    box-shadow: 0 4px 15px rgba(195, 155, 86, 0.2);
}

.nav-links {
    gap: 5px 10px;
}

.navsocial-links a {
    color: #ffffff;
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.light .navsocial-links a {
    color: #225733;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navsocial-links a:hover {
    background-color: #225733;
}

.header-contact a {
    color: #212121;
    text-decoration: none;
    transition: all 350ms ease;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 3px;
}

.header-contact a:hover {
    color: var(--green)
}

.dropdownmenu {
    position: relative;
}

.dropdownmenu ul {
    position: absolute;
    left: 0;
    width: 350px;
    background-color: #363636;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 350ms ease;
    top: 100%;
}

.dropdownmenu:hover ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.dropdownmenu ul li a {
    display: block;
    padding: 10px 19px;
    color: #ebebeb;
}

.dropdownmenu ul li a:hover, .dropdownmenu ul li a.active {
    background: var(--green)
}

.hero-slider .item img {
    /* min-height: 240px; */
    object-fit: cover;
    height: 420px;
}

.sec-brochure {
    background: #d0a456;
    padding: 13px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

.light .sec-brochure {
    border-top: 4px solid #c39b56;
    background: linear-gradient(135deg, #114227 0%, #0e3b25 100%);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

.sec-brochure .title {
    font-size: clamp(1.2rem,4vw,1.7rem);
    color: #fff;
    font-weight: 600;
}

.sec-brochure .btn-green {
    background-color: #063e20;
    color: #ffffff;
}

.light .sec-brochure .btn-green {
    background-color: var(--secondary-color);
    color: var(--green);
}

.mobile-nav li a {
    white-space: initial;
}

.blacktext {
    margin-bottom: 10px;
}

.td-sm {
    width: 100px;
}

.inner-bannerhero {
    background: var(--url), no-repeat center center/cover;
    min-height: 330px;
    background-color: #057c34bd;
    background-blend-mode: soft-light;
    background-position: center center;
    background-size: cover;
}

/* zzz */
@media (max-width: 768px) {
    .hero-slider .item img {
        min-height: 540px;
    }
}

@media (max-width: 768px) {
    .hero-hero {
        opacity: 0.4;
        width: 240px;
        bottom: -12%;
        top: auto;
        right: 10px;
    }
}

@media (max-width: 568px) {
    .hero-slider .item img {
        min-height: 240px;
        height: 240px;
    }

    .brand-logo {
        margin-right: 10px;
    }

    .brand-logo :is(img, svg) {
        max-width: 100%;
        width: 100%;
    }

    .overlay-ab {
        opacity: 0.2;
        width: 220px;
        top: 29%;
    }

    .overlay-about {
        opacity: 0.1;
        right: 0px;
        width: 260px;
        bottom: 0%;
    }

    .overlay-products {
        opacity: 0.2;
        right: 40px;
        width: 150px;
        z-index: 0;
        top: 20px;
    }

    .hero-carousel .owl-item .hero-content h1 {
        font-size: 18px;
    }

    .hero-carousel .owl-item .hero-content p {
        font-size: 13px;
    }

    .hero-carousel .btnwrap a {
        font-size: 13px;
        padding: 9px 17px;
    }

    .inner-hero {
        min-height: 150px;
        background-size: cover;
    }

    .experience-badge {
        width: 150px;
        height: 80px;
        border: 2px solid #fff;
        font-size: 1rem;
        text-align: start !important;
        padding: 11px 12px !important;
    }

    .experience-badge h2 {
        font-size: 23px;
    }

    .experience-badge .fs-6 {
        font-size: 14px !important;
    }
}

@media (min-width: 992px) {
    .w-lg-50 {
        width: 50%;
    }

    .brand-logo :is(img, svg) {
        width: 610px;
    }
}

@media (min-width: 1400px) {
    .brand-logo :is(img, svg) {
        /* max-width: 400px; */ width: 740px;
    }

    .svg-logo {
        margin: 7px 0;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        padding: 20px 40px;
        max-width: 850px;
        padding: 40px 60px;
        border-radius: 6px 20px 20px 6px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .sec-brochure {
        padding: 30px 5%;
    }

    .hero-carousel .owl-item .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}
