@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css    ");

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    border: 0;
    appearance: none;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: auto !important;
    overflow-x: hidden;
}

html {
    font-size: 14px;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.5;
    margin: 0;
}

/* .container { */
/* max-width: 77% !important; */
/* width: 100%; */
/* margin: 0 auto; */
/* } */

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

/* Heading Sizes */
h1 {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: 800;
}

h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
}

h5 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}

h6 {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
}

/* Common CSS Start */
/* Base style */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
    will-change: opacity, transform;
}

/* Animation types */
.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.zoom-in {
    transform: scale(0.8);
}

.zoom-out {
    transform: scale(1.2);
}

.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Custom durations */
.duration-300 {
    transition-duration: 0.3s !important;
}

.duration-400 {
    transition-duration: 0.4s !important;
}

.duration-500 {
    transition-duration: 0.5s !important;
}

.duration-600 {
    transition-duration: 0.6s !important;
}

.duration-700 {
    transition-duration: 0.7s !important;
}

.duration-800 {
    transition-duration: 0.8s !important;
}

.duration-1000 {
    transition-duration: 1s !important;
}

.duration-1500 {
    transition-duration: 1.5s !important;
}

/* Scroll Start */
#scrollToTop {
    width: 50px;
    height: 50px;
    border: 2px solid #0c2354;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 15px;
    bottom: 57px;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

#scrollToTop:hover {
    border: 2px solid #1a3a8a;
    transform: translateY(-5px);
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop iconify-icon {
    color: #0c2354;
}

#scrollToTop:hover iconify-icon {
    color: #1a3a8a;
}

/* #scroll span { */
/* position: absolute; */
/* top: 50%; */
/* right: 50%; */
/* height: 0; */
/* width: 0; */
/* margin-left: -9px; */
/* margin-top: -5px; */
/* border-bottom: 10px solid #fff; */
/* left: 50%; */
/* border-left: 10px solid transparent; */
/* border-right: 10px solid transparent; */
/* } */

/* Scroll End */
#fixedWhatsAppIcon {
    display: flex;
    position: fixed;
    right: 15px;
    bottom: 5px;
    width: 50px;
    height: 50px;
    background-color: #54b460;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#fixedWhatsAppIcon:hover {
    background-color: #339933;
}

.section-padding {
    padding: 50px 0;
}

.bg-custom-darkblue {
    background-color: #0c2354;
}

.bg-custom-blue {
    background-color: #f0f4ff;
}

.bg-custom-offwhite {
    background: #f6f2f2 !important;
}

.bg-custom-gradient {
    background: linear-gradient(96.76deg,
            #0c2354 7.47%,
            rgba(217, 77, 88, 0.85) 100%);
}

.bg-custom-lightgray {
    background-color: #f9f9f9;
}

.text-darkblue {
    color: #0c2354;
}

.text-custom-black {
    color: #1e1e1e;
}

.text-custom-red {
    color: #d94d58;
}


.custom-btn-red {
    border-radius: 30px;
    font-weight: 500;
    color: #ffffff !important;
    line-height: 26.42px;
    background-color: #d94d58;
    padding: 8.81px 20px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-wrap: nowrap;
}

.custom-btn-red iconify-icon {
    background-color: #ffffff;
    color: #d94d58;
    border-radius: 50%;
    margin-bottom: 0;
}

button.custom-btn-red:disabled {
    background-color: #c76d74 !important;
}

button.custom-btn-red:disabled iconify-icon {
    color: #c76d74 !important;
}

.custom-btn-red:hover iconify-icon {
    color: #0c2354;
}

.custom-btn-red.active,
.custom-btn-red:hover {
    background-color: #0c2354;
}

.custom-btn-blue {
    border-radius: 30px;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 26.42px;
    background-color: #0c2354;
    padding: 8.81px 20px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-wrap: nowrap;
}

button.custom-btn-blue:disabled {
    background-color: #949eb5 !important;
}

button.custom-btn-blue:disabled iconify-icon {
    color: #949eb5 !important;
}

.custom-btn-blue:hover {
    background-color: #d94d58;
}

.custom-btn-blue iconify-icon {
    background-color: #ffffff;
    color: #0c2354;
    border-radius: 50%;
    margin-bottom: 0;
}

.custom-btn-blue:hover iconify-icon {
    color: #d94d58;
}

.custom-btn-white {
    border-radius: 30px;
    font-weight: 500;
    color: #d94d58 !important;
    line-height: 26.42px;
    background-color: #ffffff;
    padding: 8.81px 20px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 0.5px solid #1e1e1e;
    text-wrap: nowrap;
}

.custom-btn-white:disabled {
    background-color: #949eb5 !important;
}

.custom-btn-white:disabled iconify-icon {
    color: #949eb5 !important;
}

.custom-btn-white:hover {
    background-color: #d94d58;
    color: #FFFFFF !important;
}

.custom-btn-white iconify-icon {
    background-color: #ffffff;
    color: #d94d58;
    border-radius: 50%;
    margin-bottom: 0;
}

.custom-btn-white:hover iconify-icon {
    color: #d94d58;
}

.custom-btn-transparent {
    border-radius: 30px;
    font-weight: 500;
    color: #0c2354 !important;
    line-height: 26.42px;
    background-color: transparent;
    padding: 8.81px 20px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-wrap: nowrap;
}

.custom-btn-transparent:hover {
    color: #d94d58 !important;
}

.custom-btn-transparent iconify-icon {
    background-color: #0c2354 !important;
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 0;
}

.custom-btn-transparent:hover iconify-icon {
    background-color: #d94d58 !important;
}

.breadcrumb .breadcrumb-item {
    font-weight: 500;
    font-size: 10px;
    line-height: 1.2;
}

.breadcrumb .breadcrumb-item a {
    color: #808080;
}

.breadcrumb .breadcrumb-item.active {
    color: #0c2354;
}

.page-breadcrumb {
    padding: 20px 0 0 0;
}

.page-breadcrumb h1 {
    border-bottom: 1px solid #F6F6F6;
    /* padding: 0 0 1rem 0; */
    font-size: clamp(25px, 2.8vw, 32px);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-breadcrumb ol.breadcrumb {
    margin-bottom: 0.5rem;
}

.pagination {
    justify-content: center;
    padding: 1.5rem 0;
    gap: 5px;
}

.pagination li a {
    color: #0c2354;
}

.pagination .page-item.active a,
.pagination .page-item:hover a {
    color: #FFFFFF;
    background-color: #0c2354;
    border-color: #0c2354;
}

.pagination .page-item.disabled a {
    background-color: #0c2354c9;
    color: #FFFFFF;
}

/* Common CSS End */

/* Header Section Start */
.header {
    box-shadow: 0px 4px 4px 0px #00000040;
}

.top-header {
    padding: 10px 0;
}

.top-header ul li:not(:last-child) {
    padding-right: 25px;
}

.top-header ul li .info-icon {
    background-color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header ul li.address-list.social-icon:first-child .info-icon {
    background-color: #4cca5a;
}

.top-header ul li.address-list.social-icon:nth-child(2) .info-icon {
    background-color: #3d5a98;
}

.top-header ul li.address-list.social-icon:last-child .info-icon {
    background-color: #0a66c2;
}

.top-header ul li iconify-icon {
    color: #0c2354;
}

.top-header ul li .info-content a {
    color: #ffffff;
}

.top-header ul .address-list:hover iconify-icon,
.top-header .address-list:hover a {
    color: #d94d58;
}

.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.main-header .navbar,
.main-header .navbar .navbar-brand {
    padding: 0;
}
.main-header .navbar-brand img{
    height: 70px;
    padding: 5px 0;
}
.main-header .navbar-nav {
    gap: 30px;
}

.main-header .navbar-nav li a {
    font-weight: 700;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #0c2354;
    padding: 0;
}

.main-header .navbar-nav li a.active,
.main-header .navbar-nav li:hover a {
    color: #d94d58;
}


.search-popup-container .modal-dialog .modal-content {
    background-color: #0c2354;
    opacity: 0.7;
}

.search-popup-container .close-search {
    border-radius: 50px;
    text-align: center;
    background: #d94d58;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    cursor: pointer;
}

.search-popup-container .close-search iconify-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup-container .form-control {
    position: relative;
    width: 100%;
    height: 70px;
    outline: none;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 40px);
    padding: 0 70px 0 20px;
    transition: all 500ms ease;
    text-transform: capitalize;
}

.search-popup .form-group button {
    border-radius: 50px;
    background: transparent;
    text-align: center;
    font-size: clamp(22px, 3vw, 30px);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 500ms ease;
}

.mega-content span {
    font-size: clamp(15px, 1vw, 17px);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Nunito Sans", sans-serif;
}

.mega-content .megamenu-item a {
    font-size: clamp(14px, 1vw, 16px) !important;
    font-weight: 400 !important;
    color: #495057 !important;
}

.mega-content .megamenu-item a:hover {
    color: #d94d58 !important;
}

.megamenu .nav-pills .nav-link {
    font-weight: 700;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #1e1e1e;
    text-align: justify;
    margin-bottom: 20px;
}

.megamenu .nav-pills .nav-link.active,
.megamenu .nav-pills .nav-link:hover,
.megamenu .nav-pills .show>.nav-link {
    color: #d94d58;
    background-color: transparent;
}

/* Header Section End */

/* Footer Section Start */
.footer-main .nav-item a {
    font-weight: 400;
    color: #1e1e1e;
}

.footer-main .nav-item:hover a {
    color: #d94d58;
}

.footer-bottom {
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0%;
    color: #ffffff;
}

.social-icon-list ul li a {
    border: 2.25px solid #b7c0d4;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-list ul li:first-child a {
    background-color: #4cca5a;
}

.social-icon-list ul li:nth-child(2) a {
    background-color: #3d5a98;
}

.social-icon-list ul li:nth-child(3) a {
    background-color: #0a66c2;
}

.social-icon-list ul li iconify-icon {
    color: #0c2354;
}

.social-icon-list ul li iconify-icon:hover {
    color: #d94d58;
}

.footer-title {
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}

/* Footer Section End */

/* Banner Section Start */
.banner {
    /* background-image: url(/public/img/banner-bg.webp); */
    /* height: 550px; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-position: center; */
    background-color: #f0f5ff;
}

.banner-desc span {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.25, 18px);
    line-height: 100%;
    text-transform: capitalize;
    background-color: #d94d58;
    color: #ffffff;
    border-radius: 21px;
    padding: 5px 20px;
}

.banner-desc .banner-title {
    font-size: clamp(36px, 2.8rem, 46px);
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.banner-desc .banner-subtitle {
    font-size: clamp(30px, 2.3rem, 36px);
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.slideshow {
    position: relative;
    z-index: 1;
}

.slideshow .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.slideshow .item {
    height: 100%;
    position: relative;
    z-index: 1;
}

.slideshow .item p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    line-height: 28px;
}

.banner-side-img {
    background-image: url(/public/img/banner-itembg.webp);
    background-repeat: no-repeat;
    width: 400px;
    height: 400px;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: -10px;
    top: 15%;
}

.banner-img {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-right: 20px; */
    /* width: 600px; */
}

.slideshow .item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow .item.slick-active img {
    transform: scale(1);
}

.featured-product .slick-dots,
.slideshow .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}

.featured-product .slick-dots li,
.slideshow .slick-dots li {
    margin: 0 0.25rem;
}

.featured-product .slick-dots button,
.slideshow .slick-dots button {
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #0c2354;
    text-indent: -9999px;
    transition: 0.5s;
}

.featured-product .slick-dots li.slick-active button,
.slideshow .slick-dots li.slick-active button {
    background-color: #0c2354;
    width: 62px;
    border-radius: 9px;
}

.slider .slick-slide {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider .slick-active {
    opacity: 1;

}

.slider {
    overflow: hidden;
    position: relative;
}

/* #frame { */
/* position: relative; */
/* border-radius: 5px; */
/* margin: 0; */
/* border: solid 15px #f0f5ff; */
/* max-width: 600px; */
/* margin: 20px auto; */
/* box-shadow: -3px -3px 12px #999; */
/* background-color: #FFFFFF; */
/*  */
/* } */
/*  */
/*  */
/* #frame img { */
/* display: block; */
/* padding: 20px; */
/* margin: 0; */
/* width: 100%; */
/* } */

/* Banner Section End */

/* Index About Section Start */
.index-about {
    background-image: url(/public/img/index-about-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.index-about-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
}

.index-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.list-item-icon iconify-icon {
    background-color: #dee7ff;
    padding: 10px;
    height: 60px;
}

.list-item-desc span {
    font-weight: 600;
    line-height: 26.4px;
}

.counter-item {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    line-height: 160%;
    text-align: center;
    gap: 10px;
    padding: 13px;
    border-radius: 9px;
    width: 100%;
    height: 100%;
}

.counter-item .count-wrapper {
    font-size: clamp(28px, 4vw, 40px);
}

.counter-item .counter-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
}

.count1 {
    background-color: #e8d6ef;
}

.count2 {
    background-color: #f0f4ff;
}

.count3 {
    background-color: #efddde;
}

/* Index About Section End */

/* Counter Section Start */
.couter-item {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    line-height: 160%;
    text-align: center;
    gap: 14px;
}

.couter-item p {
    font-size: clamp(32px, 5vw, 47.41px);
}

.couter-item .counter-title {
    font-size: clamp(18px, 2.5vw, 22.76px);
}

/* Counter Section End */

/* Product List Section Start */
.featured-product {
    background-color: #f9f9f9;
}

.best-product-slider .slick-list {
    margin-bottom: 45px !important;
}

.best-product-item {
    border: 0.93px solid #dddee0;
    border-radius: 9.28px;
    padding: 15px;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #ffffff;
}

.best-product-img img {
    opacity: 1;
    display: block;
    transition: 0.5s ease;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.middle {
    transition: 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 25px;
    text-align: center;
}

.best-product-item:hover img {
    opacity: 0.1;
}

.best-product-item:hover .middle {
    opacity: 1;
}

.best-product-detail h2,
.best-product-detail h3 {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.3;
    text-transform: capitalize;
    height: 37px;
}

/* Product List Section End */

/* Service Section Start */

.service-item-icon iconify-icon {
    background-color: #0c2354;
    color: #ffffff;
    border-radius: 50%;
    padding: 10px;
}

.flip-card .card-text {
    line-height: 2;
}

.flip-card .card-title {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 100%;
    text-transform: capitalize;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

.flip-card {
    /* perspective: 1000px; */
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: 0px 0px 4px 0px #0c2354;
    border-radius: 10px;
}

.flip-card-front {
    background: #ffffff;
}

.flip-card-front .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.flip-card-back {
    background: #0c2354;
    color: white;
    transform: rotateY(180deg);
    padding: 25px;
    text-align: center;
}

/* Service Section End */

/* Brand Slider Section Start */
.brand {
    position: relative;
}

.brand-bgimg {
    position: absolute;
    right: 0;
    top: 10%;
}

.brand-container .col-md-3 {
    position: relative;
    padding-right: 7px;
}

.brand-container .col-md-3::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #0c2354 0%, #d94d58 100%);
}

.brand-slider img {
    height: 35px;
    margin: auto;
    transition: transform 0.5s;
}

.brand-slider img:hover {
    transform: scale(1.1);
}

/* Brand Slider Section End */

/* Testimonial Section Start */
.testimonal {
    background-image: url(/public/img/testimonial-bg.webp);
    background-color: #f8f8f8;
}

.testimonial-wrapper {
    box-shadow: 0px 4px 4px 0px #00000040;
}

.testimonial-overlay {
    left: -13px;
    top: -20px;
    width: 811px;
    height: 392px;
    border-radius: 6px;
    background: linear-gradient(179.73deg, #d94d58 0.24%, #ffffff 55.59%);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.testimonial-slider {
    overflow: hidden;
    width: 787px;
}

.testimonial-card-title {
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
}

.testimonial-card {
    padding: 40px 65px;
    border-radius: 6px;
    background-color: #ffffff;
}

.testimonial-card img {
    height: 75px;
    width: 75px;
    object-fit: cover;
    object-position: center;
}

.testimonial-card .text-style {
    font-family: Nunito Sans;
    text-transform: capitalize;
    line-height: 1.5;
}

.testimonial-card .testimonial-desc {
    line-height: 30px;
    letter-spacing: 2%;
    height: 210px;
}

.testimonial-card .testimonial-desc iconify-icon {
    color: #999999;
}

.testimonial-wrapper .slick-prev,
.testimonial-wrapper .slick-next {
    background: #fff;
    border: none;
    font-size: clamp(18px, 2.5vw, 22px);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 100;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #808080;

}

.testimonial-wrapper .slick-prev {
    left: 0px;
}

.testimonial-wrapper .slick-next {
    right: 0px;
}

/* Testimonial Section End */

/* Product Porfolio Section Start */
.portfolio .col-12 p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 30px;
    letter-spacing: 1%;
}

/* Product Porfolio Section End */

/* FAQ Section Start */
.accordion-body {
    padding: 0 25px 25px 25px;
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    box-shadow: none;
    color: #000000;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #cfcfcf;
    border-radius: 10px;
}

.accordion-button {
    padding: 20px 25px;
    color: #333;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 22px;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button:before {
    content: "";
    position: absolute;
    right: 1.15rem;
    top: 2.2rem;
    height: 2px;
    width: 1rem;
    background-color: #d94d58;
    border-style: none;
}

.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 1.72rem;
    height: 1.0625rem;
    width: 0.125rem;
    border-style: none;
    background-color: #d94d58;
}

.accordion-header {
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
}

/* FAQ Section End */

/* Index Blog Section Start */

.blog-item {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #dee2e6;
    /* border-top: 0; */
    /* border-left: 0; */
    /* border-right: 0; */
}

.blog-item .blog-img {
    width: 100%;
    height: 248px;
    overflow: hidden;
    position: relative;
}

.index-blog .col-lg-4 a {
    width: 100%;
    height: 100%;
}

.blog-item .card-body {
    border-bottom: 1px solid #dee2e6;

}

.blog-item .blog-img>span {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #0c2354;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    border-radius: 2px;
}

.blog-item img {
    width: 100%;
    height: 100%;
    border-radius: 7.05px;
    transition: transform 0.2s;
}

.blog-item:hover img {
    transform: scale(1.5);
}

.blog-item .card-body h3 {
    height: 60px;
    color: #0c2354;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 19.38px);
    line-height: 26.1px;
}

.blog-item:hover .card-body h3 {
    color: #d94d58;
}

.blog-item p {
    line-height: 22.9px;
    color: #747474;
    padding: 0.5rem 0 0 0;
    margin-bottom: 0;
        overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Index Blog Section End */

/* Category Section Start */

.category-nav {
    overflow-y: hidden;
    overflow-x: auto;
    padding: 10px;
}

.category-nav .bg-custom-darkblue {
    border-radius: 50px;
    width: auto;
}

.category-nav ul {
    overflow-x: auto;
    gap: 40px;
    padding: 5px;
}

.category-nav .nav-item a {
    gap: 15px;
    display: flex;
    align-items: center;
}

.category-nav .nav-item {
    border-radius: 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 31.57px;
    letter-spacing: 0%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.category-title-wrapper select {
    font-family: fontAwesome, "Nunito Sans", sans-serif;

}


.category-item-wrapper .product-keyword-wrapper {
    gap: 8px;
}

.category-item-wrapper .product-keyword-wrapper span {
    font-size: 12px;

}

.category-item-wrapper .product-keyword-wrapper span.clear-all {
    background-color: #b8becc;
}

.category-nav .nav-item.active .nav-link,
.category-nav .nav-item:hover .nav-link {
    /* background-color: #d94d58; */
    /* color: #0c2354; */
    border-bottom: 4px solid #d94d58;
}

.category-nav .nav-item .nav-link {
    color: #FFFFFF;
    white-space: nowrap;
    /* border-radius: 50px; */
    padding: 5px 15px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /* background-color: #f9f9f9; */
    /* color: #0c2354; */
    border-bottom: 4px solid transparent;
}

.category-nav .nav-link img {
    filter: brightness(0) invert(1);
}

.category-nav .nav-item.active img,
.category-nav .nav-item:hover img {
    filter: none;
    transition: allease 0.3s;
}

.filter-collapse {
    gap: 5px;
}

.filter-collapse iconify-icon {
    vertical-align: middle;
}

.filter-wrapper {
    font-size: 17px;
    padding: 2px 9px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #747474;
    border: 1px solid #0c2354;
}

.filter-wrapper button iconify-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.filter-wrapper .dropdown-menu {
    width: 100%;
}

.category-sidebar {
    background-color: #ffffff;
    /* border-top: 1px solid #e4e4e4; */
}

.category-sidebar .accordion-item:first-child {
    border-top: 1px solid #DCDCDC;
}

.category-sidebar .accordion-header {
    margin: 0;
}

.category-sidebar .accordion-item {
    /* border-top: unset; */
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-bottom: 1px solid #DCDCDC;
}

.category-sidebar .brand-title,
.category-sidebar .accordion-item .category-sidebar-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 21px;
    text-transform: capitalize;
    color: #0c2354;
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.category-sidebar .accordion-item .category-sidebar-title.active,
.category-sidebar .accordion-item .category-sidebar-title:hover {
    color: #d94d58;
}

.category-sidebar .accordion-body ul li a:hover,
.category-sidebar .accordion-body ul li a.active {
    border-left: 3px solid #d94d58;
    background-color: #F6F6F6;
}

.checklist-wrapper {
    gap: 5rem;
}

.checklist-wrapper .view-btn button {
    color: #808080;
    background-color: transparent;
}

.checklist-wrapper .view-btn button.active,
.checklist-wrapper .view-btn button:hover {
    color: #d94d58;
}

.brand-checklist-wrapper {
    gap: 1.5rem;
}

.category-sidebar .accordion-body ul li a {
    padding: 10px 0px 10px 20px;
}

.brand-checklist-wrapper .brand-checklist-item,
.category-sidebar .accordion-body ul li a {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 21px;
    letter-spacing: 1%;
    text-transform: capitalize;
    color: #3d3d3d;
    cursor: pointer;
    /* padding-left: 20px; */
    display: flex;
    border-left: 3px solid transparent;

}

.category-sidebar .accordion-button.no-toggle-icon::after,
.category-sidebar .accordion-button.no-toggle-icon::before {
    display: none !important;
}

.brand-checklist-wrapper .brand-checklist-item label {
    cursor: pointer;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;
    text-wrap: nowrap;
}

.brand-checklist-wrapper .brand-checklist-item label:hover {
    color: #d94d58;
}

.brand-checklist-wrapper .brand-checklist-item,
.category-sidebar .accordion-body ul li:not(:last-child) {
    margin-bottom: 10px;
}

.brand-checklist-wrapper .form-check-input:checked {
    background-color: #0c2354;
    border-color: #0c2354;
}

.category-sidebar .accordion-button:before {
    right: 0.01rem;
}

.category-sidebar .accordion-button.collapsed:after {
    right: 0.45rem;
}

.category-wrapper .product-card {
    border: 0.56px solid #6E6E6E3D;
    border-radius: 5px;
}


.category-wrapper .product-img {
    background-color: #D4D4D438;
    border-radius: 10px;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    width: 217px;
    height: 262px;
}

.category-wrapper .product-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            #dfe7f8);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.category-wrapper .product-img:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

.category-wrapper .product-img img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.category-wrapper .product-img:hover img {
    transform: scale(1.05);
}

.category-wrapper .product-sub-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.5;
    color: #504D4D;
}

.sub-title2 {
    background-color: #0c2354;
    border-radius: 10px;
    padding: 0 5px;
    color: #FFFFFF !important;
    display: inline-block;
    width: auto;
    margin-right: auto;
    margin-top: 5px;
    font-weight: 400 !important;
}

.category-wrapper .product-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 1.5vw, 24px);
    line-height: 1.5;
    color: #0c2354;
    text-transform: capitalize;
    height: 100%;
    max-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-wrapper .product-title:hover {
    color: #d94d58;
}

.category-wrapper .product-card P {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
    text-wrap: wrap;
    color: #7E7E7E;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-container .custom-btn-blue {
    padding: .25rem 1rem !important;
    width: fit-content;
}

.extra-info {
    display: none;
}

.show-extra .extra-info {
    display: block;
}

.category-sidebar .accordion-collapse {
    transition: height 0.3s ease;
}

/* .category-wrapper .product-card { */
/* background-color: #ffffff; */
/* width: 100%; */
/* height: 100%; */
/* box-shadow: 0px 3.01px 27.8px 0px #0000001a; */
/* border-radius: 3.76px; */
/* position: relative; */
/* overflow: hidden; */
/* } */

/* .category-wrapper .product-card .layer { */
/* z-index: 1; */
/* position: absolute; */
/* top: calc(100% - 2px); */
/* height: 100%; */
/* width: 100%; */
/* left: 0; */
/* background: linear-gradient(to bottom, #0c2354, #d94d58); */
/* transition: 0.5s; */
/* } */
/*  */
/* .category-wrapper .product-card:hover .layer { */
/* top: 0; */
/* opacity: 0.2; */
/* } */



/* .product-card img { */
/* object-fit: contain; */
/* object-position: center; */
/* width: 100%; */
/* height: 253px; */
/* } */

/* Category Section End */

/* Welcome Section */

.welcome-image {
    width: 100%;
    height: 100%;
    max-height: 365px;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.welcome-description p {
    line-height: 206%;
}

/* vision mission section */

.vision-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-box {
    background: #e24454;
}

.vision-box p,
.mission-box p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 35px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 0;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-title,
.mission-title {
    font-weight: 700;
}

/* Message From Director Section */

.message-section {
    background-color: #f8f9fa;
}

.message-section p {
    font-weight: 400;
    color: #333333;
    line-height: 35px;
}

.message-section strong {
    font-weight: 700;
    color: #0c2354;
    font-size: clamp(16px, 2vw, 20px);
}

.director-img {
    width: 100%;
    height: 100%;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

/* Healthcare Areas We Equip Section */

.healthcare-area-card {
    position: relative;
    border-radius: 9.99px;
    overflow: hidden;
    height: 320px;
    width: 100%;
}

.healthcare-area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 9.99px;
}

.healthcare-area-card .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0c23548a;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.healthcare-area-card:hover .overlay {
    opacity: 1;
    pointer-events: auto;
}

.healthcare-area-card .overlay h3 {
    color: white;
    font-weight: 400;
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
}

.healthcare-area-card:hover img {
    transform: scale(1.05);
}

/* Certification Section */

/* Grid layout */
.certification-section .grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 15px;
}

.certification-item {
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    width: 100%;
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.certification-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Gallery Section */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brands Grid */

.brand-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.box {
    color: white;
}

.brand-tag-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    height: 80px;
    overflow-y: scroll;
}

/* .brand-tag-wrapper::-webkit-scrollbar { */
/* width: 0em; */
/* height: 0.2em; */
/* background-color: #0c2354; */
/* } */

.brand-tag-wrapper span a {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 22.77px;
    text-align: center;
    padding: 3px 6px;
    color: #1e1e1e;
}

.tag-1 {
    background-color: #facfcf;
}

.tag-2 {
    background-color: #ecf0fa;
}

.tag-3 {
    background-color: #e3d9ef;
}

.tag-4 {
    background-color: #f9facf;
}

.tag-5 {
    background-color: #f2faec;
}

.tag-6 {
    background-color: #d9efe3;
}

.tag-7 {
    background-color: #facfef;
}

.tag-8 {
    background-color: #edecfa;
}

.tag-9 {
    background-color: #d9efe0;
}

.tag-10 {
    background-color: #facff1;
}

.tag-12 {
    background-color: #ecf0fa;
}

.tag-13 {
    background-color: #e3d9ef;
}

.tag-14 {
    background-color: #cffad6;
}

.tag-15 {
    background-color: #ecf0fa;
}

@-webkit-keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.brand-box {
    border: solid 2px #f5f5f5;
}

.brand-box:hover {
    --main-bg: conic-gradient(from var(--border-angle),
            #ffffff,
            #ffffff 5%,
            #ffffff 60%,
            #ffffff 95%);
    --gradient-border: conic-gradient(from var(--border-angle), #f5f5f5 25%, #0c2354f0, #d94d58e5 99%, #f5f5f5);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box,
        var(--main-bg) border-box;
    background-position: center center;
    -webkit-animation: bg-spin 3s linear infinite;
    animation: bg-spin 3s linear infinite;
    border: solid 2px transparent;
    transform: translateY(-5px);
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

/*  */
/* .brand-item-img { */
/* width: 224px; */
/* height: 73px; */
/* padding: 30px; */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
/* background-color: #FFFFFF; */
/* overflow: hidden; */
/* } */

.brand-item img {
    height: 73px;
    width: 224px;
    object-fit: contain;
    object-position: center;
}

.brand-body .brand-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #0c2354;
}

.tag {
    background-color: rgba(36, 36, 36, 0.26);
    padding: 5px 10px;
    border-radius: 5px;
}

/* contact us section */

.contact-form {
    padding: 30px;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
}

.contact-form-header h2 span {
    color: #d94d58;
}

.contact-us-section .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-us-section .form-input,
.contact-us-section .form-select,
.contact-us-section .form-textarea {
    width: 100%;
    border: 1px solid #f0edeb;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    color: #1e1e1e;
    background-color: #fff;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-us-section .required-asterisk {
    color: #d94d58;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
}

.contact-us-section .form-group button {
    padding: 15px;
    border: 1px solid #f0edeb;
    border-radius: 5px;
    background-color: transparent;
}

.contact-us-section .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    margin-bottom: 30px;
}

.map-container img,
.map-container iframe {
    border-radius: 10px;
}

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

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-info-boxes span {
    font-weight: 600;
    line-height: 23.5px;
}

.contact-info-boxes p {
    font-size: clamp(12px, 2vw, 14px);
}

.info-box {
    display: flex;
    align-items: center;
    background-color: #162a69;
    padding: 1rem 1.5rem;
    border-radius: 19px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-boxes iconify-icon {
    margin-right: 1rem;
    border: 1px solid white;
    border-radius: 50%;
    background-color: white;
    color: #162a69;
    padding: 5px;
}

.info-box a {
    color: #ffffff;
}

.info-box:hover a {
    color: #d94d58;
}

/* Blog Section Start */
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.blog-details .post-img {
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.blog-details .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details .content {
    margin-top: 20px;
}

.widgets-container {
    background-color: #ffffff;
    padding: 30px;
    /* margin: 30px 0 30px 0; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: #d94d58;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: clamp(13px, 2vw, 15px);
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: black;
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: #d94d58;
}

/* Blog Section End */

/* Feedback Section Start */
.feedback {
    background: linear-gradient(96.76deg,
            #0c2354 7.47%,
            rgba(217, 77, 88, 0.85) 100%),
        url(/public/img/feedback-bg.webp);
}

/* Feedback Section End */

/* Product Specification Start */
.product-specification-wrapper ul {
    overflow-x: auto;
    gap: 60px;
    margin-bottom: 10px;
    padding: 0;
}

.scroll-bootstrap::-webkit-scrollbar {
    height: 6px;
}

.scroll-bootstrap::-webkit-scrollbar-track {
    background: #e9ecef;
    /* Light gray (Bootstrap-like) */
}

.scroll-bootstrap::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    /* Bootstrap secondary */
    border-radius: 10px;
}

.scroll-bootstrap::-webkit-scrollbar-thumb:hover {
    background-color: #6c757d;
    /* Bootstrap dark gray */
}

/* Optional for Firefox */
.scroll-bootstrap {
    scrollbar-width: thin;
    scrollbar-color: #adb5bd #e9ecef;
}


.product-specification-wrapper .nav-item .nav-link {
    font-weight: 500;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    padding: 5px 25px;
    border-radius: 50px !important;
    background: #e7edfd !important;
    transition: all 0.3s ease;
}

.product-specification-wrapper .nav-item .nav-link:hover,
.product-specification-wrapper .nav-item .nav-link.active {
    color: #FFFFFF;
    background: #0c2354 !important;
}

.product-specification-wrapper .tab-content .tab-pane.active {
    background-color: #f9f9f9;
    padding: 10px 20px;
}

.related-products-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 18.5px;
    text-align: center;
    text-transform: capitalize;
}

.best-product-slider .best-product-img img {
    height: 198px;
}

.related-product-wrapper .best-product-item img {
    width: 118px;
    height: 124px;
}

.related-product-wrapper .best-product-img {
    height: 141px;
}

.product-table table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.product-table table th,
.product-table table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.product-table table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.product-table table {
    width: 100%;
    overflow-x: auto;
}

.product-specification-wrapper .accordion-button,
.product-specification-wrapper .accordion-body,
.product-specification-wrapper .accordion-button:not(.collapsed) {
    background-color: #f9f9f9;
}

.product-specification .accordion-item {
    background-color: transparent;
}

/* Product Specification End */

/* Product description Start */
.product-description .slider-nav .product-nav .product-nav-img {
    width: 180px;
    height: 120px;
    border: 1px solid #dbd8d8;
    margin: 5px;
}

.product-description .slider-nav .product-nav.is-active .product-nav-img {
    border: 1px solid #0c2354;
}

.category-slider-wrapper {
    width: 100%;
    height: auto;
}

.category-slider-wrapper {
    border: 1px solid #f2f5ff;
}

.product-description .slider-single .product-bg-img {
    width: 100%;
    height: 380px;
}

.product-description .slider-single .product-bg-img a {
    width: 100%;
    height: 100%;
}

.product-description .slider-single .product-bg-img a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-description .slider-nav .product-nav .product-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-description .slider-nav .slick-slide {
    cursor: pointer;
}

.product-description .paginator .prev {
    left: 0%;
    bottom: 10%;
    cursor: pointer;
}

.product-description .paginator .next {
    right: 0%;
    bottom: 10%;
    cursor: pointer;
}

.product-description .paginator-btn {
    background: transparent;
    box-shadow: none;
}

.product-description-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f0f4ffe0;
}

.product-btns {
    gap: 30px;
}

.product-btns img {
    max-height: 46px;
}

.custom-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

/* Product description End */

/* Product Keyword Start */
.product-keyword-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-keyword-wrapper span {
    background-color: #eeeded;
    padding: 0 15px;
    border-radius: 5px;
}

/* Product Keyword End */

/* Workwithus Section Start */
.workwithus {
    background-color: #f9f9f9;
}

.custom-card .card-number {
    background-color: #212e6a;
    color: white;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 32px;
    height: 34px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: -15px;
}

.custom-card-title {
    font-weight: 500;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 100%;
    letter-spacing: 0%;
    color: #212e6a;
}

.custom-card {
    border: 1px solid #212e6a;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    background-color: white;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

}

/* Workwithus Section End */

/* Job Section Start */
.currentjob-item {
    box-shadow: 0px 3px 8px 0px #9eacc766;
    padding: 40px;
    border-radius: 20px;
    transition: 0.5s;
}

.currentjob-item:hover {
    box-shadow: 0px 3px 8px 0px #0f332e29;
    transform: scale(1.02);
}

.currentjob-title strong {
    font-weight: 600;
    font-size: clamp(22px, 3vw, 28px);
}

.currentjob-desc p {
    color: #6c757d;
}

/* Job Section End */

/* Job Description Section Start */
.job-descreption-item {
    gap: 98px;
}

.job-descreption-item ul {
    list-style: none;
}

.job-descreption-item ul li {
    margin-bottom: 25px;
}

.job-descreption-item ul li:before {
    content: "✓";
    color: #d94d58;
    padding-right: 12px;
}

.job-share {
    display: flex;
    align-items: center;
    gap: 24px;
}

.job-share span {
    font-weight: 600;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 100%;
}

.job-share a {
    color: #000000;
}

.job-share a:hover {
    color: #d94d58;
}

.job-share a iconify-icon {
    display: flex;
    align-items: center;
}

.category-brand {
    transition: transform 0.5s;
}

.category-brand:hover {
    transform: scale(1.1);
}

.job-descreption-item strong {
    font-weight: 600;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 100%;
}

.job-descreption-title {
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px) !important;
    line-height: 100%;
}

.job-description-sidebar {
    border-radius: 20px;
    padding: 28px 20px;
    background-color: #f4f5f8;
}

.job-sidebar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.job-sidebar-item:hover {
    transform: translateY(-5px);
}

.job-sidebar-item iconify-icon {
    color: #0c2354;
    background: #c5cee9;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.job-sidebar-item iconify-icon .job-sidebar-item span {
    font-weight: 600;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 100%;
}

.job-sidebar-item p {
    font-weight: 400;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 100%;
    color: #6c757d;
}

.job-sidebar-item iframe {
    border-radius: 12px;
}

.job-description-sidebar strong {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 100%;
}

/* Job Description Section End */



.list-group-item iconify-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.job-share #st-1 {
    z-index: 0;
}

#product-content .spinner {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #0c2354;
    /* Blue */
    margin: 150px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;

}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loaderOverlay {
    display: none;
    /* hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* transparent dark background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}