@font-face {
    font-family: satoshi-l;
    src: url('./Font/Satoshi-Light.otf') format('opentype');
}

@font-face {
    font-family: satoshi;
    src: url('./Font/Satoshi-Regular.otf') format('opentype');
}

@font-face {
    font-family: satoshi-m;
    src: url('./Font/Satoshi-Medium.otf') format('opentype');
}

@font-face {
    font-family: satoshi-b;
    src: url('./Font/Satoshi-Bold.otf') format('opentype');
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smotthing: antialiased;
    font-family: satoshi, sans-serif;
}


:root {
    --background-color: #ffffff;
    --text-color: #5C5C5C;
    --pri-color: #FC2626;
    --sec-color: #0198D7;
    --black: #000;
    --white: #fff;
    --topbar: #CCF0FF;
    /* --dark-mode:#ededed; */
    --product: #f9f9f9;
}


.dark-mode {
    --background-color: #141414;
    --text-color: #ffffff;
    --black: #fff;
    --card: #1d1d1d;
    --topbar: #313131;
    --product: #1E1E1E;
}


section.product .product-details h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
}

.text_color{
    color: var(--black);
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
}



/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0198D7;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

.form-control-lg , .form-select-lg{
    font-size: 1rem !important;
}


.dark-mode input,
.dark-mode textarea,
.dark-mode select {
    background-color: #1E1E1E;
    border: 0;
    color: #fff;
}

.dark-mode input:focus,
.dark-mode textarea:focus {
    background-color: #1E1E1E;
    border: 0;
    color: #fff;
}

.dark-mode input::-webkit-input-placeholder,
.dark-mode textarea::-webkit-input-placeholder {
    color: #505050;
}

.dark-mode input::-moz-placeholder,
.dark-mode textarea::-moz-placeholder {
    color: #505050;
}

.dark-mode input:-ms-input-placeholder,
.dark-mode textarea:-ms-input-placeholder {
    color: #505050;
}

.dark-mode input::-ms-input-placeholder,
.dark-mode textarea::-ms-input-placeholder {
    color: #505050;
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
    color: #505050;
}



body.dark-mode {
    background-color: var(--background-color);
}

.pri-color {
    color: var(--pri-color);
}

.sec-color {
    color: var(--sec-color);
}

.mix-bgcolor {
    background: -webkit-gradient(linear, left top, right top, from(#ea1f2a), to(#0198d7));
    background: -o-linear-gradient(left, #ea1f2a 0%, #0198d7 100%);
    background: linear-gradient(90deg, #ea1f2a 0%, #0198d7 100%);
}

.mix-bgcolor2 {
    background: -webkit-gradient(linear, left top, left bottom, from(#e1f6ff), to(#ffdcde));
    background: -o-linear-gradient(top, #e1f6ff 0%, #ffdcde 100%);
    background: linear-gradient(180deg, #e1f6ff 0%, #ffdcde 100%);
}


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


.bottom-bar {
    position: fixed;
    bottom: -2px;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 10px 0;
}

.dark-mode .bottom-bar {
    background-color: var(--background-color);
}

.bottom-bar-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.bottom-bar-item i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.dark-mode .bottom-bar-item i {
    color: #fff;
}

.bottom-bar-item span {
    display: block;
    font-size: 12px;
}

.bottom-bar-item>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}






.dark-mode .bottom-bar-item span {
    color: #fff;
}


.top-bar {
    background-color: var(--topbar);
    padding: 8px 0;
}

.top-bar .box {
    background-color: #0198D7;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid transparent;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.top-bar .box i {
    color:var(--white);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.top-bar a:hover .box {
    background-color: transparent;
    border: 1px solid var(--sec-color);
}

.top-bar a:hover i {
    color: var(--black);
}

.top-bar p {
    line-height: 17px;
    font-size: 14px;
}


/* Theme Switch */
/* The switch - the box around the slider */

.top-bar button {
    border: none;
    padding: .8em 2em;
    background-color: var(--white);
    color: white;
    border-radius: 4px;
    font: inherit;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.modeToggle {
    height: 36px;
    width: 36px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border: none;
    /* Remove default button border */
    cursor: pointer;
    /* Indicate that it's clickable */

}

#modeToggle {
    height: 36px;
    width: 36px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border: none;
    /* Remove default button border */
    cursor: pointer;
    /* Indicate that it's clickable */

}

/* 
 body.dark-mode 
    background-color: #FFF !important;
} */

.modeToggle svg:last-child,
#modeToggle svg:last-child {
    display: block;
}

.modeToggle svg:first-child,
#modeToggle svg:first-child {
    display: none;
}

body.dark-mode .modeToggle svg:first-child,
body.dark-mode #modeToggle svg:first-child {
    display: block;
}

body.dark-mode .modeToggle svg:last-child,
body.dark-mode #modeToggle svg:last-child {
    display: none;
}



.line {
    width: 96px;
    height: 4px;
    background: -webkit-gradient(linear, left top, right top, from(#ea1f2a), to(#0198d7));
    background: -o-linear-gradient(left, #ea1f2a 0%, #0198d7 100%);
    background: linear-gradient(90deg, #ea1f2a 0%, #0198d7 100%);
    border-radius: 10px;
}

.heading {
    font-size: 40px;
    font-family: satoshi-m, sans-serif;
    color: var(--black);
    letter-spacing: -0.03em;
}

.font-m {
    font-family: satoshi-m, sans-serif;
}

.font-b {
    font-family: satoshi-b, sans-serif;
}

header.active {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1040;
    background-color: var(--background-color);
    -webkit-box-shadow: 0 16px 21px 0 rgb(14 14 14 / 4%);
    box-shadow: 0 16px 21px 0 rgb(14 14 14 / 4%);
    border-bottom: 1px solid #e5e5e521;
}

header.active .logo {
    width: 120px;
}

header.active .nav-link {
    color: var(--text-color);
}

section {
    padding: 0 0 120px 0;
}

section.about,
section.contact {
    padding: 120px 0;
}


/* ------- header ----------- */

/* From Uiverse.io by Admin12121 */
header .menu {
    padding: 0px;
    background-color: #C9EFFF;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 32px;
    -webkit-box-shadow: 0 10px 25px 0 rgba(#000, 0.075);
    box-shadow: 0 10px 25px 0 rgba(#000, 0.075);
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


header .link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70px;
    height: 50px;
    border-radius: 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: width 0.2s ease-in;
    -o-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
    text-decoration: none;
    color: inherit;

    &:hover svg {
        color: #fff;
    }

    &:before {
        position: absolute;
        z-index: -1;
        content: "";
        display: block;
        border-radius: 8px;
        width: 100%;
        height: 100%;
        color: #fff;
        top: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.2s ease-in;
        transition: -webkit-transform 0.2s ease-in;
        -o-transition: transform 0.2s ease-in;
        transition: transform 0.2s ease-in;
        transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
        -webkit-transform-origin: center right;
        -ms-transform-origin: center right;
        transform-origin: center right;
        background-color: #0198D7;
    }

    &:hover,
    &:focus {
        outline: 0;
        width: 130px;

        &:before,
        .link-title {
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }
}

header .link-icon {
    width: 28px;
    height: 28px;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    left: 18px;
    position: absolute;
    color: #0198D7;

    svg {
        width: 28px;
        height: 28px;
    }
}

header .link-title {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    display: block;
    text-align: center;
    text-indent: 28px;
    width: 100%;
    color: #fff;
}

header .nav-item {
    padding-left: 25px !important;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header .logo {
    width: 150px;
}

header .dropdown-menu {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header .nav-link {
    padding: 17px 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--black);
}

header .dropdown-menu {
    width: 659px !important;
    left: -172px !important;
    padding: 30px 0;
    top: 51px !important;
    border: 0;
    border-radius: 0 0 43px 43px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    -webkit-box-shadow: 0 16px 10px 0 rgba(14, 14, 14, 0.1);
    box-shadow: 0 16px 10px 0 rgba(14, 14, 14, 0.1);
    background: var(--background-color);
    visibility: hidden;
    pointer-events: none;
}


header .dropdown-menu h4 {
    font-size: 16px;
    color: var(--text-color);
}


header .dropdown {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

header .dropdown:hover .dropdown-menu {
    opacity: 1;
    display: block;
    visibility: visible;
    pointer-events: all;
}

.navbar-toggler {
    background: #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
}

header .dropdown-menu .img {
    width: 89px;
}

header .logo {
    width: 121px;
}

header .nav-link:hover {
    color: #0198d7;
}


footer {
    background-color: #13151D;
    color: white;
    padding: 70px 0 0 0;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}


.footer-contact i {
    margin-right: 10px;
    position: relative;
    font-size: 17px;
    top: 7px;
    color: #ccc !important;
}

.footer-contact a {
    font-size: 14px;
    margin-bottom: 20px;

    color: #ccc !important;
}

.footer-bottom {
    background-color: #303030;
    padding: 10px 0;
    text-align: center;
    margin-top: 70px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #13151D;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    background-color: #fff;
}

.social-icons a:hover {
    background: #0198D7;
    color: #fff;
}

section.other-banner{
    height: 150px;
    background: url("../Images/other-banner-light.webp") no-repeat center center/cover;
    background: url("../Images/other-banner-light.webp") no-repeat center center/cover;
}
.dark-mode section.other-banner{
    height: 150px;
    background: url("../Images/other_banner_dark.webp") no-repeat center center/cover;
}


section.other-banner h5{
color: #fff;
}

section.other-banner .container{
    display: flex;
    height: 150px;
    justify-content: center;
   align-items: center;
}

.dark-mode section.other-banner .container{
    display: flex;
    height: 150px;
    justify-content: center;
   align-items: center;
}

/*  */ 

main.enquiry .description{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
 
}

main.enquiry .btn1 {
    border-radius: 10px;
    padding: 10px 16px;
    width: 100%;
    height: 50px;
    background: #0198d7;
    display: block;
    margin: 0;
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 0;
    color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    top: auto;
    border-radius: 0;

}

main.enquiry .btn1:hover {
    background-color: #ea1f2a;
}


main.enquiry .img_product {
    width: 162px;
    height: 74px;
    padding: 10px;
    object-fit: contain;
    background-color: #F3F3F3;
    border-radius: 10px;
}
.dark-mode main.enquiry .img_product{
    background-color: #1d1d1d;
}

.fancybox__content {
   padding: 0 !important;
}


header .new_dropdown .dropdown-menu {
max-width: max-content;
width: max-content !important;
left: 0 !important;
border-radius: 0 0 23px 23px;
display: flex;
padding: 20px 30px;
}
header .new_dropdown .dropdown-menu li a {
color: #000;
transition: all 0.5s ease;

}
header .new_dropdown .dropdown-menu li a:hover {
color: #0198D7 !important;
}

.dark-mode header .new_dropdown .dropdown-menu li a {
color: #ffffff;
}


.dark-mode .table-bordered>:not(caption)>*>* {
    background-color: var(--card);
    color: #fff;
}


/* header .dropdown-menu {
   
    padding: 30px 0;
    top: 51px !important;
    border: 0;
    border-radius: 0 0 43px 43px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    -webkit-box-shadow: 0 16px 10px 0 rgba(14, 14, 14, 0.1);
    box-shadow: 0 16px 10px 0 rgba(14, 14, 14, 0.1);
    background: var(--background-color);
    visibility: hidden;
    pointer-events: none;
} */




.dark-mode .bottom-bar svg path  {
    stroke:#fff !important;
}

.dark-mode #modal_support .modal-content  {
    background: #1d1d1d;
}



#modal_support .card{
    background-color: #E4E4E4;
    padding: 10px 10px;
    height: 100%;
    border: 0;
    border-radius: 20px;
    text-align: center;
}


#modal_support .card img {
    width: 37px;
    margin: 0 auto;
    margin-bottom: 10px;
}

#modal_support p {
    font-size: 13px;
    line-height: 15px;
}

#modal_support .modal-body{
    overflow-y: scroll;
}

.dark-mode #modal_support .card  {
    background: #efefef;
}



  /* Widget Animations */
        #chat-popup {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            pointer-events: none;
            width: 360px;
            max-width: calc(100vw - 3rem);
            height: max-content;
            z-index: 1050;
            background-color: var(--background-color);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #chat-popup.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: auto;
        }

        .floating-btn {
            width: 56px;
            height: 56px;
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
            transition: transform 0.3s ease, background-color 0.3s ease;
            z-index: 1060;
            border: none;
        }

        .floating-btn:hover {
            transform: scale(1.05);
        }

        .social-btn {
            transition: all 0.2s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: 1rem;
            color: white !important;
        }

        .social-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .bg-indigo {
            background-color: var(--sec-color);
        }

        .bg-indigo-dark {
            background-color: var(--pri-color);
        }

        .bg-whatsapp {
            background-color: #25d366;
        }

        .social-icon-wrapper {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            margin-right: 12px;
        }

        .instagram-gradient {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .message-bubble {
            background-color: rgba(243, 244, 246, 0.8);
            border-radius: 1rem;
            padding: 1rem;
            font-size: 0.875rem;
            color: #4b5563;
        }

        .chat-msg-received {
            background-color: white;
            border: 1px solid #f1f5f9;
            border-radius: 1rem;
            border-top-left-radius: 0;
            padding: 0.75rem;
            font-size: 0.875rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .decorative-circle {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 128px;
            height: 128px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
