/* fonts */
/* Bold */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_bolditalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Medium Italic */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_mediumitalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

/* Book (Regular) */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Book Italic */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_bookitalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'GothamRounded';
    src: url('assets-home/fonts/gothamrnd_lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* end */

html,
body {
    padding: 0;
    margin: 0;
    font-family: "GothamRounded", sans-serif;
}

a {
    text-decoration: none !important;
    display: inline-block;
}

::selection {
    background: #ff6a00;
    /* custom background color */
    color: #fff;
    /* custom text color */
}

:root {
    --primary-color: #6032A5;
    --secondry-color: #AF2166;
    --third-color: #832195;
}

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

ul li {
    list-style: none !important;
}

/* Top Bar */
.top-bar {
    position: relative;
    /* background: #003b2f; */
    color: white;
    display: flex;
    text-align: end;
    padding: 10px 0px;
    font-size: 14px;
}

.top-bar i {
    font-size: 20px;
}

.top-bar a {
    color: white;
    margin-left: 20px;
    font-weight: 500;
}

/* Header */
.header {
    padding: 15px 0px;
    background: #fff;
    box-shadow: 5px 4px 13px -1px #cccc;
}

.logo {
    align-items: center;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.nav {
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

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

/* Bottom gradient line */
.gradient-line {
    height: 5px;
    background: linear-gradient(to right, red, orange, yellow, green, blue);
}

/* sticky bg image */
.fixed-image {
    position: fixed;
    right: 20px;
    top: 420px;
    transform: translateY(-50%);
    z-index: -1;
    width: 600px;
}

/* first section */
.hero {
    margin-top: 100px;
    margin-bottom: 100px;
}

.hero h3 {
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero h1 {
    font-size: 110px;
    margin: 10px 0 40px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 100px;
}

.hero h1 span {
    font-weight: 100;
}

.hero-content {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text h4 {
    font-size: 40px;
    font-weight: 400;
}

.hero-text h3 {
    color: var(--primary-color);
}

.hero-text p {
    color: #484848;
    font-size: 17px;
    margin-right: 100px;
}

.hero video {
    border-radius: 20px;
    box-shadow: 0px 10px 12px 5px #2727278c;

}

/* Theme Button */
.theme-btn-light {
    border: 1px solid#000;
    color: #282121;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'GothamRounded';
    border-radius: 8px;
}

.theme-btn-light:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translate(5%, 5%) scale(1);
    /* start hidden */
    transition: transform 0.5s ease;
    border-color: var(--primary-color);
}

.theme-btn-dark {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.theme-btn-dark:hover {
    background: #fff;
    border: 1px solid #000;
    color: #282121;
    transform: translate(5%, 5%) scale(1);
    /* start hidden */
    transition: transform 0.5s ease;
}


/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
}

.section-advantage {
    margin: 30px 0;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    height: 2481px;
}

.section-advantage::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Backdrop blur (blurs what’s behind the element) */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* Safari */
    background: rgba(255, 255, 255, 0.08);
    /* slight tint so blur is visible */
    z-index: 0;
}

.section-advantage>* {
    position: relative;
    z-index: 1;
    /* keep your content crisp above the blur */
}



.advantage-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.advantage-text {
    text-align: left;
}

.advantage-text h2 {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--primary-color);
}

.advantage-text h2 span {
    font-weight: bold;
}

.advantage-text p {
    font-size: 17px;
    line-height: 1.6;
    margin: 20px 0 30px;
    color: #484848;
}

/* Cards */
.small-card {
    overflow: hidden;
    max-width: 350px;
}

.small-card:hover .smallBg1 {
    background-size: 150% !important;
}

.small-card-content {
    padding: 20px;
}

.small-card-content h3 {
    font-size: 33px;
    margin: 0 0 10px;
    color: #000;
    font-weight: 400;
}

.small-card-content p {
    font-size: 17px;
    line-height: 1.5;
    color: #333;
}

@media (min-width: 1420px) {
    .container {
        max-width: 1200px !important;
    }
}

.video-wrapper {
    height: 100%;
    /* full screen height */
    width: 100%;
    overflow: hidden;
}

.video-wrapper video {
    height: 600px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills entire div */
    z-index: -1;
    /* put it behind content */
}

.dot-btn {
    position: relative;
    padding: 12px 28px;
    font-size: 18px;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    /* hides overflow of growing dot */
    transition: color 0.3s ease;
    font-family: 'GothamRounded';
    box-shadow: 2px 3px 3px 1px;
}

.dot-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    /* small dot */
    background: radial-gradient(circle at center,
            #6dd5ed 0%,
            /* light blue */
            #2193b0 40%,
            /* deeper blue */
            #ee9ca7 70%,
            /* soft pink */
            #ff6a00 100%
            /* warm orange */
        );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
    color: #fff;
}

.dot-btn:hover::before {
    transform: translate(-50%, -50%) scale(25);
    /* spread big */
    color: #fff;
}

.dot-btn:hover {
    border: none;
    color: #fff;
}

.second-fly {
    position: relative;
}

.fly1 {
    position: absolute;
    top: 156px;
    left: 0;
}

.fly1-text {
    position: absolute;
    top: 50px;
    right: 180px;
    width: 50%;
}

.fly2 {
    position: absolute;
    top: 446px;
    right: 0px;
}

.fly3 {
    position: absolute;
    top: 790px;
    left: 145px;
}

.fly4 {
    position: absolute;
    top: 1083px;
    right: 145px;
}

.fly5 {
    position: absolute;
    top: 1430px;
    left: 0;
}

.fly6 {
    position: absolute;
    top: 1725px;
    right: 0;
}

.smallBg1 {
    height: 533px;
    wi background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: background-size 0.3s ease-in-out;
}

.highligher {
    background-color: #ff6a00;
    padding: 0px 20px;
}

.qa-heading {
    font-size: 19px;
    color: var(--primary-color);
    letter-spacing: 3px;
    line-height: 3;
}

.bottom-line {
    position: relative;
}

.bottom-line::after {
    position: absolute;
    content: '';
    border-bottom: 2px solid var(--primary-color);
    bottom: 0;
    left: 0;
    width: 350px;
}

.hoverme {
    transition: ease-out 0.5s;
}

.hoverme:hover {
    background-image: linear-gradient(to left, rgba(255, 0, 0, 0), var(--primary-color));
    padding: 0 10px;
}

.hoverme:hover>a {
    color: #fff;
}

.my-card-radius {
    border-radius: 35px !important;
}

.product-intro {
    margin-top: 200px;
    margin-bottom: 100px;
}

.product-intro h2 {
    font-size: 50px;
    line-height: 0.8;
    font-weight: 700;
    color: #4e2424;
    margin-bottom: 40px;
}

.product-intro .card {
    height: 532px;
}

.product-intro h3 {
    font-size: 40px;
}

.product-intro .qa-heading {
    color: #000;
    font-weight: 600;
    font-size: 21px;
}

.find-prod a {
    color: #000;
}

.product-intro .bottom-line::after {
    border-bottom: 2px solid #000;
    width: 278px;
}

.product-intro .image-container {
    width: 100%;
    height: 250px;
}

.image-container-parent {
    position: relative;
    overflow: hidden;
}

.image-container {
    position: absolute;
    bottom: 0;
}

.qa-section {
    margin: 100px 0px;
}

.qa-section h2 {
    line-height: 0.9;
}

.qa-section h4 {
    font-size: 30px;
    color: #3d3d3d;
}

.qs-card {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
    background-image: linear-gradient(to bottom right, rgba(255, 0, 0, 0), var(--primary-color));
    border: none !important;
}

.distribution-section {
    margin-bottom: 40px;
}

/* .right-img {
    height: 300px;
} */

.distribution-section h3 {
    font-size: 40px;
}

.distribution-section h3 span {
    background-color: var(--primary-color);
    color: #fff;
}

.distribution-section i {
    color: var(--primary-color);
}

.last-video {
    border: 1px solid #000;
    padding: 80px 0px;
    color: #fff;
}

.last-video h3 {
    font-size: 50px;
    font-weight: 400;
}

.last-video h4 {
    font-size: 30px;
    margin: 30px 0;
    font-weight: 400;
}

.last-video p {
    font-size: 18px;
    font-weight: 500;
}

.last-video .blur-card {
    padding: 100px;
}

.last-video input {
    margin-bottom: 20px;
    padding: 10px 20px;
}

.blur-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blur-card h2 {
    margin-bottom: 10px;
}

input,
textarea {
    border: none;
}

input:focus,
textarea:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.last-video {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.last-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-btn {
    cursor: pointer;
    padding: 8px 0;
}

.tab-btn.active {
    font-weight: 600;
    color: var(--secondry-color);
}

footer .logo {
    width: 200px;
}

.footer {
    background: #fff;
    padding: 40px 0;
}

.footer h4 {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    text-decoration: none;
    color: #000;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer .social-links a {
    margin-right: 10px;
    font-size: 18px;
    color: #000;
}

.companies-logo h5 {
    margin-bottom: 30px;
}

footer .companies-logo img {
    height: 75px;
}

.food-color-code {
    height: 38px;
    border-radius: 20px;
}

/* START COLOR */
/* Synthetic Colors */

#tartrazine {
    background-color: #FFD300;
}

#quinoline-yellow {
    background-color: #FFF025;
}

#sunset-yellow {
    background-color: #FF0F02;
}

#carmoisine {
    background-color: #7B0031;
}

#amaranth {
    background-color: #952847;
}

#ponceau-4r {
    background-color: #A60527;
}

#erythrosine {
    background-color: #E94196;
}

#allura-red-ac {
    background-color: #E32636;
}

#brilliant-blue {
    background-color: #0070FF;
}

#patent-blue-v {
    background-color: #1C39BB;
}

#brown-ht {
    background-color: #8B5A4B;
}

#indigo-carmine {
    background-color: #000064;
}

#black-pn {
    background-color: #425170;
}

/* Blended Shades */
#lemon-yellow {
    background-color: #F9FA34;
}

#egg-yellow {
    background-color: #FEC551;
}

#orange-red {
    background-color: #EE8031;
}

#strawberry-red {
    background-color: #E4305D;
}

#rose-pink {
    background-color: #FF4C86;
}

#raspberry-red {
    background-color: #E22E6F;
}

#grape {
    background-color: #5C124F;
}

#falsa {
    background-color: #6B2F79;
}

#cola-chocolate {
    background-color: #9F5A39;
}

#chocolate-brown {
    background-color: #8B5A4B;
}

#dark-chocolate {
    background-color: #5A2A2A;
}

#lime-green {
    background-color: #93C63D;
}

#apple-green {
    background-color: #58BA53;
}

#pea-green {
    background-color: #44CA73;
}

#black-current {
    background-color: #301130;
}

#approved-black {
    background-color: #131315;
}

/* Natural Colors */
#curcumin {
    background-color: #FFCC33;
}

#lutein {
    background-color: #F6E05E;
}

#annatto {
    background-color: #FF9933;
}

#beta-carotene {
    background-color: #FFA500;
}

#paprika {
    background-color: #C72C48;
}

#beetroot {
    background-color: #9B111E;
}

#apo-carotene {
    background-color: #FF8C00;
}

#chlorophyll {
    background-color: #3C8031;
}

#copper-chlorophyllin {
    background-color: #178A42;
}

#caramel {
    background-color: #7B3F00;
}

#riboflavin-wsp {
    background-color: #FDEE00;
}

#anthocyanins {
    background-color: #4B0082;
}

#carbon-black {
    background-color: #0C0C0C;
}

/* Lake Colors */
#lake-quinoline-yellow {
    background-color: #D4AF37;
}

#lake-tartrazine {
    background-color: #E4D00A;
}

#lake-sunset-yellow {
    background-color: #FF8200;
}

#lake-erythrosine {
    background-color: #E75480;
}

#lake-ponceau-4r {
    background-color: #C41E3A;
}

#lake-allura-red {
    background-color: #B22222;
}

#lake-carmoisine {
    background-color: #91283B;
}

#lake-amaranth {
    background-color: #9F2B68;
}

#lake-chocolate-brown-ht {
    background-color: #4D2C2C;
}

#lake-brilliant-blue {
    background-color: #1F51FF;
}

#lake-indigo-carmine {
    background-color: #002E63;
}

/* Acid Dyes */
#acid-yellow {
    background-color: #FFD300;
}

#acid-red {
    background-color: #E32636;
}

#acid-black {
    background-color: #101820;
}

#acid-brown {
    background-color: #5C4033;
}

#acid-green {
    background-color: #00A86B;
}

#retail-kesari {
    background-color: #FF9933;
}

#retail-apple-green {
    background-color: #8db600;
}

#retail-chocolate-brown {
    background-color: #572f06;
}

#retail-orange-red {
    background-color: #f34623;
}

#retail-raspberry-red {
    background-color: #bb4040;
}

#retail-dark-chocolate {
    background-color: #7B3F00;
}

/* COLOR END */

.service-one__bottom__nav i {
    width: 35px;
}

/* Positioning */
.nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    text-decoration: none;
    /* padding: 10px 15px; */
    display: block;
    color: #000;
    /* adjust as needed */
}

/* Submenu (hidden by default) */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.submenu a {
    padding: 10px 15px;
    white-space: nowrap;
    color: #333;
    font-size: 16px;
}

.submenu a:hover {
    background: #f5f5f5;
}

/* Show submenu on hover */
.nav-item:hover .submenu {
    display: flex;
}

.product-range-list a {
    width: 100%;
    color: #7E7C76;
}

.product-range-list a:hover {
    color: #392929;
}

/* @media (max-width: 1400px) {
    .fly2 {
        right: 382px;
    }
} */


/* 2) Base + animated state */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: stagger using data-delay (ms) */
.fade-up[data-delay] {
    transition-delay: calc(attr(data-delay number, 0) * 1ms);
}

/* Be nice to users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* new */
.bubble-btn span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, #0665A7, #B52360, #852094);
    pointer-events: none;
    animation: bubble 0.8s linear forwards;
}

@keyframes bubble {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(3);
        opacity: 0;
    }
}

.first-section-bg {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 50px 0px !important;
}

.category-hero-img {
    height: 50px;
}

.swiper-slide {
    background: transparent !important;
}

.radial-bg {
    background: radial-gradient(#DAB9B2, transparent);
    border: none !important;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

.light-card {
    background-color: #f2f7ff !important;
    border: 2px dotted var(--primary-color) !important;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

.home-form {
    padding: 30px 60px;
    background-color: #623f3f78;
    border-radius: 10px;
}

.hindprakash-about-section {
    padding: 100px 0px;
    background-image: url('../images/about/hindprakash-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hcpl-intro-card {
    background: #6032a5e3;
    color: #fff;
}

.why-choose__thumb img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all .3s ease-out;
}

.why-choose__thumb img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.v-m-section {
    padding: 120px 0px;
}

.v-m-section .card img {
    height: 70px;
}

.service-one__carousel__nav--left {
    background-color: var(--primary-color);
    color: #fff;
}

.service-one__carousel__nav--right {
    background-color: var(--primary-color);
    color: #fff;
}

/* single page 2 */
.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    margin-right: 10px;
}

.color-option.active {
    border: 3px solid #000;
}

.size-option {
    margin-right: 10px;
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-option label {
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
}

.size-option input:checked+label {
    background-color: #000;
    color: #fff;
}

.orio-retail-hero-desc {
    font-weight: 400;
    line-height: 1.5;
    color: #3b3b3b;
}