/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Roots */
:root {
    /* Old Primary #e45826 */
    --primary-color: #f26419;
    --secondary-color: #206f3c;
    --light-color: #ffffff;
    --darkcolor: #121212;
    --box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
}

body {
    user-select: none;
    scrollbar-width: 1px;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: var(--light-color);
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f500;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--primary-color);
}

/* Components */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

p {
    color: var(--darkcolor);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.lead {
    color: var(--darkcolor);
    font-weight: 500;
}

.color-primary {
    color: var(--primary-color);
}

.color-dark {
    color: var(--darkcolor);
}

.color-secondary {
    color: var(--secondary-color);
}

.is-button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 2rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    transition: background-color 0.3s;
}

.is-button:hover {
    color: var(--light-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    background-color: var(--primary-color);
}

.left-svg {
    width: 350px;
    height: 350px;
    background-image: url(../images/svg/watermark.png);
    background-size: cover;
}

.right-svg {
    width: 350px;
    height: 350px;
    background-image: url(../images/svg/watermark3.png);
    background-size: cover;
}

.left-svg-chili {
    width: 350px;
    height: 350px;
    background-image: url(../images/svg/watermark2.png);
    background-size: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .left-svg,
    .right-svg {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {

    .left-svg,
    .right-svg {
        width: 100px;
        height: 100px;
    }

    .left-svg {
        left: 10px;
        top: 10px;
    }

    .right-svg {
        right: 10px;
        bottom: 10px;
    }
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.is-card {
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
    border: none;
    background-color: var(--light-color);
    padding: 20px;
}

.card-body .more-text {
    display: none;
    /* Hide extra text initially */
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    z-index: 1000;
    transition: all ease 0.3s;
    animation: glowEffect 1.5s infinite alternate;
}

.whatsapp-button img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
    animation: whatsappAnimation 1.5s infinite alternate;
}

.whatsapp-button:hover img {
    transform: scale(1.2);
}

@keyframes whatsappAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 1), 0 0 35px rgba(37, 211, 102, 0.8);
    }
}



/* Header */
nav {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    position: absolute;
}

.navbar .navbar-brand img {
    width: 90px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--darkcolor);
    font-size: 17px;
    font-weight: 500;
    transition: all ease-in 1s;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
    transform: scale(1);
}

.navbar .navbar-nav .nav-item .active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: scale(1);
}

@media (max-width: 992px) {
    .navbar-nav.ms-auto {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        padding: 10px;
    }

    .navbar-nav .nav-item {
        margin-right: 0;
    }

    .navbar-nav .nav-item:not(:last-child) {
        margin-right: 15px;
    }

    .navbar-nav img {
        margin-bottom: 0;
    }

    .navbar-collapse {
        background-color: var(--background-color);
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-collapse.show {
        background-color: var(--background-color);
    }

}

@media (min-width: 480px) and (max-width: 768px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .navbar .navbar-brand {
        width: 60px;
    }
}

.nav-btn i {
    margin-left: 5px;
    padding: 5px;
    background-color: white;
    color: var(--darkcolor);
    border-radius: 50px;
    transform: rotate(-40deg);
}

@media (max-width: 768px) {
    .nav-btn {
        font-size: 12px;
    }
}

/* Hero */
.hero {
    background: linear-gradient(to right, rgba(34, 34, 34, 0.979), rgba(34, 34, 34, 0.3)), url(../images/hero.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
}

.hero .hero-logo {
    width: 480px;
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(to right, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0.8)), url(../images/hero.jpeg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 580px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero h4 {
        font-size: 16px;
    }
}

/* Salt and Service Section */
@media (max-width: 768px) {
    #saltSection p {
        font-size: 12px;
    }

    .company-services p {
        font-size: 12px;
    }
}

.company-vision {
    width: 100%;
    background-image: url(../images/company-vision.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    min-height: 450px;
    padding: 50px 0;
}

.company-vision::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 19, 19, 0.87);
    z-index: -1;
}

@media (max-width: 768px) {
    .company-vision {
        background-attachment: scroll;
        padding: 30px 0;
        min-height: unset;
    }

    .company-vision::after {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .company-vision {
        padding: 20px 0;
    }

    .company-vision::after {
        height: 100%;
    }
}

/* Our Products */
.products {
    width: 100%;
    background-image: url(../images/company-vision.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    min-height: 450px;
    padding: 50px 0;
}

.products::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 19, 19, 0.87);
    z-index: -1;
}

.products .card {
    min-height: 235px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .products .card {
        max-height: 80px;
        padding: 0%;
        overflow-y: auto;
        scrollbar-width: none;
    }
}

@media (max-width: 576px) {
    .products .card {
        min-height: 150px;
        padding: 0%;
        overflow-y: auto;
        scrollbar-width: auto;
    }
}

/* Product Details Page */
.product-details .product-img {
    width: 750px;
    height: 450px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
}

.product-details .top-area p {
    font-size: 14px !important;
}

.product-details .is-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


@media (max-width: 576px) {
    .product-details .top-area {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-details .top-area .col-md-4 {
        padding-top: 20px;
    }

    .product-details .product-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 2rem;
        box-shadow: var(--box-shadow);
    }
}


/* All Products Page */
.all-products .is-card {
    min-height: 235px;
    position: relative;
    overflow: hidden;
}

.all-products .is-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.all-products .is-card:hover img {
    transform: scale(1.2);
}

.all-products .is-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.all-products .card-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
}

@media (max-width: 768px) {
    .all-products .card {
        min-height: 235px;
        padding: 0%;
        overflow-y: auto;
        scrollbar-width: none;
    }
}

@media (max-width: 576px) {
    .all-products .card {
        min-height: 235px;
        padding: 0%;
        overflow-y: auto;
        scrollbar-width: none;
    }
}


.is-card ul {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none;
}

/* Company Services */
.company-services img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .company-services img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 2rem;
    }
}


/* Explore Products Section on Home Page */
.explore-products {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/banner.jpg);
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 100px 0px;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #e45826;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.content {
    display: none;
}

.loader-overlay.hide-content+.content {
    display: block;
}

/* Private Labeling View */
#private-labeling p {
    font-size: 14px;
}

@media (max-width: 768px) {
    #private-labeling p {
        font-size: 11px;
    }

    #private-labeling h2 {
        font-size: 18px;
    }

    #private-labeling h4 {
        font-size: 14px;
    }
}

/* Product Details */
.product-details .is-card {
    height: 380px;
}

@media (max-width: 768px) {
    .product-details .is-card {
        height: 280px;
        padding: 4px;
    }

    .product-details .is-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .product-details .is-card h5 {
        font-size: 12px;
    }

    .product-details .is-card .is-button {
        font-size: 8px;
    }
}

/* Index View Image Fix */
/* .saltSection-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .saltSection-img {
        width: 100%;
        height: 200px;
    }
} */