:root {
    /* Existing Colors */
    --dark: #0B0F11;
    --overlay: #0000006c;
    --gray: #394449;
    --purple_hover: #333150;
    --background-color: #141E23;
    --gray-border: #E0E0E0;
    /* New Colors */
    --primary-dark: #303442;
    --primary-medium: #6F67B1;
    --primary-blue: #1946FA;
    --primary-teal: #45E8D2;


    --secondary-teal: #C0DED0;
    --secondary-blue: #C9E2FF;
    --secondary-green: #DCE8C6;
    --secondary-purple: #DDDFFF;
    --secondary-light: #F2F2F2;
    --secondary-white: #eaebeb;
    --secondary-yellow: #FFE9CA;

    --text-black: #000000;
    --text-gray: #BFBECC;
    --text-light-purple: #A39CC9;

    --gradient-light: linear-gradient(90deg, #EDF5FF 0%, #C9E2FF 100%);
    --gradient-dark: linear-gradient(180deg, #1F9B8B 0%, #22D8C0 100%);
}

/* section:has(.navbar), */
section,
html {
    background: #eaebeb;
    font-family: "Neue Haas Display", sans-serif !important;
}


/* Apply the font globally */
body {
    font-family: "Neue Haas Display", sans-serif !important;
    transition: all 0.3s ease;
    overflow-x: hidden;
    /* background: var(--dark); */
    background: #eaebeb !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.container {
    max-width: 1200px !important;
}

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

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

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

.m-auto {
    margin: 0 auto;
}

.semibold {
    font-weight: 600 !important;
}

hr {
    border-color: var(--primary-medium);
}

.cursor-pointer {
    cursor: pointer !important;
}

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

.solutions-icon-size {
    height: 75px;
    margin-bottom: 10px;
    width: auto;
}

.bg-teal {
    background: var(--secondary-teal);
}

.bg-purple {
    background: var(--secondary-purple)
}

.bg-yellow {
    background: var(--secondary-yellow)
}

.bg-green {
    background: var(--secondary-green)
}

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

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

.bg-primary-blue {
    background: var(--primary-blue) !important;
}

.bg-gradient-green {
    background: linear-gradient(223.77deg, #BDF2CD 5.4%, #87C7BE 96.5%) !important;
}

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

.bg-gradient-purple {
    background: linear-gradient(223.77deg, #E3D9FF 5.4%, #B0C0FF 96.5%) !important;
}

.bg-gradient-yellow {
    background: linear-gradient(223.77deg, #F8F4CA 5.4%, #FFCCBB 96.5%) !important;
}

.header-banner {
    height: 750px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-banner img {
    height: 100%;
    object-fit: cover;
}

.w-md-fit,
.w-sm-fit,
.w-fit {
    width: fit-content !important;
}

.custom_banner {
    height: 300px !important;
}

.navbar {
    background-color: var(--dark);
    height: 100px;
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
}

.nav-section {
    height: 100px;
}

.nav_container {
    width: 95%;
    margin: auto;
    max-width: 1180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    opacity: 1;
    align-items: center;
}

.navbar .logo img {
    height: 56px !important;
}

.navbar .nav__list-mobile {
    display: none !important;
}

.navbar .nav__list {
    display: flex;
    align-items: center;
    color: var(--secondary-white);
    list-style: none;
    margin: 0;
    gap: 20px;
    z-index: 10;
}


.btn_gradient-outlined {
    background-color: transparent;
    color: var(--secondary-white) !important;
    padding: 8px 16px;
    font-size: 14px;
    margin-left: 4px;
    font-weight: 600;
    border-radius: 200px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--dark), var(--dark)),
        linear-gradient(90deg, #2A45FB 0%, #01D8C3 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    text-decoration: none;
    cursor: pointer;
}

.navbar .nav__list-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar .nav__list-item a {
    color: var(--secondary-white);
    font-size: 14px;
    align-items: center;
    position: relative;
    padding-bottom: 4px;
    border-radius: 200px;
    padding-left: 6px;
    padding-right: 6px;
    text-decoration: none;
    font-weight: 500;
}

.navbar .nav__list-item .active,
.navbar .nav__list-item a:hover {
    color: var(--secondary-white);
    text-decoration: none;
}

.navbar .nav__list-item .active::after,
.navbar .nav__list-item a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    /* Adjust to align properly */
    left: 14px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    transform: translateX(-50%);
}

.navbar .nav__list-item .active svg,
.navbar .nav__list-item .active svg path,
.navbar .nav__list-item a:hover svg,
.navbar .nav__list-item a:hover svg path {
    stroke: var(--secondary-white) !important;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 41px;
    height: 41px;
    border-radius: 999px;
    background-color: var(--gray);
    cursor: pointer;
}

.nav-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-item {
    padding: 4px 20px;
    border-radius: 99px;
    color: var(--secondary-white);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    text-align: left;
}

.menu-item:hover,
.menu-item.active {
    color: var(--dark);
    background-color: var(--secondary-blue);
}

.submenu {
    padding-left: 20px;
}

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

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

.text-breadcrumb {
    color: #6A6B74;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 12px;
    margin: 16px 0px 0px !important;
}

/* Each Breadcrumb Item */
.breadcrumb li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active Last Item */
.breadcrumb li:last-child {
    font-weight: bold;
    background: none;
}

.text-70 {
    font-weight: 700;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0%;
    text-align: center;
}

.text-60 {
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0%;
    text-align: center;
}

.text-50 {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
}

.text-34 {
    font-size: 34px;
    font-weight: 500;
    line-height: 40.8px;
    text-align: left;
}

.text-30 {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
}

.text-26 {
    font-size: 26px;
    font-weight: 450;
    line-height: 29.74px;
    text-align: left;
}

.text-24 {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
}

.text-20 {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
}

.text-18 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.text-14 {
    font-weight: 700;
    font-size: 14px !important;
    line-height: 16.8px;
    letter-spacing: 0%;
    text-align: center;
}

.solutions-icon {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

.overlay {
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 20px;
    z-index: 9999;
    position: absolute;
}

.polygon {
    position: absolute;
    top: -10px;
    background-color: var(--secondary-white);
    clip-path: polygon(50% 28%, 0 84%, 100% 84%);
}

.btn-outlined {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 1rem;
    border-radius: 50px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-align: center;
}

.btn-outlined.dark {
    color: var(--secondary-white) !important;
    border: 1px solid var(--secondary-white) !important;
}

.btn-filled {
    background-color: var(--primary-blue);
    color: var(--secondary-white);
    border: none;
    width: fit-content;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    border-radius: 999px;
}

.btn-outlined.xl-light {
    color: var(--secondary-white);
    border-color: var(--secondary-white);
}

.security-section {
    border-radius: 26px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    color: var(--secondary-white);
}

.mw-475 {
    max-width: 475px;
}

.security-section:has(.category) {
    align-items: flex-start;
    background-size: cover;

}

.security-section .solutions-card {
    padding: 30px;
}

.popup-body {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.popup-body>.row {
    width: 100%;
}

.brand-item {
    display: flex;
    padding: 1px 20px;
    align-items: flex-start;
    border-radius: 999px;
    justify-content: flex-start;
    cursor: pointer;
}

.brand-item p,
.brand-item a {
    margin: 0 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    text-align: left;
    color: var(--bs-gray-900);
    text-decoration: none;
}

.category-card a {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    max-width: fit-content;
    font-weight: 500;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 38px;
    height: 48px;
}

.popup-content {
    background-color: var(--text-black);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--secondary-white);
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    z-index: 99999;
    border-radius: 30px;
}

.popup-content::before {
    content: "";
    position: absolute;
    top: -10px;
    /* Adjust to position the arrow above the popup */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--text-black);
    /* Matches popup background */
}

.overlay~#model-solution-dd {
    max-width: 768px !important;
}

.overlay~#model-business {
    max-width: 280px !important;
}

.overlay~#model-Academy {
    transform: translateX(-28%) !important;
    max-width: 280px !important;
}

#model-Academy .popup-content {
    max-width: 280px !important;
}

#model-Academy .popup-content::before {
    right: 6%;
}

#model-business .popup-content .popup-body,
#model-business .popup-content {
    max-width: 280px !important;
}

#model-business .popup-content::before {
    left: 14%;
}

#model-solution-dd .popup-content::before {
    left: 57%;
}

#model-solution-dd .popup-content {
    max-width: 768px;
}

#model-solution .popup-content::before {
    left: 29%;
}

#model-brands .popup-content::before {
    left: 21%;
}

.brand-item:hover {
    background-color: var(--secondary-blue)
}

.nav_large {
    display: flex;
}

.brand-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.brand-dropdown {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.solution-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.service-section {
    padding: 56px 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: var(--secondary-white);
}

.category-section.dark,
.service-section.dark {
    background: var(--background-color) !important;
}

.solution-heading {
    font-weight: 600;
    z-index: 9 !important;
    font-size: 50px;
}

.solution-description {
    font-weight: 600;
    font-size: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: var(--dark);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: var(--primary-blue);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent var(--secondary-white);
    margin-left: 5px;
}

.retail-section {
    background-size: cover;
    background-position: bottom;
}

.stats-card {
    background: var(--dark);
    border-radius: 15px;
    padding: 20px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF33;
}

.stats-number {
    color: var(--primary-teal);
    font-size: 40px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.stats-label {
    color: var(--secondary-white);
    font-weight: 500;
    font-size: 18px;
}

.business-selector {
    background: var(--primary-teal);
    border-radius: 25px;
    padding: 40px;
    margin-top: 50px;
}

.progress {
    margin-bottom: 30px;
    height: 8px !important;
    height: 5px;
    background-color: #3bc5b3 !important;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--secondary-white) !important;
    border-radius: 20px;
    transition: all 1s ease-in-out;
}

.slider-content {
    display: none;
}

.active-slide {
    display: flex;
}

.progress {
    flex: 1;
}

.explore-btn {
    background: #0066ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.3s ease;
}

.explore-btn:hover {
    transform: scale(1.1);
}

.business-image {
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    object-fit: cover;
}

.logo-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.category-section {
    background: var(--secondary-white);
    padding: 48px 0;
    width: 100%;
    display: flex;
    color: var(--secondary-white);
    align-items: center;
    flex-direction: column;
    position: relative;
}

.category-card {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    min-height: 310px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 30px;
}

.category-card.dark {
    background: var(--dark);
    color: var(--secondary-white);
}

.category-card.light {
    background: var(--secondary-white);
    color: var(--dark);
}

.category-card.light:hover svg g path {
    stroke: var(--secondary-white);
    fill: none;
}

.category-card.light:hover svg path {
    fill: var(--secondary-white);
}

.category-card:hover {
    color: var(--secondary-white);
    background: var(--primary-blue);
}

.category-card .icon-wrapper {
    width: 120px;
    display: flex;
    justify-content: flex-end;
}

.category-card .category-card-heading {
    font-size: 34px;
    margin: 10px 0;
    font-weight: 600;
}

.category-card .category-card-description {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.category-card button {
    background: transparent;
    font-weight: 600;
    width: fit-content;
    font-size: 14px;
    height: 51px;
    border-radius: 999px;
    padding: 14px 30px;
    border: 1px solid;
}

.category-card.light:hover button,
.category-card.dark button {
    color: var(--secondary-white);
    border-color: var(--secondary-white);
}

.category-card.light button {
    color: var(--dark);
    border-color: var(--dark);
}

.logo {
    height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}


.gradient-image-top-left {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
}

.gradient-image-bottom-right {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
}

.gradient-image-top-right {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
}

.gradient-image-top-right img,
.gradient-image-bottom-right img,
.gradient-image-top-left img {
    width: 100%;
}

.service-card {
    border-radius: 30px;
    position: relative;
    z-index: 99;
    height: 100%;
    background: var(--secondary-white);
    color: var(--dark);
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    justify-content: space-between;
    border: 1px solid #CCCED7;
}

.dark .service-card {
    background: var(--dark);
    border: 1px solid transparent;
    color: var(--secondary-white);
}

.service-card:hover {
    background: var(--primary-teal);
    transform: translateY(-16px);
    /* Moves the card up */
    color: var(--dark);
}

.service-card:hover .icon-wrapper {
    background: var(--secondary-white);
}

.service-card:hover .icon-wrapper svg path[fill] {
    fill: var(--dark);
}

.service-card:hover .icon-wrapper svg path[stroke] {
    stroke: var(--dark);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px !important;
    background: var(--gray);
    color: var(--gray);
}

.service-card .service-card-heading {
    font-size: 24px;
    font-weight: 600;
}

.service-card .service-card-description {
    font-size: 18px;
    font-weight: 400;
    text-align: start;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-btn-next,
.swiper-btn-prev,
.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 5px !important;
    cursor: pointer;
}

.swiper-btn-next::after,
.swiper-btn-prev::after,
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
    /* Hide default swiper arrows */
}

/* Add hover effect */
.swiper-btn-next:hover svg rect,
.swiper-btn-prev:hover svg rect {
    fill: var(--secondary-blue);
    transition: fill 0.3s ease;
}

.swiper-button-next:hover svg rect,
.swiper-button-prev:hover svg rect {
    fill: var(--primary-blue);
    transition: fill 0.3s ease;
}

.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
    fill: white;
    transition: fill 0.3s ease;
}

/* If buttons are disabled */
.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.exp-swiper-btn {
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    background-color: var(--gray-border);
    user-select: none;
    position: absolute;
    top: 50%;
    height: 28px;
    width: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: white;
    transform: translateY(-50%);
}

.exp-swiper-btn:hover {
    background-color: var(--dark);
}

.exp-swiper-btn-prev {
    left: 0;
}

.exp-swiper-btn-next {
    right: 0;
}

.product-swiper .swiper-slide {
    background: transparent !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center;
}

.product-swiper .swiper-slide img {
    height: 100% !important;
    object-fit: contain;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    border-radius: 24px;
    display: flex !important;
    min-height: 400px !important;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    border: none;
    background: transparent !important;
    padding: 10px;
}

.swiper-slide p {
    text-align: start;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: var(--secondary-white);
}

.swiper-slide .news-date {
    font-size: 14px;
    color: #666;
}

.news-badge {
    background: var(--primary-blue);
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 50px;
}

.swiper-slide .date-time {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #B2B1B7;
}

.footer_banner {
    background: var(--primary-blue);
    border-radius: 16px;
    z-index: 10;
    position: relative;
}

.footer_banner .footer_banner-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-white);
    border-radius: 16px;
    padding: 12px 20px;
    gap: 20px;
}

.footer_banner .footer_banner-text div h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 27.46px;
    text-align: left;
}

.footer_banner .footer_banner-text div p {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
}

.footer_banner .footer_banner-text .arrow-icon {
    width: 56px !important;
}

.inquiry-btn {
    background-color: var(--secondary-dark);
    color: white;
    border-radius: 200px;
    padding: 18px 30px;
    border: none;
    font-weight: 600;
    font-size: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer {
    position: relative;
    display: flex;
    background: var(--dark);
    padding: 50px 20px 0;
}

.footer-links a {
    color: #969AAA;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 10;
    margin-bottom: 8px;
}

.footer-heading {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .footer-content .footer-logo {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer .footer-content .footer-logo img {
    width: 100%;
    max-width: 240px;
    margin: 20px 0;
}

.footer-line {
    position: relative;
    background: #3B3F4F;
    height: 1px;
    width: 100%;
    margin: 52px 0 40px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-line .chat-icon {
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.social-icons a {
    color: var(--dark);
    text-decoration: none;
    margin-right: 15px;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-content {
    padding: 40px 0 10px;
}

.contact-info img {
    width: 40px;
    border-radius: 50%;
}

/* Image Styling */
.swiper-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 30px;
}

/* Custom Pagination Styling */
.custom-pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Custom Pagination Bullets */
.custom-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #D0CFD4;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

/* Hover Effect */
.custom-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

/* Active Pagination Bullet (Twice the Width) */
.custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
    width: 28px;
    /* Twice the width of normal bullets */
    border-radius: 20px;
    /* Rounded edges */
    transition: width 0.3s ease-in-out;
}

/* Numbered Pagination */
.custom-pagination .swiper-pagination-bullet::after {
    content: '';
    font-size: 12px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prod-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    text-align: left;
}

.prod-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.prod-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.prod-info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.8px;
    letter-spacing: 0%;
    display: flex;
    width: 100%;
    margin: 0;
}

.spec-table {
    width: 100%;
    min-width: 520px;
    border-radius: 10px !important;
}

.spec-table thead {
    border-radius: 10px !important;
    background: #F0F3F6 !important;
}

.spec-table th {
    width: 100%;
    text-align: left;
    padding: 12px;
}

.spec-table tr {
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100% - 40px;
}

.spec-table tbody tr {
    border-bottom: 1px solid var(--gray-border);
}

.spec-table td {
    text-align: start;
    width: 100%;
    padding: 12px;
}

.spec-table td .img-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

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

.solution-specs-table {
    font-size: 14px;
    line-height: 30px;
}

.solution-specs-table table {
    width: 100%;
}

.solution-specs-table thead {
    background-color: #f0f3f6;
}

.solution-specs-table tr th,
.solution-specs-table tr td {
    padding: 10px;
}

.solution-specs-table tr th:first-child,
.solution-specs-table tr td:first-child {
    padding: 10px 10px 10px 24px;
}

.solution-specs-table tr td {
    line-height: 1.2 !important;
}

.solution-specs-table tbody tr th:first-child {
    font-weight: 400;
}

.solution-specs-table tbody tr td {
    font-weight: 500;
}

.solution-specs-table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--gray-border);
}

.solution-table {
    display: flex;
    display: grid;
    grid-template-columns: 130px 160px 1fr 80px;
    text-align: left;
    width: 100% !important;
    min-width: 800px;
    text-align: left;
}

.solution-table div {
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 1px solid #F0EFF4;
}

.table-header {
    background: #F0F3F6 !important;
    padding: 0 20px;
    font-weight: 700 !important;
    line-height: 24px;
}

.bold-text {
    font-weight: 700 !important;
}

.swiper-horizontal {
    height: 85% !important;
}


.similar-items {
    margin-bottom: 7rem;
}

.similar-items h2 {
    font-weight: bold;
}

.product-card {
    cursor: pointer;
    height: 100%;
    display: flex;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    align-items: center;
    border: 2px solid var(--gray-border);
}

.product-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
}

.product-card-detail {
    border-top: 1px solid var(--gray-border);
    display: flex;
    width: 95%;
    flex-direction: column;
    padding: 28px 0 10px;
    align-items: center;
    position: relative;
    justify-content: center;
}

.product-card .product-image {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.product-card .product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card .product-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0px;
}

.view-details-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-self: flex-start;
    align-items: center;
}

.view-details-btn:hover {
    background-color: var(--primary-blue);
    color: white;
}

.view-details-btn::after {
    content: "→";
    margin-left: 5px;
}

.hero-section,
.brand_hero-section {
    background: var(--background-color);
    min-height: 400px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
    padding: 20px 10px;
    position: relative;
}

.brand_hero-section::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 20%;
    width: 300px;
    /* Adjust size as needed */
    height: 300px;
    background-color: var(--primary-teal);
    filter: blur(250px);
    z-index: -1;
    opacity: 0.7;
}

.brand_hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20%;
    width: 300px;
    /* Adjust size as needed */
    height: 300px;
    background-color: var(--primary-blue);
    filter: blur(250px);
    z-index: -1;
    opacity: 0.7;
}

.hero-section.blog {
    min-height: 400px;
    background: #E2EFFF;
}

.hero-section.blog-detail {
    min-height: 400px;
    padding: 50px 0;
    background: transparent;
    /* background: var(--primary-blue); */
}

.hero-section.blog-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Background only for first 400px */
    background-color: var(--primary-blue);
    z-index: -1;
    min-height: 400px;
    max-height: 550px;
    height: 100%;
    padding: 50px 0;
    background: var(--primary-blue);
}

.hero-section.training-detail {
    position: relative;
    min-height: 400px;
    background-color: var(--secondary-white);
    height: auto;
    padding: 40px 0px;
    width: 100%;
}

.hero-section.training-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    /* Background only for first 400px */
    background-color: var(--primary-blue);
    z-index: -1;
}

.hero-heading {
    font-size: 70px;
    font-weight: 700;
    z-index: 2;
    color: var(--secondary-white);
    line-height: 70px;
    text-align: center;
    margin: 0 auto;
}

.blogs_page-heading {
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    text-align: center;
}

.brand_detail-img-wrapper {
    display: flex;
    padding: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.brand_detail-img-wrapper img {
    width: 100%;
    border-radius: 25px;
}

.brand_detail-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand_detail-text .btn-filled {
    padding: 10px 20px !important;
    font-size: 18px !important;
}

.blog_detail-img {
    width: 100%;
    min-width: 300px;
    height: 388px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    max-width: 388px;
}

.blog_detail-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
}

.filter-sidebar {
    background: var(--secondary-white);
    padding: 10px;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    margin-bottom: 0;
}

.filter-section h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.side_menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 100px;
    cursor: pointer;
}

.filter-section.solution {
    gap: 2px;
}

.side_menu-item:hover,
.side_menu-item:hover h6 {
    color: var(--primary-blue);
    background-color: var(--secondary-blue);
}

.side_menu-item.active,
.side_menu-item.active h6 {
    font-weight: 700;
    color: var(--primary-blue);
    background-color: var(--secondary-blue);
}

.side_menu-item.active .arrow-icon {
    background-color: var(--primary-blue);
}

.side_menu-item.active svg path {
    stroke: var(--secondary-white)
}

.side_menu-item h6 {
    font-weight: 400;
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.side_menu-item h6 a {
    text-decoration: none;
    color: var(--bs-body-color);
}

.side_menu-item.active h6 a,
.side_menu-item:hover h6 a {
    color: var(--primary-blue);
}

.side_menu-item .arrow-icon {
    width: 20px;
    height: 20px;
    border-radius: 99px;
    background-color: var(--secondary-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-option {
    padding: 10px 20px;
    display: flex;
    border-radius: 999px;
}

.filter-option:hover {
    background-color: var(--secondary-blue);
}

.filter-option input[type='checkbox'] {
    appearance: none;
    /* Remove default checkbox styles */
    width: 20px;
    height: 20px;
    border: 1px solid #A6A6A6;
    /* Custom border color */
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.filter-option input[type='checkbox']:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.filter-option input[type='checkbox']:checked+label {
    color: var(--primary-blue);
    font-weight: bold;
}

.filter-option:has(input[type='checkbox']:checked) {
    background-color: var(--secondary-blue);
}

.filter-option input[type='checkbox']:checked::before {
    content: "\2713";
    /* Unicode checkmark ✔ */
    font-size: 16px;
    color: white;
    /* White tick */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.filter-option label {
    font-size: 14px;
    color: #666;
    flex: 1;
    margin-left: 8px;
    cursor: pointer;
}

.btn-reset {
    background-color: var(--secondary-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    color: var(--primary-blue);
    border: none;
    padding: 8px 20px;
    border-radius: 999px;
}

.btn-apply {
    background-color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    color: var(--secondary-white);
    border: none;
    padding: 8px 20px;
    border-radius: 999px;
}

.type_heading {
    font-weight: 600;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: 0%;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-title {
    padding-top: 4px;
    font-size: 14px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 52px;
    max-height: 52px;
    color: #333;
}

.product-category {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-self: flex-start;
    background-color: var(--secondary-white);
    border: 1px solid var(--secondary-blue);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    line-height: 14.4px;
    letter-spacing: 0%;
    text-align: center;
}

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

.pagination-container {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.product_detail-img {
    display: flex;
    width: 100%;
    max-height: 450px;
    border-radius: 20px;
    border: 1px solid var(--gray-border);
}

.product_detail-img img {
    border-radius: 20px;
    width: 100%;
    min-height: 245px;
    object-fit: contain;
}

.page-btn {
    border: 1px solid var(--gray-border);
    background-color: white;
    border-radius: 999px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.page-btn:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

.page-btn.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    font-weight: 700;
}

.brand_image {
    display: flex;
    width: 100%;
    max-width: 100px;
    height: auto;
}

.brand_image img {
    width: 100%;
}

.see-more-btn {
    color: var(--primary-blue);
    cursor: pointer;
    text-decoration: underline;
}

.warrenty-badge {
    background: var(--secondary-blue);
    color: var(--primary-blue);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.nav-btn {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    min-width: 100px;
}

.nav-btn.back {
    padding-left: 10px;
}

.nav-btn.next {
    padding-right: 10px;
}

.nav-btn[disabled] {
    pointer-events: none;
    opacity: 0.7;
}

.brand-grid {
    padding: 40px;
}

.brand-card {
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    min-height: 200px;
}

.brand-card:hover {
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-list {
    list-style: none;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    color: var(--gray);
    padding: 0;
    margin: 2px;
    font-size: 16px;
}

.custom-list li {
    display: flex;
    padding: 2px;
    width: fit-content;
    align-items: center;
    height: fit-content;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.custom-list li::before {
    content: "•";
    color: var(--primary-blue);
    /* Blue bullet color */
    font-size: 20px;
    margin-right: 4px;
}

.inline-bullets {
    display: flex;
    gap: 16px;
}

.logo-container {
    background: white;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    min-width: 150px;
    object-fit: cover;
}

.brand-name {
    display: flex;
    width: 100%;
    padding: 4px;
    color: #565656;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin: 0;
}

.brand-name.double {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.4;
}

.blogs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: -60px 40px 40px;
    gap: 40px;
}

.blog__card img {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    background-color: #fff;
}

.blog_text {
    padding: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog__card-type {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
    border-radius: 99px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 13px;
    line-height: 30px;
}

.blog__card p {
    color: var(--primary-blue);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.blog_text-title {
    margin-top: 4px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    letter-spacing: 0%;
}

.blog_text-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.blog-type {
    background: #8881B7;
    padding: 16px 30px;
    font-size: 14px;
    color: var(--secondary-white);
    border-radius: 999px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: left;
    cursor: pointer;
}

.blog-type.active,
.blog-type:hover {
    background: var(--secondary-white);
    color: #8881B7;
}


.product-section {
    margin-bottom: 30px;
    overflow: hidden;
    padding: 40px;
    border-bottom: 1px solid var(--gray);
}

.cat-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    padding: 30px 10px;
}

.cat-image-container img {
    width: 100%;
    height: 100%;
}

.product-section:nth-child(1) .cat-image-container {
    background-color: #faf5ff;
}

.product-section:nth-child(2) .cat-image-container {
    background-color: #f0fafb;
}

.product-section:nth-child(3) .cat-image-container {
    background-color: #EAF0FF;
}

.product-content {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #625F73;
}

.more-details-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    width: fit-content;
}

.more-details-btn::after {
    content: "→";
    margin-left: 8px;
}

.related-news {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 0px;
    margin-top: 50px;
    background-color: #D6D3E4;
}

.related-news-card {
    padding: 0;
    gap: 0;
    border-color: var(--secondary-white) !important;
    background: var(--secondary-white) !important;
}

.related-news-card p {
    font-size: 20px;
    color: var(--dark);
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.related-news-card img {
    height: 280px;
    border-radius: 20px 20px 0 0 !important;
}

.news-card-text {
    padding: 0 20px 20px;
}


.detail__page-card {
    height: 100%;
    transition: transform 0.3s;
    padding: 24px;
    border-radius: 20px !important;
    border: 1px solid #C5CACC;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.detail__page-card:hover {
    background-color: var(--primary-medium);
    color: white;
}

.detail__page-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
}

.detail__page-card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: left;
}


.feature-icon {
    width: 100px;
    height: 100px;
    background-color: #D6D2F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #5D4E8C;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: center;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.testimonial-section {
    background-size: cover;
    background-position: center;
    height: 400px;
    padding: 100px 0;
    width: 100%;
    display: flex;
    position: relative;
    margin-bottom: 300px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0px 10px 60px 0px #00000026;
    padding: 40px;
    width: 95%;
    max-width: 1200px;
    left: 50%;
    top: 280px;
    border: 1px solid #C5CACC;
    text-align: center;
    transform: translateX(-50%);
}

.testimonial-text {
    font-size: 34px;
    margin-top: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
}

.author-name {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0;
}

.circle {
    width: 150px;
    height: 150px;
    border: 6px solid var(--primary-blue);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.875rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 400;
}

.stat-text {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

.detail_page-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    padding: 30px 0;
}

.quote-marks {
    font-size: 60px;
    line-height: 1;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    left: 30px;
}

.contact-section {
    width: 95%;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    text-align: left;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 38px 20px;
    gap: 12px;
    height: 100%;
    border: 1px solid var(--gray-border);
    background-color: var(--secondary-white);
}

.form-card {
    border: 1px solid var(--gray-border);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    background-color: white;
}

.form-card h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    text-align: left;
}

.form-card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
}

.form-select {
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2rem;
}

.phone-input-group {
    display: flex;
}

.phone-input-group input {
    margin: 0;
    border-radius: 0 0.375rem 0.375rem 0;
}

.phone-input-group .country-code {
    width: 80px !important;
    border-radius: 0.375rem 0 0 0.375rem;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.send-message-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    width: 100%;
    padding: 16px 30px;
    height: 50px;
    border-radius: 25px;
    float: right;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.8px;
}

.arrow-icon {
    height: 70px;
    display: flex;
    align-items: center;
    width: 70px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #5D4E8C;
}

textarea.form-control {
    min-height: 120px;
}

.prod_cat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #4E585E;
    border-radius: 30px;
    gap: 16px;
    height: 100%;
    background-color: #222C31;
    padding: 20px;
    width: 100%;
}

.prod_cat-card .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    width: 100%;
}

.prod_cat-card .img-wrapper img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.product-detail .text-70 {
    text-align: start;
}

.product-detail .text-24 {
    text-align: start;
    line-height: 34px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 10px;
}

.solution-card .img-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 300px;
}

.solution-card .img-container img {
    width: fit-content;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-category {
    padding: 17px 20px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 700;
    cursor: pointer;
    min-width: max-content;
    font-size: 14px;
    line-height: 16.8px;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 999px;
}

.btn-category:hover,
.btn-category.active {
    color: var(--secondary-white);
    background: var(--primary-blue);
}

.product_hero-section {
    display: flex;
    padding: 40px 0;
    border-radius: 20px;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    background: var(--gradient-light);
}

.product_hero-section .img-container {
    border-radius: 20px;
    overflow: hidden;
    height: 230px;
    max-width: 345px;
    display: flex;
    align-items: center;
    z-index: 9;
    justify-content: center;
}

.product_hero-section .img-container img {
    object-fit: cover;
}

.prod_text-container {
    display: flex;
    flex-direction: column;
    max-width: 520px;
}

.prod_text-container h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0%;
}

.prod_text-container p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.prod_text-container h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
}

.showing-text {
    font-weight: 400;
    padding: 14px;
    margin: 0 !important;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #625F73;
}

.product-card-v2 {
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    min-height: 300px;
}

.product-card-v2:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card-v2 .logo-container {
    background-color: var(--secondary-light);
}

.w-90 {
    width: 90%;
    margin: 0 auto;
}

.back-btn {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    line-height: 21px;
}

.sol_img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 20px auto 0;
    max-height: 350px;
    overflow: hidden;
}

.sol_img-wrapper img {
    width: 100%;
    object-fit: contain;
}

.detail-container {
    display: flex;
    width: 100%;
    padding: 0 10px;
    flex-direction: column;
    gap: 12px;
}

.blog-heading {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
}

.blog-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.blog-detail-head {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
}

.filter-dropdown .dropdown-btn {
    border: 1px solid #D2D1DA;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
    border-radius: 25px;
    padding: 14px 10px;
    background-color: white;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-dropdown .dropdown-text {
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15.73px;
    letter-spacing: 0%;
}

.table_detail-heading {
    background: #F0F3F6;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center !important;
}

.mail-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #EEEFF4;
    padding: 18px;
    margin: 0 0 20px 0;
}

.drop-zone {
    border: 2px dashed var(--primary-blue);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background: #F2F5FF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-zone h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 40.38px;
    text-align: center;
}

.drop-zone p {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}

.drop-zone:hover {
    background-color: var(--secondary-blue);
}

.upload-icon {
    width: 50px;
    height: 50px;
    background-color: #d8e2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.upload-icon i {
    color: #4285f4;
    font-size: 24px;
}

.file-list {
    margin-top: 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.file-item {
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 10px;
    display: flex;
    min-width: 550px;
    align-items: center;
    justify-content: space-between;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    min-width: 250px;
}

.size {
    width: 100%;
    max-width: 80px;
    min-width: 70px !important;
}

.date {
    width: 100%;
    max-width: 120px;
    min-width: 90px !important;

}

.file-icon {
    color: #4285f4;
}

.delete-btn {
    color: #6c757d;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s;
}

.delete-btn:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}

.ticket_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 20px;
    justify-content: center;
    padding: 30px 10px;
    border-radius: 20px;
    border: 1px solid var(--gray-border)
}

.ticket_card button,
.ticket_card a {
    width: 194px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    margin: 0;
    text-decoration: none;
}

.ticket_card p {
    max-width: 480px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    line-height: 30px;
}

.form-label {
    color: #807D8D !important;
}

.location-card {
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--gray-border);
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 200px;
    background: #EEEFF4;
    position: relative;
    border-radius: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.location-info {
    padding: 0px;
}

.location-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28.8px;
    margin-bottom: 10px;
}

.location-details {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

.view-location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    width: fit-content;
    background-color: #fff;
    border: 1px solid #0066ff;
    color: #0066ff;
    border-radius: 10px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
}

.view-location-btn:hover {
    background-color: #f0f7ff;
}

.location-icon {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
}

.modal-zoom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-zoom-image {
    max-height: 80vh;
    max-width: 100%;
}

.top-route {
    font-size: 14px;
    color: var(--secondary-white);
    text-decoration: none;
    min-width: fit-content;
    height: fit-content;
    line-height: 16px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.top-route:hover {
    border-bottom: 1px solid var(--primary-blue);
}

.brandSlider .swiper-button-next:hover svg path,
.brandSlider .swiper-button-prev:hover svg path {
    fill: transparent !important;
}

.brandSlider .swiper-button-prev {
    left: -24px;
    height: 16px !important;
    position: absolute !important;
}

.brandSlider .swiper-button-next {
    right: -24px;
    height: 16px !important;
    position: absolute !important;
}

.cta-section {
    background: linear-gradient(270deg, #4876BD, #5448BD, #8F48BD, #BD48B1);
    background-size: 800% 800%;
    animation: gradientShift 15s ease infinite;
    text-align: center;
    padding: 6rem 1rem;
    color: white;
}

/* Keyframes for background gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-heading {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
}

@media (max-width: 1199px) {
    .brandSlider {
        width: 95%;
        margin: auto;
    }

    .model-solution,
    .model-brands,
    .security-section {
        display: none !important;
    }


    .main-content {
        width: 100%;
    }

    .inquiry-btn {
        padding: 8px 16px;
    }

    .navbar .nav__list {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        background-color: var(--secondary-white);
        position: absolute;
        top: 90px;
        left: 0;
        padding: 20px;
    }

    .nav_large {
        display: none !important;
    }

    .navbar .nav__list-mobile {
        display: none !important;
    }

    .navbar .nav__list-item a {
        font-size: 18px;
        color: var(--dark);
        display: flex;
        padding: 0 10px !important;
        justify-content: space-between;
        width: 100%;
    }

    .navbar .nav__list-item a:hover {
        color: var(--dark);
        text-decoration: none;
    }

    .navbar .nav__list-item a:hover svg,
    .navbar .nav__list-item a:hover svg path {
        stroke: var(--primary-blue) !important;
    }

    .navbar .nav__list-item {
        width: 100%;
        text-align: center;
    }

    .navbar .logo {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .product_page .hamburger {
        display: none !important;
    }

    .navbar .nav__list-mobile.active {
        display: flex !important;
    }

    .brand-item p,
    .brand-item a {
        color: var(--gray);
    }

    .navbar .nav__list-item {
        gap: 10px;
    }

    /* Default styles for sub-category items and category links */
    .sub-category-items a,
    #sub_menu a,
    #categoriesContainerMobile .nav__list-item a {
        color: var(--dark) !important;
        background-color: transparent !important;
    }

    /* Highlight only when the parent dropdown is open */
    .sub-category-items div:has(.collapse.show)>a,
    #sub_menu div:has(.collapse.show)>a,
    #categoriesContainerMobile .nav__list-item:has(.collapse.show)>a {
        color: var(--primary-blue) !important;
        font-weight: 600;
    }

    .sub-category-items div:has(.collapse.show)>a svg,
    #sub_menu div:has(.collapse.show)>a svg,
    #categoriesContainerMobile .nav__list-item:has(.collapse.show)>a svg,
    .navbar .nav__list-item:has(.collapse.show)>a svg {
        rotate: 90deg;
        transition: .5s all ease-in-out;
    }

    .sub-category-items div:has(.collapse.show)>a svg,
    #sub_menu div:has(.collapse.show)>a svg,
    #categoriesContainerMobile .nav__list-item:has(.collapse.show)>a svg,
    .sub-category-items div:has(.collapse.show)>a svg path,
    #sub_menu div:has(.collapse.show)>a svg path,
    #categoriesContainerMobile .nav__list-item:has(.collapse.show)>a svg path,
    .navbar .nav__list-item:has(.collapse.show)>a svg,
    .navbar .nav__list-item:has(.collapse.show)>a svg path {
        stroke: var(--primary-blue) !important;
    }

    .navbar .nav__list-item:has(.collapse.show)>a:hover::after {
        background-color: transparent;
    }

    .navbar .nav__list-item:has(.collapse.show)>a {
        color: var(--primary-blue);
        font-weight: 600;
        background-color: var(--secondary-blue);
    }

    .btn-outlined {
        padding: 8px 16px;
        margin-top: 8px;
    }

    .btn-outlined.xl-light {
        color: var(--dark);
        border-color: var(--dark);
    }
}

@media screen and (max-width: 992px) {
    .filter-sidebar {
        display: none;
        transform: translateX(100%);
        border-radius: 10px;
        border: 1px solid var(--gray-border);
        padding: 20px;
        margin: 0 0 30px 0;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .solutions-icon-size {
        height: 51px;
    }

    .header-banner {
        height: 500px;
    }

    .filter-btn {
        display: block;
    }

    .product_page .hamburger {
        display: flex !important;
    }

    .filter-sidebar.active {
        display: block;
        transform: translateX(0);
    }

    .prod_text-container {
        flex: 1;
    }

    .side_menu-item.mobile {
        border: 1px solid var(--primary-blue);
        font-weight: 600;
    }

    .side_menu-item.mobile h6 {
        font-weight: 600;
        color: var(--primary-blue);
    }

    .side_menu-item.mobile .arrow-icon {
        rotate: 90deg;
        background: var(--primary-blue);
    }

    .side_menu-item.mobile svg path {
        stroke: var(--secondary-white)
    }

    .blog_detail-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-section.blog-detail::before {
        max-height: 600px;
    }

    .category-card {
        gap: 20px;
    }

}

@media (max-width: 767px) {
    .text-30 {
        font-size: 22px;
        line-height: 30px;
    }

    .brandSlider .swiper-button-prev {
        left: -14px;
    }

    .solutions-icon-size {
        height: 40px;
    }

    .exp-swiper-btn {
        display: none;
    }

    .brandSlider .swiper-button-next {
        right: -14px;
    }

    .header-banner {
        height: 280px;
    }

    .product-section {
        padding: 20px;
    }

    .brand_hero-section {
        min-height: 200px;
    }

    .w-md-fit {
        width: 100% !important;
    }

    .filter-dropdown .dropdown-btn {
        padding: 10PX;
    }

    .btn-traning {
        padding: 14px 20px;
        font-size: 16px;
        line-height: 19.2px;
    }

    .prod_text-container {
        width: 100%;
        max-width: none;
    }

    .product_hero-section .img-container img,
    .product_hero-section .img-container {
        width: 100%;
        height: 220px;
        max-width: 100%;
    }

    .business-selector {
        padding: 20px;
    }

    .business-selector .text-50 {
        font-size: 36px;
    }

    .text-60 {
        font-size: 42px;
        line-height: 50px;
    }

    .business-selector .text-24 {
        font-size: 18px;
        line-height: 24px;
    }

    .sol_page .text-18 {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
    }

    .footer_banner .footer_banner-text {
        gap: 10px;
        padding: 12px;
    }

    .footer_banner .footer_banner-text div h2 {
        font-size: 14px;
        line-height: 18.3px;
    }

    .footer_banner .footer_banner-text div p {
        font-size: 20px;
        line-height: 28.8px;
    }

    .footer_banner .footer_banner-text .arrow-icon {
        width: 36px !important;
    }

    .arrow-icon {
        height: 44px;
        display: flex;
        align-items: center;
        width: 44px;
    }

    .category-column {
        margin-bottom: 2rem;
    }

    .product-card .product-image {
        height: 175px;
    }

    .category-column {
        margin-bottom: 2rem;
    }

    .product-card .product-image {
        height: 175px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 24px;
    }

    .btn-outlined {
        padding: 0.5rem;
    }

    .solution-heading {
        font-weight: 600;
        font-size: 34px;
    }

    .connected .solution-heading {
        font-weight: 600;
        font-size: 24px;
    }

    .contact-card {
        gap: 10px;
        margin: 10px 0px;
        padding: 20px;
    }

    .form-card {
        padding: 20px;
    }

    .prod-title {
        font-size: 30px;
        line-height: 32px;
    }

    .hamburger {
        height: 40px;
        width: 40px;
    }

    .contact-card .contact-icon svg {
        height: 64px;
        width: 64px;
    }

    .category-card .icon-wrapper {
        justify-content: flex-start;
    }

    .category-card .category-card-heading {
        font-size: 20px;
        font-weight: 600;
    }

    .category-section {
        padding: 32px 0;
    }

    .connected .swiper-button-next,
    .connected .swiper-button-prev {
        width: 50px !important;
        height: 50px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .solution-card a svg {
        width: 28px;
        height: 28px;
    }

    .solution-card .text-24 {
        font-size: 20px;
        line-height: 24px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        padding: 10px 0;
    }

    .popup-body {
        padding: 1rem !important;
    }

    .hero-heading {
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
    }

    .hero-heading svg {
        height: 30px;
        width: 92px;
    }

    .back-btn svg {
        height: 32px;
        width: 32px;

    }

    .brand_hero-section::before {
        left: 0%;
    }

    .brand_hero-section::after {
        right: 0%;
    }

    .brand_hero-section .text-30 {
        font-size: 18px;
        font-weight: 400;
        line-height: 21.6px;
        text-align: center;
    }

    .type_heading {
        font-weight: 600;
        font-size: 24px;
        line-height: 28.8px;
        letter-spacing: 0%;
    }

    .page-btn {
        height: 30px;
        width: 30px;
        font-size: 12px;
        color: #333;
    }

    .nav-btn {
        display: flex;
        min-width: fit-content;
    }

    .warrenty-badge {
        font-weight: 700;
        font-size: 14.73px;
        line-height: 24.55px;
        letter-spacing: 0%;
        padding: 10px 20px;
    }

    .warrenty-badge svg {
        width: 24px;
        height: 24px;
    }

    .btn-category {
        padding: 8px 10px;
        font-size: 10px;
        line-height: 12.8px;
    }

    .prod_text-container h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .prod_text-container p {
        font-size: 14px;
        line-height: 25px;
    }

    .prod_text-container h6 {
        font-size: 16px;
        line-height: 24px;
    }

    .product-card-v2 .text-24 {
        font-size: 20px;
        line-height: 24px;
    }

    .hero-section.blog {
        min-height: 250px;
    }

    .blogs_page-heading {
        font-size: 24px;
        line-height: 28.8px;
    }


    .blog_detail-title {
        font-size: 34px;
        line-height: 40px;
    }

    .blog_detail-img {
        min-width: 100%;
        overflow: hidden;
        height: 345px;
        max-width: 100%;
    }

    .blog_detail-img img {
        width: 100%;
        height: 345px;
        object-fit: cover;
    }

    .detail-container {
        margin-top: 150px;
    }

    .mail-bar button {
        font-size: 14px;
    }

    .contact-title {
        font-size: 28px;
        line-height: 40px;
    }

    .footer-line {
        display: block;
        position: relative;
        margin: 20px 0 36px 0 !important;
    }

    .footer-line .chat-icon {
        position: absolute;
        right: 0;
        bottom: 20px;
    }

    .hero-section.training-detail::before {
        height: 280px;
    }

    .hero-section.blog-detail {
        height: fit-content;
        background: transparent;
    }


    .hero-section.blog-detail a svg {
        height: 36px;
        width: 36px;
    }

    .hero-section.blog-detail::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /* Background only for first 400px */
        background-color: var(--primary-blue);
        z-index: -1;

        height: 300px;
        padding: 50px 0;
        background: var(--primary-blue);
    }

    .brand_detail-text .text-50 {
        font-size: 24px;
        line-height: 28.8px;
    }

    .brand_detail-text .text-18 {
        font-size: 14px;
        line-height: 24px;
    }

    .brand_detail-text .btn-filled {
        padding: 14px 30px;
        font-weight: 600;
        font-size: 14px;
        line-height: 16.8px;
        letter-spacing: 0%;
        text-align: center;
    }

    .mw-475 {
        max-width: none;
    }

    .prod_cat_title {
        font-weight: 700;
        font-size: 20px !important;
        line-height: 22.8px !important;
        letter-spacing: 0%;
        text-align: center;
    }

    .service-section {
        padding: 20px 0;
    }

    .category-card .category-card-description {
        font-size: 14px;
        font-weight: 400;
    }

    .category-card a {
        padding: 0 30px;
        height: 34px;
        display: flex;
        align-items: center;
    }

    .custom_banner {
        height: 80px !important;
    }
}

@media (max-width: 575px) {
    .stats-label {
        font-weight: 400;
        font-size: 14px;
    }

    .text-70 {
        font-size: 40px;
        line-height: 48px;
    }

    .solution-card .img-container {
        height: 200px;
    }

    .w-sm-fit {
        width: 100% !important;
    }

    .prod {
        min-height: 300px !important;
    }

    .product-detail .text-70 {
        font-weight: 700;
        font-size: 24px;
        line-height: 28.8px;
        letter-spacing: 0%;
        text-align: center;
    }

    .product-detail .text-24 {
        text-align: center;
        font-weight: 400;
        font-size: 14px;
        line-height: 16.8px;
        letter-spacing: 0%;
    }

    .breadcrumb li {
        font-weight: 400;
        font-size: 10px;
        line-height: 11.44px;
        letter-spacing: 0%;
    }

    .detail-container {
        margin-top: 250px;
    }

    .category-card {
        flex-direction: column-reverse;
        gap: 0px;
    }

    .category-card .icon-wrapper {
        justify-content: flex-end;
        width: 100%;
    }

    .filter-option {
        padding: 10px;
    }

    .filter-sidebar {
        padding: 14px;
    }

    .filter-section {
        gap: 10px;
        margin-bottom: 16px;
    }

    .product-card .product-title {
        font-size: 14px;
        line-height: 20px;
        height: 48px;
        max-height: 48px;
    }
}

@media (max-width: 440px) {
    .navbar {
        height: 80px;
    }

    .navbar .nav__list-mobile.active {
        top: 80px;
    }

    .navbar .logo img {
        height: 34px !important;
    }

    .nav-section {
        height: 80px;
    }

    .btn_gradient-outlined {
        padding: 6px 10px !important;
        font-size: 12px;
    }

    .text-60 {
        font-size: 28px;
        line-height: 36px;
    }
}

.popover-container {
    position: relative;
    display: inline-block;
}

.popover-button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popover-content {
    margin: 12px auto;
    width: 95%;
    padding: 24px;
    max-width: 1200px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-color);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.popover-content input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popover-content button {
    margin-top: 8px;
    width: 100%;
    padding: 6px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
}

.popover-content.visible {
    display: block;
}