body {
    font-family: "Avenir LT Pro", sans-serif;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

:root {
    /* Existing Colors */
    --dark: #0B0F11;
    --overlay: #0000006c;
    --gray-green: #E3F5F5;
    --gray: #D2D1DA;
    --purple_hover: #333150;

    /* New Colors */
    --primary-dark: #130A32;
    --primary-dark2: #130A32B2;
    --primary-medium: #6F67B1;
    --primary-teal: #48B9BA;

    --secondary-dark: #342764;
    --secondary-light: #DED9F5;
    --secondary-purple: #5B539A;
    --secondary-white: #FFFFFF;
    --secondary-teal: #CAEDED;

    --text-black: #000000;
    --text-gray: #57536C;
    --text-light-purple: #A39CC9;

    --gradient-light: linear-gradient(90deg, #A39EEE 0%, #E8DBEF 100%);
    --gradient-dark: linear-gradient(45deg, #342761 0%, #5B539A 100%);

    --wpforms-button-background-color: #48B9BA !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

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

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

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

.m-auto {
    margin: 0 auto;
}

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

.cursor-pointer {
    cursor: pointer;
}

.navbar {
    background-color: var(--dark);
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 9999 !important;
}

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

.navbar .logo img {
    height: 64px;
}

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

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

.navbar .btn {
    background-color: transparent;
    color: var(--primary-teal);
    padding: 16px 32px;
    font-size: 14px;
    margin-left: 4px;
    font-weight: 600;
    border-radius: 200px;
    border: 2px solid var(--primary-teal);
}

.navbar .request {
    display: flex;
}

.navbar .callback {
    display: none;
}

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

.navbar .nav__list-item a {
    color: var(--secondary-white);
    padding: 8px 16px;
    font-size: 14px;
    align-items: center;
    border-radius: 200px;
    text-decoration: none;
    font-weight: 600;
}

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

.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;
    transition: all 0.3s ease;
    width: 30px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background-color: var(--secondary-white);
}

.hamburger.light span {
    background-color: var(--dark);
}

.hamburger span:nth-child(1) {
    width: 25px;
}

.hamburger span:nth-child(2) {
    width: 20px;
}

.hamburger span:nth-child(3) {
    width: 15px;
}

/* When the hamburger menu is active (clicked) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    width: 15px;
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

.solutions-card {
    background: url('/static/assets/images/Isolation_Mode.png'), var(--gradient-dark);
    border-radius: 20px;
    color: white;
    padding: 2rem;
    height: 100%;
}

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

.category-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-list a:hover {
    color: var(--secondary-dark);
}

.overlay {
    height: max-content;
    width: 100%;
    top: 70px;
    padding-top: 30px;
    z-index: 9999;
    position: absolute;
}

.popup-content {
    background-color: var(--secondary-white);
    position: relative;
}

.popup-content::before {
    content: "";
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--secondary-white);
}

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

#model-solution .popup-content::before {
    right: 50%;
}

.modal {
    z-index: 9999;
}

.modal-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
}

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

.explore-more {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.explore-more-service {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: max-content;
    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;
}

.explore-more-service:hover {
    background-color: var(--primary-teal);
    color: white;
}

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

.explore-more:hover {
    filter: brightness(110%);
    color: white;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 38px;
    border-radius: 20px !important;
    width: fit-content !important;
    background-color: transparent !important;
    text-decoration: none;
    color: var(--text-black);
    justify-content: center !important;
    cursor: pointer;
}

.prod-descripton p,
.brand-item p {
    margin: 0 !important;
}

#model-brands .popup-content {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
}

.brand-item:hover {
    background-color: var(--gray-green) !important;
}

.brand-item .image-wrapper {
    border: 2px solid var(--gray);
    background-color: var(--secondary-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: 20px;
    width: 100px;
}

.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;
    gap: 8px;
    width: 100%;
}

.banner {
    display: flex;
    background-size: cover;
    background-position: center;
    height: 700px;
}

.banner-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

.banner-container img {
    width: 100px;
    height: 100px;
}

.banner-heading {
    font-weight: 600;
    color: var(--secondary-white);
    font-size: 70px;
    max-width: 800px;
}

.banner-description {
    font-size: 30px;
    color: var(--secondary-white);
    max-width: 800px;
}

.banner-btn {
    border-radius: 999px;
    max-width: max-content;
    font-weight: 600;
    font-size: 20px;
    border: none;
    outline: none;
    padding: 18px 30px;
    background: var(--primary-teal);
    color: var(--dark);
}

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

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

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

.solution-card {
    background: white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 50px;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.solution-card .solution-card-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.solution-card .solution-card-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.service-card:hover,
.solution-card:hover {
    color: var(--secondary-white);
    background: var(--primary-teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-card-heading,
.service-card:hover .service-card-description,
.solution-card:hover .solution-card-heading,
.solution-card:hover .solution-card-description {
    color: var(--secondary-white);

}

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

.service-card:hover .icon-wrapper path,
.solution-card:hover .icon-wrapper path {
    fill: var(--primary-teal);
}

.solution-card .icon-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--primary-medium);
    color: var(--primary-medium);
}

.solution-card h5 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 1;
    padding: 30px;
    height: 100%;
    border-radius: 30px;
}

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

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

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

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

.category-card .category-card-heading {
    font-size: 34px;
    margin: 10px 0;
    color: var(--secondary-white);
    font-weight: 600;
}

.category-card .category-card-description {
    font-size: 16px;
    color: var(--text-light-purple);
    font-weight: 500;
}

.category-card button {
    background: transparent;
    color: var(--secondary-white);
    font-weight: 600;
    width: fit-content;
    font-size: 14px;
    border-radius: 999px;
    border: 1px solid var(--secondary-white);
    padding: 14px 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.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(--primary-medium);
    color: var(--primary-medium);
}

.service-card .service-card-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

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

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

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

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

/* Add hover effect */
.swiper-button-next:hover svg rect,
.swiper-button-prev:hover svg rect {
    fill: #5B539A;
    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;
}

.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;
    background-color: #fff;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    border-radius: 24px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100% !important;
    border: 1px solid var(--secondary-purple);
    background: var(--primary-dark2) !important;
    padding: 20px;
}

.prod_card {
    z-index: 10;
    width: fit-content;
    position: relative;
}

.prod_card img {
    width: 100%;
}


.prod_card h3,
.swiper-slide h3 {
    font-size: 24px;
    color: var(--secondary-white);
    font-weight: 700;
}

.prod_card a {
    display: flex;
    align-self: flex-start;
}

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

.swiper-slide p {
    margin: 10px 0 !important;
    text-align: start;
    color: var(--text-light-purple);
}

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

.news-badge {
    background: var(--primary-teal);
    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;
    font-size: 14px;
    color: var(--text-light-purple);
}

.footer_banner {
    background: linear-gradient(125deg, #5B539A 55.57%, #AE7EE1 100%);
    border-radius: 25px;
    z-index: 10;
    position: relative;
    padding: 5px;
}

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

.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;
    border-top: 1px solid #BEBBCC;
    padding: 50px 20px 0;
}

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

.footer-heading {
    color: var(--primary-teal);
    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: 30px 0;
}


.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;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 0;
    margin: 20px 0;
}

/* Each Breadcrumb Item */
.breadcrumb li {
    background: #f4f4f6;
    padding: 5px 15px 5px 30px;
    color: #666;
    height: 40px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow Effect on Each Breadcrumb Except Last */
.breadcrumb li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    border: transparent;
    width: 10px;
    height: 101%;
    background: var(--secondary-white);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    border: transparent;
    top: 0;
    right: -10px;
    width: 10px;
    height: 101%;
    background: #f4f4f6;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

/* Add Spacing */
.breadcrumb li:not(:last-child) {
    margin-right: 12px;
}

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

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

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

/* 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-teal);
    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;
    gap: 10px;
    width: 100%;
}

.prod-info p {
    display: flex;
    gap: 30px;
    font-size: 18px;
    line-height: 30px;
    text-align: left;
}

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

.similar-items {
    display: flex;
    flex-direction: column;
}

.similar-items h2 {
    font-weight: bold;
    font-size: 44px;
    margin-bottom: 2rem;
}

.product-card {
    cursor: pointer;
    height: 100%;
    display: flex;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-card:hover .product-image {
    border: 2.3px solid var(--secondary-purple);
    /* box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2); */
    box-shadow: 0px 4px 30px 0px #00000040;

}

.product-card .product-image {
    border: 1px solid var(--gray);
    border-radius: 12px;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.product-card .product-title {
    font-size: 18px;
    font-weight: 400;
    flex: 1 1;
    line-height: 30px;
    text-align: left;

    /* Add these properties to limit to 3 lines */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.view-details-btn:hover svg path {
    fill: #fff;
}

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

.hero-section {
    background: var(--gradient-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
    padding: 20px 10px;
    position: relative;
}

.hero-heading {
    font-size: 70px;
    font-weight: 700;
    z-index: 2;
    line-height: 70px;
    text-align: center;
    text-transform: capitalize;
    margin: 0 auto;
}

.filter-sidebar {
    background: var(--secondary-white);
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 20px;
}

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

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

.filter-option {
    display: flex;
}

.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-teal);
    border-color: var(--primary-teal);
}

.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-filter {
    background-color: var(--primary-teal);
    color: var(--secondary-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
}

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

.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 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.product-category {
    display: flex;
    align-self: flex-start;
    background-color: var(--secondary-teal);
    color: var(--primary-teal);
    padding: 4px 12px;
    border-radius: 20px;
    word-break: break-all;
    width: 100%;
    font-size: 12px;
}

.blog-category {
    display: flex;
    align-self: flex-start;
    background-color: var(--secondary-teal);
    color: var(--primary-teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

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

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

.page-btn {
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    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-teal);
    border-color: var(--primary-teal);
    color: white;
    font-weight: 700;
}

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

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

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

.brand-grid {
    padding: 20px;
    margin-bottom: 40px;
}

.brand-card {
    border: 1px solid #eee;
    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;
}

.brand-card:hover {
    border: 3px solid #574E94;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.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 {
    background: #F1EFF9;
    height: 80px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: #333;
    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: 40px;
    gap: 40px;
}

.service-detil-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-detil-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.blog__card img {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    height: 310px;
    object-fit: cover;
}

.blog__card-single {
    border: 1px solid #CECDD1;
    min-height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.blog__card-single img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.blog__card-single .blog_text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog_text-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
}

.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-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.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-teal);
    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-image: url('/static/assets/images/detail.png');
    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-teal);
    font-weight: 500;
    margin-bottom: 0;
}

.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 {
    max-width: 1200px;
    margin: 20px auto;
    /* padding: 20px; */
}



.info-card {
    background-color: var(--primary-medium);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 30px;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.-cocardntent {
    display: flex;
    flex-direction: column;
}

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

.contact-card .contact-title {
    color: #bdbad7;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    margin-bottom: 20px;
    opacity: 0.9;
    border-bottom: 1px solid #8c87b8;
    padding-bottom: 10px;
}

.contact-email-phone {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
}

.contact-address {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #bdbad7;
    text-align: left;
}

.form-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 8px;
    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;
}

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

.send-message-btn {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    float: right;
}


.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;
}

.custom-light-btn {
    width: auto;
    padding: 14px 30px;
    color: white;
    border: 2px solid var(--secondary-white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.blog_text .product-category,
.product-card .product-category {
    width: fit-content;
}

.solution-form-inquiry .contact-title {
    text-align: left;
}

.contact-us-form .wpforms-container {
    width: 100%;
}

.wpforms-container-full button[type=submit] {
    box-shadow: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    float: right;
}

.wpforms-container-full button[type=submit]:hover {
    background: var(--primary-teal) !important;
}

.popup-enquiry-form .wpforms-container-full {
    margin: 0 auto !important;
}

.popup-enquiry-form .wpforms-container-full .wpforms-field-layout {
    padding: 0 !important;
}

.popup-enquiry-form .wpforms-container-full button[type=submit] {
    width: 100%;
}

.solution-form-inquiry .wpforms-container-full button[type=submit] {
    width: 100%;
}
.blog-header {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.blog-header .blog-post-details,
.post-details .post-content-details {
    width: calc(100% - 100px);
}

.blog-post-details .categories {
    display: flex;
    gap: 5px;
}

.blog-header .go-back-link {
    width: 50px;
}

.post-details .left-spacer {
    width: 100px;
}

.blog-header .blog-post-details .blog-meta {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C5CACD;
}

.post-details .content-wrapper p,
.post-details .content-wrapper span {
    color: #0A0E19;
}

.post-details .content-wrapper a {
    color: var(--primary-teal);
}

.post-details .content-wrapper {
    margin: 30px 0;
}

.post-details .image-wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.not-found-heading {
    font-size: 100px;
}

@media (max-width: 768px) {
    .product-section {
        padding: 20px;
    }

    .product-title {
        font-size: 2rem;
    }

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

    .explore-more-service {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1180px) {

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


    .main-content {
        width: 100%;
    }

    .post-details .left-spacer {
        display: none;
    }

    .blog-header {
        flex-direction: column;
    }

    .blog-header .go-back-link {
        width: 40px;
    }

    .blog-header .blog-post-details,
    .post-details .post-content-details {
        width: 100%;
    }

    .blog-header .blog-post-details .blog-meta {
        padding: 20px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.light {
        display: none;
    }
}

/* Show on small screens */
@media screen and (max-width: 992px) {
    .hamburger.light {
        display: flex;
        height: fit-content;
    }

    .filter-sidebar {
        display: none;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .filter-btn {
        display: block;
    }

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

@media (max-width: 768px) {
    .category-column {
        margin-bottom: 2rem;
    }

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

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

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

    .product-card .product-image {}

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

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

    .form-card {
        padding: 20px;
    }

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

    .solution-card {
        padding: 50px 24px;
    }

    .category-card {
        gap: 20px;
    }

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

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

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

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

    .solution-card .solution-card-heading {
        font-size: 20px;
        font-weight: 700;
    }

    .banner-heading {
        font-size: 48px;
    }

    .banner-description {
        font-size: 20px;
    }

    .banner-btn {
        font-size: 16px;
        padding: 8px 16px;
    }

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

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

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

    .similar-items h2 {
        font-size: 30px;
        margin-bottom: 1.5rem;
    }

    .navbar .logo img {
        height: 54px;
    }

    .service-section,
    .solutions-section {
        padding: 70px 0;
    }

    .footer_banner {
        padding: 3px;
    }

    .footer_banner .footer_banner-text {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-radius: 20px;
        background: var(--secondary-white);
        padding: 20px;
    }

    .hero-heading {
        font-size: 48px;
        z-index: 2;
        line-height: 60px;
    }

    .product-card .product-title {
        font-size: 14px;
        width: 100%;
        line-height: 20px;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1180px) {
    .footer_banner .footer_banner-text {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        /* padding: 10px; */
    }

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

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

    .nav_large {
        display: none !important;
    }

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

    .navbar .nav__list-item a {
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 10px 15px;
    }

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

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

    .hamburger {
        display: flex;
    }

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

    .brand-item {
        padding: 10px 20px;
        border-color: var(--secondary-light);
    }

    .brand-item:hover {
        background-color: var(--gray-green);
        color: var(--text-black) !important;
    }
}

@media (max-width:540px) {
    .navbar .logo img {
        height: 40px;
    }


    .hero-heading {
        font-size: 34px;
        z-index: 2;
        line-height: 40px;
    }

    .custom-light-btn {
        font-size: 14px;
        line-height: 12px;
        padding: 14px 24px;
    }

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

    .service-section,
    .solutions-section {
        padding: 34px 0;
    }

    .banner {
        height: 600px !important;
    }

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

    .banner-heading {
        font-size: 34px;
        line-height: 50px;
    }

    .banner-description {
        font-size: 14px;
        line-height: 24px;
    }

    .navbar {
        padding: 0 !important;
    }

    .navbar .request {
        display: none;
    }

    .navbar .callback {
        padding: 8px 16px;
        display: flex;
    }
}